Home
last modified time | relevance | path

Searched refs:Begin (Results 1 – 25 of 139) sorted by relevance

123456

/trueos/contrib/apr-util/test/
HDtestall.dsw26 Begin Project Dependency
41 Begin Project Dependency
44 Begin Project Dependency
59 Begin Project Dependency
62 Begin Project Dependency
77 Begin Project Dependency
80 Begin Project Dependency
95 Begin Project Dependency
98 Begin Project Dependency
113 Begin Project Dependency
[all …]
/trueos/contrib/apr-util/
HDaprutil.dsw26 Begin Project Dependency
29 Begin Project Dependency
44 Begin Project Dependency
47 Begin Project Dependency
62 Begin Project Dependency
65 Begin Project Dependency
80 Begin Project Dependency
83 Begin Project Dependency
98 Begin Project Dependency
101 Begin Project Dependency
[all …]
/trueos/contrib/apr/
HDapr.dsp28 # Begin Project
178 # Begin Target
186 # Begin Group "Source Files"
189 # Begin Group "atomic"
192 # Begin Source File
197 # Begin Group "dso"
200 # Begin Source File
205 # Begin Group "encoding"
208 # Begin Source File
214 # Begin Group "file_io"
[all …]
HDlibapr.dsp28 # Begin Project
61 # Begin Special Build Tool
93 # Begin Special Build Tool
125 # Begin Special Build Tool
157 # Begin Special Build Tool
189 # Begin Special Build Tool
221 # Begin Special Build Tool
230 # Begin Target
238 # Begin Group "Source Files"
241 # Begin Group "atomic"
[all …]
HDapr.dsw26 Begin Project Dependency
53 Begin Project Dependency
68 Begin Project Dependency
83 Begin Project Dependency
/trueos/contrib/llvm/tools/clang/include/clang/Analysis/Support/
HDBumpVector.h54 T *Begin, *End, *Capacity; variable
58 : Begin(NULL), End(NULL), Capacity(NULL) { in BumpVector()
65 destroy_range(Begin, End); in ~BumpVector()
84 iterator begin() { return Begin; } in begin()
85 const_iterator begin() const { return Begin; } in begin()
95 bool empty() const { return Begin == End; } in empty()
96 size_type size() const { return End-Begin; } in size()
99 assert(Begin + idx < End);
100 return Begin[idx];
103 assert(Begin + idx < End);
[all …]
/trueos/contrib/llvm/include/llvm/ADT/
HDStringExtras.h164 inline std::string join_impl(IteratorT Begin, IteratorT End, in join_impl() argument
167 if (Begin == End) in join_impl()
170 S += (*Begin); in join_impl()
171 while (++Begin != End) { in join_impl()
173 S += (*Begin); in join_impl()
179 inline std::string join_impl(IteratorT Begin, IteratorT End, in join_impl() argument
182 if (Begin == End) in join_impl()
185 size_t Len = (std::distance(Begin, End) - 1) * Separator.size(); in join_impl()
186 for (IteratorT I = Begin; I != End; ++I) in join_impl()
187 Len += (*Begin).size(); in join_impl()
[all …]
/trueos/contrib/llvm/tools/clang/include/clang/AST/
HDASTVector.h59 T *Begin, *End;
72 ASTVector() : Begin(0), End(0), Capacity(0, false) {} in ASTVector()
75 : Begin(0), End(0), Capacity(0, false) { in ASTVector()
82 destroy_range(Begin, End); in ~ASTVector()
101 iterator begin() { return Begin; } in begin()
102 const_iterator begin() const { return Begin; } in begin()
112 bool empty() const { return Begin == End; } in empty()
113 size_type size() const { return End-Begin; } in size()
116 assert(Begin + idx < End);
117 return Begin[idx];
[all …]
/trueos/contrib/libyaml/win32/vc6/
HDlibyaml.dsw14 Begin Project Dependency
29 Begin Project Dependency
44 Begin Project Dependency
59 Begin Project Dependency
74 Begin Project Dependency
89 Begin Project Dependency
104 Begin Project Dependency
119 Begin Project Dependency
134 Begin Project Dependency
149 Begin Project Dependency
[all …]
HDyaml.dsp24 # Begin Project
79 # Begin Target
83 # Begin Group "Source Files"
86 # Begin Source File
90 # Begin Source File
94 # Begin Source File
98 # Begin Source File
102 # Begin Source File
106 # Begin Source File
110 # Begin Source File
[all …]
HDyamldll.dsp24 # Begin Project
86 # Begin Target
90 # Begin Group "Source Files"
93 # Begin Source File
97 # Begin Source File
101 # Begin Source File
105 # Begin Source File
109 # Begin Source File
113 # Begin Source File
117 # Begin Source File
[all …]
/trueos/contrib/llvm/lib/MC/
HDMCModule.cpp26 uint64_t Begin = NewAtom->Begin; in map() local
28 assert(Begin <= NewAtom->End && "Creating MCAtom with endpoints reversed?"); in map()
32 Begin, AtomComp); in map()
40 MCTextAtom *MCModule::createTextAtom(uint64_t Begin, uint64_t End) { in createTextAtom() argument
41 MCTextAtom *NewAtom = new MCTextAtom(this, Begin, End); in createTextAtom()
46 MCDataAtom *MCModule::createDataAtom(uint64_t Begin, uint64_t End) { in createDataAtom() argument
47 MCDataAtom *NewAtom = new MCDataAtom(this, Begin, End); in createDataAtom()
56 Atom->Begin, AtomComp); in remap()
71 Atom->Begin = NewBegin; in remap()
HDMCAtom.cpp25 assert((TruncPt >= Begin && TruncPt < End) && in remapForTruncate()
27 remap(Begin, TruncPt); in remapForTruncate()
33 assert((SplitPt > Begin && SplitPt <= End) && in remapForSplit()
37 LBegin = Begin; in remapForSplit()
50 if (Data.size() > End + 1 - Begin) in addData()
51 remap(Begin, End + 1); in addData()
57 Data.resize(TruncPt - Begin + 1); in truncate()
79 remap(Begin, NextInstAddress + Size - 1); in addInst()
/trueos/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/begin/
HDtst.multibegin.d.out1 Begin fired first
2 Begin fired second
3 Begin fired third
4 Begin fired fourth
5 Begin fired fifth
/trueos/contrib/llvm/include/llvm/MC/
HDMCAtom.h43 uint64_t getBeginAddr() const { return Begin; } in getBeginAddr()
75 uint64_t Begin, End; variable
79 : Kind(K), Name("(unknown)"), Parent(P), Begin(B), End(E) { } in MCAtom()
157 MCTextAtom(MCModule *P, uint64_t Begin, uint64_t End) in MCTextAtom() argument
158 : MCAtom(TextAtom, P, Begin, End), NextInstAddress(Begin) {} in MCTextAtom()
191 MCDataAtom(MCModule *P, uint64_t Begin, uint64_t End) in MCDataAtom() argument
192 : MCAtom(DataAtom, P, Begin, End) { in MCDataAtom()
193 Data.reserve(End + 1 - Begin); in MCDataAtom()
/trueos/contrib/llvm/lib/CodeGen/
HDSlotIndexes.cpp147 MachineBasicBlock::iterator Begin, in repairIndexesInRange() argument
153 while (Begin != MBB->begin() && !hasIndex(Begin)) in repairIndexesInRange()
154 --Begin; in repairIndexesInRange()
158 bool includeStart = (Begin == MBB->begin()); in repairIndexesInRange()
163 startIdx = getInstructionIndex(Begin); in repairIndexesInRange()
179 while (ListI != ListB || MBBI != Begin || (includeStart && !pastStart)) { in repairIndexesInRange()
186 bool MBBIAtBegin = MBBI == Begin && (!includeStart || pastStart); in repairIndexesInRange()
190 if (MBBI != Begin) in repairIndexesInRange()
195 if (MBBI != Begin) in repairIndexesInRange()
208 for (MachineBasicBlock::iterator I = End; I != Begin;) { in repairIndexesInRange()
/trueos/contrib/llvm/tools/clang/lib/Frontend/
HDDiagnosticRenderer.cpp327 SourceLocation Begin = I->getBegin(), End = I->getEnd(); in mapDiagnosticRanges() local
330 FileID BeginFileID = SM->getFileID(Begin); in mapDiagnosticRanges()
337 while (Begin.isMacroID() && BeginFileID != EndFileID) { in mapDiagnosticRanges()
338 BeginLocsMap[BeginFileID] = Begin; in mapDiagnosticRanges()
339 Begin = SM->getImmediateExpansionRange(Begin).first; in mapDiagnosticRanges()
340 BeginFileID = SM->getFileID(Begin); in mapDiagnosticRanges()
350 Begin = BeginLocsMap[EndFileID]; in mapDiagnosticRanges()
355 while (Begin.isMacroID() && BeginFileID != CaretLocFileID) { in mapDiagnosticRanges()
356 if (SM->isMacroArgExpansion(Begin)) { in mapDiagnosticRanges()
357 Begin = SM->getImmediateSpellingLoc(Begin); in mapDiagnosticRanges()
[all …]
/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaFixItUtils.cpp60 const SourceLocation Begin = FullExpr->getSourceRange().getBegin(); in tryToFixConversion() local
99 S, Begin, VK_LValue); in tryToFixConversion()
110 CharSourceRange::getTokenRange(Begin, Begin))); in tryToFixConversion()
113 Hints.push_back(FixItHint::CreateInsertion(Begin, "*(")); in tryToFixConversion()
116 Hints.push_back(FixItHint::CreateInsertion(Begin, "*")); in tryToFixConversion()
137 S, Begin, VK_RValue); in tryToFixConversion()
144 CharSourceRange::getTokenRange(Begin, Begin))); in tryToFixConversion()
147 Hints.push_back(FixItHint::CreateInsertion(Begin, "&(")); in tryToFixConversion()
150 Hints.push_back(FixItHint::CreateInsertion(Begin, "&")); in tryToFixConversion()
/trueos/contrib/llvm/tools/clang/lib/ARCMigrate/
HDTransAutoreleasePool.cpp99 clearRefsIn(*scope.Begin, info.Refs); in ~AutoreleasePoolRewriter()
123 clearUnavailableDiags(*scope.Begin); in ~AutoreleasePoolRewriter()
127 Pass.TA.replaceStmt(*scope.Begin, "@autoreleasepool {"); in ~AutoreleasePoolRewriter()
142 Pass.TA.replaceStmt(*scope.Begin, "@autoreleasepool {"); in ~AutoreleasePoolRewriter()
183 Scopes.back().Begin = I; in VisitCompoundStmt()
198 Scopes.back().Begin = I; in VisitCompoundStmt()
228 Stmt::child_iterator Begin; member
233 PoolScope() : PoolVar(0), CompoundParent(0), Begin(), End(), in PoolScope()
237 Stmt::child_iterator rangeS = Begin; in getIndentedRange()
241 Stmt::child_iterator rangeE = Begin; in getIndentedRange()
[all …]
HDTransformActions.cpp66 FullSourceLoc Begin, End; member
72 Begin = FullSourceLoc(srcMgr.getExpansionLoc(beginLoc), srcMgr); in CharRange()
75 Begin = FullSourceLoc(srcMgr.getExpansionLoc(beginLoc), srcMgr); in CharRange()
78 assert(Begin.isValid() && End.isValid()); in CharRange()
82 if (End.isBeforeInTranslationUnitThan(RHS.Begin)) in compareWith()
84 if (RHS.End.isBeforeInTranslationUnitThan(Begin)) in compareWith()
86 if (!Begin.isBeforeInTranslationUnitThan(RHS.Begin) && in compareWith()
89 if (Begin.isBeforeInTranslationUnitThan(RHS.Begin) && in compareWith()
92 if (Begin.isBeforeInTranslationUnitThan(RHS.Begin)) in compareWith()
512 if (I->Begin.isBeforeInTranslationUnitThan(loc)) in addInsertion()
[all …]
/trueos/contrib/llvm/lib/CodeGen/AsmPrinter/
HDDwarfDebug.h67 const MCSymbol *Begin; variable
95 DotDebugLocEntry() : Begin(0), End(0), Variable(0), Merged(false) { in DotDebugLocEntry()
100 : Begin(B), End(E), Loc(L), Variable(V), Merged(false) { in DotDebugLocEntry()
105 : Begin(B), End(E), Variable(0), Merged(false) { in DotDebugLocEntry()
110 : Begin(B), End(E), Variable(0), Merged(false) { in DotDebugLocEntry()
116 : Begin(B), End(E), Variable(0), Merged(false) { in DotDebugLocEntry()
123 bool isEmpty() { return Begin == 0 && End == 0; } in isEmpty()
126 if (!(Begin && Loc == Next->Loc && End == Next->Begin)) in Merge()
128 Next->Begin = Begin; in Merge()
139 const MCSymbol *getBeginSym() const { return Begin; } in getBeginSym()
/trueos/contrib/llvm/lib/DebugInfo/
HDDWARFDebugLoc.cpp24 OS << "Beginning address offset: " << format("0x%016" PRIx64, I2->Begin) in dump()
49 E.Begin = data.getUnsigned(&Offset, AddressSize); in parse()
51 E.Begin += AI->second.second; in parse()
62 if (E.Begin == 0 && E.End == 0) in parse()
/trueos/contrib/llvm/lib/Transforms/Utils/
HDLowerSwitch.cpp63 BasicBlock* switchConvert(CaseItr Begin, CaseItr End, Value* Val,
130 BasicBlock* LowerSwitch::switchConvert(CaseItr Begin, CaseItr End, in switchConvert() argument
134 unsigned Size = End - Begin; in switchConvert()
137 return newLeafBlock(*Begin, Val, OrigBlock, Default); in switchConvert()
140 std::vector<CaseRange> LHS(Begin, Begin + Mid); in switchConvert()
142 std::vector<CaseRange> RHS(Begin + Mid, End); in switchConvert()
145 CaseRange& Pivot = *(Begin + Mid); in switchConvert()
/trueos/contrib/llvm/include/llvm/CodeGen/
HDMachineInstrBuilder.h413 MachineBasicBlock::instr_iterator Begin; variable
421 : MBB(BB), Begin(Pos.getInstrIterator()), End(Begin) {} in MIBundleBuilder()
427 : MBB(BB), Begin(B.getInstrIterator()), End(E.getInstrIterator()) { in MIBundleBuilder()
440 : MBB(*MI->getParent()), Begin(MI), End(getBundleEnd(MI)) {} in MIBundleBuilder()
447 bool empty() const { return Begin == End; } in empty()
450 MachineBasicBlock::instr_iterator begin() const { return Begin; } in begin()
460 if (I == Begin) { in insert()
463 Begin = MI; in insert()
/trueos/contrib/llvm/lib/IR/
HDUser.cpp49 Use *Begin = static_cast<Use*>(::operator new(size)); in allocHungoffUses() local
50 Use *End = Begin + N; in allocHungoffUses()
52 return Use::initTags(Begin, End); in allocHungoffUses()

123456