HomeSort by relevance Sort by last modified time
    Searched refs:Previous (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/clang/lib/Format/
ContinuationIndenter.cpp 44 return Tok.isMemberAccess() && Tok.Previous && Tok.Previous->closesScope();
50 const FormatToken &Previous = *Current.Previous;
54 return Previous.is(tok::comma) && !Current.isTrailingComment() &&
55 (Previous.isNot(TT_CtorInitializerComma) ||
94 const FormatToken &Previous = *Current.Previous;
95 assert(&Previous == Current.Previous);
    [all...]
TokenAnnotator.cpp 47 FormatToken *Left = CurrentToken->Previous;
59 Left->Previous && Left->Previous->Tok.isNot(tok::kw_template);
87 if (CurrentToken->Previous->isOneOf(tok::pipepipe, tok::ampamp) &&
88 CurrentToken->Previous->is(TT_BinaryOperator) &&
102 FormatToken *Left = CurrentToken->Previous;
114 } else if (FormatToken *MaybeSel = Left->Previous) {
116 if (MaybeSel->isObjCAtKeyword(tok::objc_selector) && MaybeSel->Previous &&
117 MaybeSel->Previous->is(tok::at)) {
122 if (Left->Previous &
    [all...]
FormatToken.cpp 77 if (State.NextToken == nullptr || !State.NextToken->Previous)
82 State.NextToken->Previous->getPreviousNonComment();
91 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth;
109 // If the previous token was one of our commas, we are now on the next item.
110 if (Item < Commas.size() && State.NextToken->Previous == Commas[Item]) {
187 !ItemEnd->Previous->isTrailingComment()) {
194 ItemEnd = Token->MatchingParen->Previous;
UnwrappedLineFormatter.cpp 433 assert(!B.First->Previous);
437 B.First->Previous = A.Last;
512 FormatToken &Previous = *State.NextToken->Previous;
514 LBrace->BlockKind != BK_Block || Previous.Children.size() == 0)
515 // The previous token does not open a block. Nothing to do. We don't
521 Previous.Children[0]->Level * Style.IndentWidth;
524 BlockFormatter->format(Previous.Children, DryRun, AdditionalIndent,
529 if (Previous.Children[0]->First->MustBreakBefore)
533 if (Previous.Children.size() > 1
    [all...]
TokenAnnotator.h 49 // Calculate Next and Previous for all tokens. Note that we must overwrite
50 // Next and Previous for every token, as previous formatting runs might have
52 First->Previous = nullptr;
59 I->Tok->Previous = Current;
FormatToken.h 263 /// \brief The previous token in the unwrapped line.
264 FormatToken *Previous = nullptr;
397 /// \brief Returns the previous token ignoring comments.
399 FormatToken *Tok = Previous;
401 Tok = Tok->Previous;
  /external/llvm/include/llvm/ADT/
edit_distance.h 57 // iteration, and the top-left entry is stored in Previous.
77 unsigned Previous = y - 1;
82 Previous + (FromArray[y-1] == ToArray[x-1] ? 0u : 1u),
86 if (FromArray[y-1] == ToArray[x-1]) Row[x] = Previous;
89 Previous = OldRow;
  /external/libnfc-nxp/src/
phFriNfc_NdefReg.c 133 NdefCb->Previous =NULL;
142 NdefCb->Previous = NULL;
143 NdefReg->NdefTypeList->Previous = NdefCb;
144 NdefReg->NdefTypeList = NdefReg->NdefTypeList->Previous;
191 if(tempNode->Previous==NULL && tempNode->Next!=NULL)
194 NdefReg->NdefTypeList->Previous = NULL;
198 if(tempNode->Next==NULL && tempNode->Previous==NULL)
203 if (tempNode->Previous != NULL)
205 tempNode->Previous->Next = tempNode->Next;
209 tempNode->Next->Previous = tempNode->Previous
    [all...]
phFriNfc_NdefReg.h 215 * This member is required by the library to link to the previous registered item. In case of the
218 struct phFriNfc_NdefReg_Cb *Previous;
  /external/clang/lib/Frontend/
FrontendAction.cpp 40 ASTDeserializationListener *Previous;
45 ASTDeserializationListener *Previous, bool DeletePrevious)
46 : Previous(Previous), DeletePrevious(DeletePrevious) {}
49 delete Previous;
53 if (Previous)
54 Previous->ReaderInitialized(Reader);
58 if (Previous)
59 Previous->IdentifierRead(ID, II);
62 if (Previous)
    [all...]
  /external/clang/include/clang/AST/
Redeclarable.h 36 typedef Decl *Previous;
39 /// we've not yet set the previous decl or there isn't one), or to a known
40 /// previous declaration.
41 typedef llvm::PointerUnion<Previous, UninitializedLatest> NotKnownLatest;
52 : Next(NotKnownLatest(Previous(D))) {}
58 Next.get<NotKnownLatest>().template is<Previous>();
66 if (NKL.is<Previous>())
67 return static_cast<decl_type*>(NKL.get<Previous>());
79 Next = Previous(D);
114 /// If NextIsPrevious() is true, this is a link to the previous declaratio
    [all...]
DeclContextInternals.h 248 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous;
  /frameworks/base/tests/backup/
test_restore.sh 52 echo --- Previous files
55 echo --- Previous shared_prefs
  /external/llvm/lib/MC/
StringTableBuilder.cpp 87 StringRef Previous;
93 if (Previous.endswith(S)) {
102 Previous = S;
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.h 59 unsigned Previous;
  /external/clang/include/clang/Lex/
MacroInfo.h 312 /// \brief Previous macro directive for the same identifier, or NULL.
313 MacroDirective *Previous;
330 : Previous(nullptr), Loc(Loc), MDKind(K), IsFromPCH(false),
338 /// \brief Set previous definition of the macro with the same name.
339 void setPrevious(MacroDirective *Prev) { Previous = Prev; }
341 /// \brief Get previous definition of the macro with the same name.
342 const MacroDirective *getPrevious() const { return Previous; }
344 /// \brief Get previous definition of the macro with the same name.
345 MacroDirective *getPrevious() { return Previous; }
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
unwind-bad.l 5 .*:16: Warning: Previous .save incomplete
10 .*:28: Warning: Previous .save incomplete
15 .*:40: Warning: Previous .save incomplete
35 .*:90: Warning: Previous .save incomplete
  /external/llvm/unittests/ADT/
SCCIteratorTest.cpp 143 NodeSubset Previous(Reachable);
147 if (Previous.count(i))
151 if (Reachable == Previous)
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 300 /// Get the previous declaration of a declaration for the purposes of template
301 /// instantiation. If this finds a previous declaration, then the previous
308 // If the declaration is within a class, and the previous declaration was
310 // previous declaration for the purpose of template instantiation.
    [all...]
  /build/tools/droiddoc/templates-pdk/
docpage.cs 49 <?cs if:previous.link ?>
50 <div class="training-nav-button-previous">
51 <a href="<?cs var:previous.link ?>">
53 Previous lesson
54 <span class="training-nav-button-title"><?cs var:previous.title ?></span>
58 <?cs /if ?><?cs # end if previous.link ?>
68 <?cs if:!startpage && (previous.link || next.link) ?>
80 <?cs if:previous.link ?>
81 <div class="training-nav-button-previous">
82 <a href="<?cs var:previous.link ?>"
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 205 // Go backward in the CFG to see if the previous element (ignoring
217 CFGElement Previous = (*B)[PreviousStmtIdx];
219 while (Previous.getAs<CFGImplicitDtor>() && PreviousStmtIdx > 0) {
221 Previous = (*B)[PreviousStmtIdx];
224 if (Optional<CFGStmt> PrevStmtElem = Previous.getAs<CFGStmt>()) {
  /external/nist-pkits/
extract-pkits-tests.pl 158 if ($_ =~ /^\s*5 Relationship to Previous Test Suite\s*[^.]/) {
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 212 Redeclarable<DeclT> *D, Decl *Previous,
215 static void attachPreviousDecl(ASTReader &Reader, Decl *D, Decl *Previous,
    [all...]

Completed in 2567 milliseconds

1 2 3