Searched refs:First (Results 1 - 25 of 131) sorted by relevance

123456

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DSelectorExtras.h20 const char *First,
23 II.push_back(&Ctx.Idents.get(First));
32 const char *First = va_arg(argp, const char *); local
33 assert(First && "keyword selectors must have at least one argument");
34 return getKeywordSelectorImpl(Ctx, First, argp);
39 const char *First, ...) {
41 va_start(argp, First);
42 Selector result = getKeywordSelectorImpl(Ctx, First, argp);
49 const char *First, ...) {
53 va_start(argp, First);
19 getKeywordSelectorImpl(ASTContext &Ctx, const char *First, va_list argp) argument
38 getKeywordSelector(ASTContext &Ctx, const char *First, ...) argument
48 lazyInitKeywordSelector(Selector &Sel, ASTContext &Ctx, const char *First, ...) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPPCallbacks.h326 std::unique_ptr<PPCallbacks> First, Second; member in class:clang::PPChainedCallbacks
331 : First(std::move(_First)), Second(std::move(_Second)) {}
336 First->FileChanged(Loc, Reason, FileType, PrevFID);
343 First->FileSkipped(SkippedFile, FilenameTok, FileType);
349 return First->FileNotFound(FileName, RecoveryPath) ||
358 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled,
368 First->moduleImport(ImportLoc, Path, Imported);
373 First->EndOfMainFile();
378 First->Ident(Loc, str);
384 First
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/profile/
H A DInstrProfilingPlatformOther.c43 #define UPDATE_FIRST(First, New) First = New < First ? New : First
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp22 const FormatToken *Next = Line.First->getNextNonComment();
53 Offset = getIndentOffset(*Line.First);
74 unsigned LevelIndent = Line.First->OriginalColumn;
77 if ((!Line.First->is(tok::comment) || IndentForLevel[Line.Level] == -1) &&
149 if (Next[i + 1]->First->NewlinesBefore > 0)
171 if (I[1]->Type == LT_Invalid || I[1]->First->MustBreakBefore)
174 (!I[1]->InPPDirective || I[1]->First->HasUnescapedNewline))
193 I[1]->First->is(tok::r_brace)) ||
198 TheLine->First != TheLine->Last) {
206 if (I[1]->First
[all...]
H A DTokenAnnotator.h42 : First(Line.Tokens.front().Tok), Level(Line.Level),
52 First->Previous = nullptr;
53 FormatToken *Current = First;
75 FormatToken *Current = First;
86 return startsWith(First, Tokens...);
98 FormatToken *First; member in class:clang::format::AnnotatedLine
H A DFormat.cpp838 auto First = Tokens.end() - 3; local
839 if (First[2]->is(tok::less) || First[1]->isNot(tok::less) ||
840 First[0]->isNot(tok::less) || FourthTokenIsLess)
844 if (First[1]->WhitespaceRange.getBegin() !=
845 First[1]->WhitespaceRange.getEnd())
848 First[0]->Tok.setKind(tok::lessless);
849 First[0]->TokenText = "<<";
850 First[0]->ColumnWidth += 1;
859 SmallVectorImpl<FormatToken *>::const_iterator First
1599 affectsTokenRange(const FormatToken &First, const FormatToken &Last, bool IncludeLeadingNewlines) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclFriend.cpp67 Decl *First = data().FirstFriend.get(Source); local
68 return First ? cast<FriendDecl>(First) : nullptr;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Tooling/
H A DArgumentsAdjusters.cpp77 ArgumentsAdjuster combineAdjusters(ArgumentsAdjuster First,
79 return [First, Second](const CommandLineArguments &Args, StringRef File) {
80 return Second(First(Args, File), File);
/freebsd-11.0-release/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.cpp41 bool First = true; local
43 if (First)
44 First = false;
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Tooling/
H A DArgumentsAdjusters.h61 /// with the \p First adjuster and then with the \p Second one.
62 ArgumentsAdjuster combineAdjusters(ArgumentsAdjuster First,
/freebsd-11.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp80 Record *First = nullptr, *Last = nullptr; local
84 First = Last = Base;
106 if (!First && Result.first)
107 First = Result.first;
114 if (!First)
115 First = R;
122 if (First) {
128 OS << Base->getName() << ", " << First->getName() << ", "
132 return std::make_pair(First, Last);
145 << macroName(Root.getName()) << "_RANGE(Base, First, Las
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/X86/
H A DX86OptimizeLEAs.cpp60 int calcInstrDist(const MachineInstr &First, const MachineInstr &Last);
78 /// \p First. The difference between displacements of the addresses calculated
80 /// replacement of the \p Last LEA's uses with the \p First's def register.
81 bool isReplaceable(const MachineInstr &First, const MachineInstr &Last,
117 int OptimizeLEAPass::calcInstrDist(const MachineInstr &First, argument
121 assert(Last.getParent() == First.getParent() &&
123 assert(InstrPos.find(&First) != InstrPos.end() &&
127 return InstrPos[&Last] - InstrPos[&First];
210 // Check that the Last LEA can be replaced by the First LEA. To be so,
216 bool OptimizeLEAPass::isReplaceable(const MachineInstr &First, argument
403 MachineInstr &First = **I1; local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DInterferenceCache.cpp154 BI->First = BI->Last = SlotIndex();
164 if (!BI->First.isValid() || StartI < BI->First)
165 BI->First = StartI;
177 if (!BI->First.isValid() || StartI < BI->First)
178 BI->First = StartI;
184 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop;
189 BI->First
[all...]
H A DInterferenceCache.h34 SlotIndex First; member in struct:llvm::InterferenceCache::BlockInterference
217 return Current->First.isValid();
223 return Current->First;
/freebsd-11.0-release/sys/contrib/dev/acpica/compiler/
H A Daslbtypes.c325 BOOLEAN First = TRUE; local
339 if (!First)
344 First = FALSE;
352 if (!First)
357 First = FALSE;
364 if (!First)
369 First = FALSE;
/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DTrailingObjects.h62 template <typename First, typename... Rest> class AlignmentCalcHelper {
65 FirstAlignment = AlignOf<First>::Alignment,
75 template <typename First> class AlignmentCalcHelper<First> {
77 enum { Alignment = AlignOf<First>::Alignment };
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp224 User *First = dyn_cast<User>(Pair.first); local
226 assert((!First || Second) && "translated from user to non-user!?");
227 if (First)
228 for (unsigned i = 0; i < First->getNumOperands(); ++i)
229 Second->setOperand(i, BoolToIntMap[First->getOperand(i)]);
H A DPPCTLSDynamicCall.cpp114 MachineBasicBlock::iterator First = I; local
115 --First;
135 LIS->repairIntervalsInRange(&MBB, First, Last, OrigRegs);
/freebsd-11.0-release/contrib/compiler-rt/lib/ubsan/
H A Dubsan_type_hash_itanium.cc99 unsigned First = (V & 65535) ^ 1; local
100 unsigned Probe = First;
110 return &__ubsan_vptr_hash_set[First];
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Tooling/Core/
H A DReplacement.cpp286 // overlapping replacements from 'First' and 'Second' in mergeReplacements.
290 // coordinate spaces. Replacements from 'First' refer to the original text
291 // whereas replacements from 'Second' refer to the text after applying 'First'.
295 // changed based on the elements from 'First'.
301 // * We always merge elements from 'First' into elements from 'Second' and vice
316 // from 'First' into 'Second' or vice versa, the MergedReplacement knows what
366 // Sum of all deltas (text-length - length) of elements from 'First' merged
380 Replacements mergeReplacements(const Replacements &First, argument
382 if (First.empty() || Second.empty())
383 return First
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonOptimizeSZextends.cpp87 Instruction* First = &F.getEntryBlock().front(); local
88 SI->insertBefore(First);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DRedeclarable.h132 decl_type *First; member in class:clang::Redeclarable
140 : RedeclLink(LatestDeclLink(Ctx)), First(static_cast<decl_type *>(this)) {}
156 decl_type *getFirstDecl() { return First; }
160 const decl_type *getFirstDecl() const { return First; }
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h220 bool First; member in class:clang::ento::StoreManager::FindUniqueBinding
224 : Sym(sym), Binding(nullptr), First(true) {}
228 explicit operator bool() { return First && Binding; }
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DMacroInfo.cpp157 bool First = true; local
161 if (First || Tok.hasLeadingSpace())
163 First = false;
H A DPreprocessingRecord.cpp208 First = PreprocessedEntities.begin(); local
217 I = First;
221 First = I;
222 ++First;
228 return First - PreprocessedEntities.begin();

Completed in 293 milliseconds

123456