HomeSort by: relevance | last modified time | path
    Searched refs:First (Results 1 - 25 of 385) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/clang/lib/Lex/
DependencyDirectivesSourceMinimizer.cpp 56 /// \pre First points at a valid identifier head.
57 LLVM_NODISCARD IdInfo lexIdentifier(const char *First, const char *const End);
58 LLVM_NODISCARD bool isNextIdentifier(StringRef Id, const char *&First,
60 LLVM_NODISCARD bool minimizeImpl(const char *First, const char *const End);
61 LLVM_NODISCARD bool lexPPLine(const char *&First, const char *const End);
62 LLVM_NODISCARD bool lexAt(const char *&First, const char *const End);
63 LLVM_NODISCARD bool lexModule(const char *&First, const char *const End);
64 LLVM_NODISCARD bool lexDefine(const char *&First, const char *const End);
65 LLVM_NODISCARD bool lexPragma(const char *&First, const char *const End);
66 LLVM_NODISCARD bool lexEndif(const char *&First, const char *const End)
    [all...]
PPCallbacks.cpp 27 First->HasInclude(Loc, FileName, IsAngled, File, FileType);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ilist_base.h 41 static void removeRangeImpl(node_base_type &First, node_base_type &Last) {
42 node_base_type *Prev = First.getPrev();
48 First.setPrev(nullptr);
52 static void transferBeforeImpl(node_base_type &Next, node_base_type &First,
54 if (&Next == &Last || &First == &Last)
58 assert(&Next != &First &&
65 First.getPrev()->setNext(&Last);
66 Last.setPrev(First.getPrev());
68 // Splice [First, Final] into its new list/position.
71 First.setPrev(&Prev)
    [all...]
simple_ilist.h 166 void insert(iterator I, Iterator First, Iterator Last) {
167 for (; First != Last; ++First)
168 insert(I, *First);
205 iterator erase(iterator First, iterator Last) {
206 list_base_type::removeRange(*First.getNodePtr(), *Last.getNodePtr());
221 iterator eraseAndDispose(iterator First, iterator Last, Disposer dispose) {
222 while (First != Last)
223 First = eraseAndDispose(First, dispose)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
StringView.h 24 const char *First;
31 StringView(const char (&Str)[N]) : First(Str), Last(Str + N - 1) {}
33 : First(First_), Last(Last_) {}
35 : First(First_), Last(First_ + Len) {}
36 StringView(const char *Str) : First(Str), Last(Str + std::strlen(Str)) {}
37 StringView() : First(nullptr), Last(nullptr) {}
49 if (const void *P = ::memchr(First + FindBegin, C, size() - FindBegin))
50 return size_t(static_cast<const char *>(P) - First);
58 return StringView(First + N, Last);
64 return StringView(First, Last - N)
    [all...]
ItaniumDemangle.h 542 SoFar.first = std::min(SoFar.first, RT->RK);
569 s += (Collapsed.first == ReferenceKind::LValue ? "&" : "&&");
1171 // Print the first element in the pack. If Child contains a ParameterPack,
1172 // it will set up S.CurrentPackMax and print the first element.
1950 const Node *First;
1955 : Node(KBracedRangeExpr), First(First_), Last(Last_), Init(Init_) {}
1957 template<typename Fn> void match(Fn F) const { F(First, Last, Init); }
1961 First->print(S);
2162 const char *first = Contents.begin() variable
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
AttrKinds.h 25 First##CLASS = FIRST_NAME, \
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
RefactoringActionRulesInternal.h 29 void ignoreError(Expected<FirstT> &First, Expected<RestT> &... Rest) {
30 if (!First)
31 llvm::consumeError(First.takeError());
38 llvm::Error findError(Expected<FirstT> &First, Expected<RestT> &... Rest) {
39 if (!First) {
41 return First.takeError();
72 const FirstT &First, const RestT &... Rest) {
82 (OptionGatherer{Visitor})(First);
96 template <typename Base, typename First, typename... Rest>
97 struct HasBaseOf : std::conditional<HasBaseOf<Base, First>::value |
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
AffectedRangeManager.cpp 30 Line->LeadingEmptyLinesAffected = affectsLeadingEmptyLines(*Line->First);
37 while (PPEnd != E && !(*PPEnd)->First->HasUnescapedNewline) {
42 if (affectsTokenRange(*Line->First, *Last,
72 bool AffectedRangeManager::affectsTokenRange(const FormatToken &First,
75 SourceLocation Start = First.WhitespaceRange.getBegin();
77 Start = Start.getLocWithOffset(First.LastNewlineOffset);
115 // Stores whether the first child line of any of this line's tokens is
119 for (FormatToken *Tok = Line->First; Tok; Tok = Tok->Next) {
124 // Determine whether the first child of 'Tok' was affected.
134 Line->First->NewlinesBefore == 0
    [all...]
UnwrappedLineFormatter.cpp 23 const FormatToken *Next = Line.First->getNextNonComment();
54 Offset = getIndentOffset(*Line.First);
67 if (Line.First->is(TT_CSharpGenericTypeConstraint))
84 unsigned LevelIndent = Line.First->OriginalColumn;
87 if ((!Line.First->is(tok::comment) || IndentForLevel[Line.Level] == -1) &&
153 return AnnotatedLines[StartLineIndex]->First->getNamespaceToken();
157 const FormatToken *NamespaceToken = Line->First->getNamespaceToken();
188 if (Next[i + 1]->First->NewlinesBefore > 0)
212 if (I[1]->Type == LT_Invalid || I[1]->First->MustBreakBefore)
215 (!I[1]->InPPDirective || I[1]->First->HasUnescapedNewline)
    [all...]
TokenAnnotator.h 40 : First(Line.Tokens.front().Tok), Level(Line.Level),
53 First->Previous = nullptr;
54 FormatToken *Current = First;
76 FormatToken *Current = First;
87 return First && First->startsSequence(Tokens...);
122 FormatToken *First;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SwitchLoweringUtils.cpp 24 unsigned First, unsigned Last) {
25 assert(Last >= First);
26 const APInt &LowCase = Clusters[First].Low->getValue();
38 unsigned First, unsigned Last) {
39 assert(Last >= First);
40 assert(TotalCases[Last] >= TotalCases[First]);
42 TotalCases[Last] - (First == 0 ? 0 : TotalCases[First - 1]);
172 for (unsigned First = 0, Last; First < N; First = Last + 1)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingPlatformOther.c 43 #define UPDATE_FIRST(First, New) First = New < First ? New : First
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
PPCallbacks.h 377 std::unique_ptr<PPCallbacks> First, Second;
382 : First(std::move(_First)), Second(std::move(_Second)) {}
389 First->FileChanged(Loc, Reason, FileType, PrevFID);
395 First->FileSkipped(SkippedFile, FilenameTok, FileType);
401 return First->FileNotFound(FileName, RecoveryPath) ||
411 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled,
421 First->EnteredSubmodule(M, ImportLoc, ForPragma);
427 First->LeftSubmodule(M, ImportLoc, ForPragma);
433 First->moduleImport(ImportLoc, Path, Imported);
438 First->EndOfMainFile()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclFriend.cpp 74 Decl *First = data().FirstFriend.get(Source);
75 return First ? cast<FriendDecl>(First) : nullptr;
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
string_util.h 25 template <class First, class... Rest>
26 inline std::ostream& StrCatImp(std::ostream& out, First&& f, Rest&&... rest) {
27 out << std::forward<First>(f);
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
string_util.h 21 template <class First, class... Rest>
22 inline std::ostream& StrCatImp(std::ostream& out, First&& f,
24 out << std::forward<First>(f);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
BinaryStreamWriter.cpp 86 WritableBinaryStreamRef First = Stream.drop_front(Offset);
88 WritableBinaryStreamRef Second = First.drop_front(Off);
89 First = First.keep_front(Off);
90 BinaryStreamWriter W1{First};
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaConcept.cpp 96 // first operand, and complain that it is of non-bool type.
138 // a disjunction is satisfied, the satisfaction of the first operand
147 // a conjunction is satisfied, the satisfaction of the first operand
184 S.Diag(PDiag.first, PDiag.second);
255 SubstDiag.first, StringRef(Mem, MessageSize)});
302 // of the first operand is checked. If that is not satisfied, the
411 bool First) {
423 << (int)First << SubstDiag->SubstitutedEntity
428 << (int)First << SubstDiag->SubstitutedEntity;
434 << (int)First << Req->getExpr()
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
mi-var-rtti.cc 183 struct First {
184 First() : F(-1) {}
189 struct MultipleDerived : public First, Base {
212 { VAR.First First 1 First }
216 mi_list_varobj_children "VAR.First" {
217 { VAR.First.public public 1 }
218 } "list children of ptr.First (with RTTI) in $testname"
219 mi_list_varobj_children "VAR.First.public"
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
mi-var-rtti.cc 183 struct First {
184 First() : F(-1) {}
189 struct MultipleDerived : public First, Base {
212 { VAR.First First 1 First }
216 mi_list_varobj_children "VAR.First" {
217 { VAR.First.public public 1 }
218 } "list children of ptr.First (with RTTI) in $testname"
219 mi_list_varobj_children "VAR.First.public"
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
ArgumentsAdjusters.h 72 /// with the \p First adjuster and then with the \p Second one.
73 ArgumentsAdjuster combineAdjusters(ArgumentsAdjuster First,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ItaniumManglingCanonicalizer.h 51 /// The first equivalent mangling is invalid.
67 /// Add an equivalence between \p First and \p Second. Both manglings must
69 EquivalenceError addEquivalence(FragmentKind Kind, StringRef First,
  /src/external/gpl3/gdb/dist/sim/testsuite/bfin/
cec-system-call.S 18 # First mark all EVTs as fails (they shouldn't be activated)
  /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
cec-system-call.S 18 # First mark all EVTs as fails (they shouldn't be activated)

Completed in 45 milliseconds

1 2 3 4 5 6 7 8 91011>>