Home
last modified time | relevance | path

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

1234567

/NextBSD/contrib/ntp/lib/isc/win32/
HDlibisc.dsp24 # Begin Project
89 # Begin Target
93 # Begin Group "Source Files"
96 # Begin Source File
100 # Begin Source File
104 # Begin Source File
108 # Begin Source File
112 # Begin Source File
116 # Begin Source File
120 # Begin Source File
[all …]
/NextBSD/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 …]
/NextBSD/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 …]
/NextBSD/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
/NextBSD/contrib/llvm/tools/clang/include/clang/Analysis/Support/
HDBumpVector.h54 T *Begin, *End, *Capacity; variable
58 : Begin(nullptr), End(nullptr), Capacity(nullptr) { 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 …]
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDASTVector.h35 T *Begin, *End;
48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {} in ASTVector()
50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) { in ASTVector()
51 O.Begin = O.End = nullptr; in ASTVector()
57 : Begin(nullptr), End(nullptr), Capacity(nullptr, false) { in ASTVector()
64 swap(Begin, O.Begin);
73 destroy_range(Begin, End); in ~ASTVector()
92 iterator begin() { return Begin; } in begin()
93 const_iterator begin() const { return Begin; } in begin()
103 bool empty() const { return Begin == End; } in empty()
[all …]
/NextBSD/contrib/llvm/include/llvm/ADT/
HDStringExtras.h169 inline std::string join_impl(IteratorT Begin, IteratorT End, in join_impl() argument
172 if (Begin == End) in join_impl()
175 S += (*Begin); in join_impl()
176 while (++Begin != End) { in join_impl()
178 S += (*Begin); in join_impl()
184 inline std::string join_impl(IteratorT Begin, IteratorT End, in join_impl() argument
187 if (Begin == End) in join_impl()
190 size_t Len = (std::distance(Begin, End) - 1) * Separator.size(); in join_impl()
191 for (IteratorT I = Begin; I != End; ++I) in join_impl()
192 Len += (*Begin).size(); in join_impl()
[all …]
/NextBSD/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
/NextBSD/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()
HDStackColoring.cpp97 BitVector Begin; member
205 for (unsigned i=0; i < BlockInfo.Begin.size(); ++i) in dump()
206 DEBUG(dbgs()<<BlockInfo.Begin.test(i)<<" "); in dump()
242 BlockInfo.Begin.resize(NumSlot); in collectMarkers()
265 BlockInfo.Begin.set(Slot); in collectMarkers()
267 if (BlockInfo.Begin.test(Slot)) { in collectMarkers()
271 BlockInfo.Begin.reset(Slot); in collectMarkers()
319 LocalLiveIn.reset(BlockInfo.Begin); in calculateLocalLiveness()
328 LocalLiveOut |= BlockInfo.Begin; in calculateLocalLiveness()
337 LocalLiveIn.reset(BlockInfo.Begin); in calculateLocalLiveness()
[all …]
HDMachineLoopInfo.cpp52 MachineFunction::iterator Begin = TopMBB->getParent()->begin(); in getTopBlock() local
53 if (TopMBB != Begin) { in getTopBlock()
57 if (TopMBB == Begin) break; in getTopBlock()
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/
HDDiagnosticRenderer.cpp333 SourceLocation Begin = I->getBegin(), End = I->getEnd(); in mapDiagnosticRanges() local
336 FileID BeginFileID = SM->getFileID(Begin); in mapDiagnosticRanges()
343 while (Begin.isMacroID() && BeginFileID != EndFileID) { in mapDiagnosticRanges()
344 BeginLocsMap[BeginFileID] = Begin; in mapDiagnosticRanges()
345 Begin = SM->getImmediateExpansionRange(Begin).first; in mapDiagnosticRanges()
346 BeginFileID = SM->getFileID(Begin); in mapDiagnosticRanges()
356 Begin = BeginLocsMap[EndFileID]; in mapDiagnosticRanges()
361 while (Begin.isMacroID() && BeginFileID != CaretLocFileID) { in mapDiagnosticRanges()
362 if (SM->isMacroArgExpansion(Begin)) { in mapDiagnosticRanges()
363 Begin = SM->getImmediateSpellingLoc(Begin); in mapDiagnosticRanges()
[all …]
/NextBSD/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()
/NextBSD/contrib/llvm/include/llvm/CodeGen/
HDFaultMaps.h176 const uint8_t *Begin = P + FunctionFaultInfosOffset + in getFunctionFaultInfoAt() local
178 return FunctionFaultInfoAccessor(Begin, E); in getFunctionFaultInfoAt()
185 const uint8_t *Begin = P + MySize; in getNextFunctionInfo() local
186 assert(Begin < E && "out of bounds!"); in getNextFunctionInfo()
187 return FunctionInfoAccessor(Begin, E); in getNextFunctionInfo()
191 explicit FaultMapParser(const uint8_t *Begin, const uint8_t *End) in FaultMapParser() argument
192 : P(Begin), E(End) {} in FaultMapParser()
205 const uint8_t *Begin = P + FunctionInfosOffset; in getFirstFunctionInfo() local
206 return FunctionInfoAccessor(Begin, E); in getFirstFunctionInfo()
HDMachineInstrBuilder.h429 MachineBasicBlock::instr_iterator Begin; variable
437 : MBB(BB), Begin(Pos.getInstrIterator()), End(Begin) {} in MIBundleBuilder()
443 : MBB(BB), Begin(B.getInstrIterator()), End(E.getInstrIterator()) { in MIBundleBuilder()
456 : MBB(*MI->getParent()), Begin(MI), End(getBundleEnd(MI)) {} in MIBundleBuilder()
463 bool empty() const { return Begin == End; } in empty()
466 MachineBasicBlock::instr_iterator begin() const { return Begin; } in begin()
476 if (I == Begin) { in insert()
479 Begin = MI; in insert()
/NextBSD/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(nullptr), CompoundParent(nullptr), 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 …]
/NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/
HDDebugLocEntry.h26 const MCSymbol *Begin; variable
87 : Begin(B), End(E) { in DebugLocEntry()
96 if (Begin == Next.Begin) { in MergeValues()
114 if ((End == Next.Begin && Values == Next.Values)) { in MergeRanges()
121 const MCSymbol *getBeginSym() const { return Begin; } in getBeginSym()
/NextBSD/contrib/llvm/tools/llvm-pdbdump/
HDLinePrinter.h41 void SetFilters(std::list<Regex> &List, Iter Begin, Iter End) { in SetFilters() argument
43 for (; Begin != End; ++Begin) in SetFilters()
44 List.emplace_back(StringRef(*Begin)); in SetFilters()
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDLowerSwitch.cpp83 BasicBlock *switchConvert(CaseItr Begin, CaseItr End,
197 LowerSwitch::switchConvert(CaseItr Begin, CaseItr End, ConstantInt *LowerBound, in switchConvert() argument
202 unsigned Size = End - Begin; in switchConvert()
209 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in switchConvert()
214 fixPhis(Begin->BB, OrigBlock, Predecessor, NumMergedCases); in switchConvert()
215 return Begin->BB; in switchConvert()
217 return newLeafBlock(*Begin, Val, OrigBlock, Default); in switchConvert()
221 std::vector<CaseRange> LHS(Begin, Begin + Mid); in switchConvert()
223 std::vector<CaseRange> RHS(Begin + Mid, End); in switchConvert()
226 CaseRange &Pivot = *(Begin + Mid); in switchConvert()
/NextBSD/contrib/llvm/include/llvm/MC/
HDMCSection.h71 MCSymbol *Begin;
102 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
113 MCSymbol *getBeginSymbol() { return Begin; }
118 assert(!Begin);
119 Begin = Sym;
HDMCWinEH.h34 const MCSymbol *Begin; member
49 : Begin(nullptr), End(nullptr), ExceptionHandler(nullptr), in FrameInfo()
54 : Begin(BeginFuncEHLabel), End(nullptr), ExceptionHandler(nullptr), in FrameInfo()
60 : Begin(BeginFuncEHLabel), End(nullptr), ExceptionHandler(nullptr), in FrameInfo()
/NextBSD/contrib/llvm/lib/MC/
HDMCContext.cpp292 MCSymbol *Begin = nullptr; in getMachOSection() local
294 Begin = createTempSymbol(BeginSymName, false); in getMachOSection()
298 Reserved2, Kind, Begin); in getMachOSection()
366 MCSymbol *Begin = nullptr; in getELFSection() local
368 Begin = createTempSymbol(BeginSymName, false); in getELFSection()
372 GroupSym, UniqueID, Begin, Associated); in getELFSection()
402 MCSymbol *Begin = nullptr; in getCOFFSection() local
404 Begin = createTempSymbol(BeginSymName, false); in getCOFFSection()
408 CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin); in getCOFFSection()

1234567