| /NextBSD/contrib/ntp/lib/isc/win32/ |
| HD | libisc.dsp | 24 # 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/ |
| HD | testall.dsw | 26 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/ |
| HD | aprutil.dsw | 26 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/ |
| HD | apr.dsp | 28 # 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 …]
|
| HD | libapr.dsp | 28 # 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 …]
|
| HD | apr.dsw | 26 Begin Project Dependency 53 Begin Project Dependency 68 Begin Project Dependency 83 Begin Project Dependency
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Analysis/Support/ |
| HD | BumpVector.h | 54 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/ |
| HD | ASTVector.h | 35 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/ |
| HD | StringExtras.h | 169 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/ |
| HD | tst.multibegin.d.out | 1 Begin fired first 2 Begin fired second 3 Begin fired third 4 Begin fired fourth 5 Begin fired fifth
|
| /NextBSD/contrib/llvm/lib/CodeGen/ |
| HD | SlotIndexes.cpp | 147 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()
|
| HD | StackColoring.cpp | 97 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 …]
|
| HD | MachineLoopInfo.cpp | 52 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/ |
| HD | DiagnosticRenderer.cpp | 333 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/ |
| HD | SemaFixItUtils.cpp | 60 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/ |
| HD | FaultMaps.h | 176 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()
|
| HD | MachineInstrBuilder.h | 429 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/ |
| HD | TransAutoreleasePool.cpp | 99 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 …]
|
| HD | TransformActions.cpp | 66 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/ |
| HD | DebugLocEntry.h | 26 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/ |
| HD | LinePrinter.h | 41 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/ |
| HD | LowerSwitch.cpp | 83 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/ |
| HD | MCSection.h | 71 MCSymbol *Begin; 102 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin); 113 MCSymbol *getBeginSymbol() { return Begin; } 118 assert(!Begin); 119 Begin = Sym;
|
| HD | MCWinEH.h | 34 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/ |
| HD | MCContext.cpp | 292 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()
|