Searched defs:Prev (Results 51 - 67 of 67) sorted by relevance

123

/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp802 unsigned Prev = 0; local
814 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
819 Prev = i + 1;
824 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
830 Prev = i + 1;
835 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
841 Prev = i;
849 Prev = EndPos + 1;
857 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
858 Prev
[all...]
/external/clang/include/clang/Lex/
H A DPreprocessor.h436 MacroInfoChain *Prev; member in struct:clang::Preprocessor::MacroInfoChain
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp296 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
297 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
663 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(), local
666 if (!Prev) return nullptr;
667 PrevDecl = cast<EnumDecl>(Prev);
1142 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(), local
1145 if (!Prev) return nullptr;
1146 PrevDecl = cast<CXXRecordDecl>(Prev);
2149 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
2161 Prev
[all...]
H A DSemaTemplate.cpp2588 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
2590 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
6220 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
6222 if (getTemplateSpecializationKind(Prev)
7573 NamedDecl *Prev = *P; local
[all...]
H A DSemaChecking.cpp6553 : Self(Self), Prev(Self.EvalTracker), EvalOK(true) {
6557 Self.EvalTracker = Prev;
6558 if (Prev)
6559 Prev->EvalOK &= EvalOK;
6571 EvaluationTracker *Prev; member in class:__anon18013::SequenceChecker::EvaluationTracker
H A DSemaDecl.cpp5832 NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName()); local
5834 if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) {
5840 if (Prev) {
5845 Previous.addDecl(Prev);
5863 Prev = *I;
5873 Prev = *I;
5884 if (!Prev)
5890 assert(Prev && "should have found a previous declaration to diagnose");
5891 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev))
5892 Prev
10570 CheckEnumRedeclaration(SourceLocation EnumLoc, bool IsScoped, QualType EnumUnderlyingTy, const EnumDecl *Prev) argument
[all...]
H A DSemaDeclCXX.cpp7806 const LookupResult &Prev) {
7819 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
12128 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
12131 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization ||
12132 Prev->getPreviousDecl()) &&
12133 !Prev->isDefined()) {
12135 Diag(Prev->getLocation().isInvalid() ? DelLoc : Prev->getLocation(),
12136 Prev
7802 CheckUsingDeclRedeclaration(SourceLocation UsingLoc, bool HasTypenameKeyword, const CXXScopeSpec &SS, SourceLocation NameLoc, const LookupResult &Prev) argument
[all...]
H A DSemaExpr.cpp8474 DeclContext *DC = S.CurContext, *Prev = nullptr; local
8476 Prev = DC;
8481 DC = Prev;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp2142 const SymbolCU &Prev = List[n - 1]; local
2146 if (Cur.CU != Prev.CU) {
2150 Spans[Prev.CU].push_back(Span);
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp654 LeaderTableEntry* Prev = nullptr; local
658 Prev = Curr;
662 if (Prev) {
663 Prev->Next = Curr->Next;
/external/clang/lib/AST/
H A DDecl.cpp1139 if (const VarDecl *Prev = Var->getPreviousDecl()) {
1140 LinkageInfo PrevLV = getLVForDecl(Prev, computation);
2716 const FunctionDecl *Prev = this; local
2718 while ((Prev = Prev->getPreviousDecl())) {
2719 FoundBody |= Prev->Body.isValid();
2721 if (Prev->Body) {
2724 if (!Prev->isInlineSpecified() ||
2725 Prev->getStorageClass() != SC_Extern)
2727 } else if (Prev
2744 const FunctionDecl *Prev = this; local
[all...]
/external/clang/lib/Analysis/
H A DCFG.cpp117 /// Create valid iterator. In case when S.Prev is an invalid iterator and
124 *this = Scope->Prev;
143 *this = Scope->Prev;
175 const_iterator Prev; member in class:__anon17770::LocalScope
180 : ctx(ctx), Vars(ctx, 4), Prev(P) {}
200 F = F.Scope->Prev;
/external/clang/lib/Driver/
H A DToolChains.cpp695 unsigned Prev = Index; local
706 if (!XarchArg || Index > Prev + 1) {
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1979 PathPieces::iterator Prev = pieces.end(); local
1980 for (PathPieces::iterator I = pieces.begin(), E = Prev; I != E;
1981 Prev = I, ++I) {
2023 if (Prev != E) {
2025 dyn_cast<PathDiagnosticControlFlowPiece>(*Prev);
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h244 /// pointer to the SDNode using the value, and Next and Prev pointers,
252 /// Prev, Next - Pointers to the uses list of the SDNode referred by
254 SDUse **Prev, *Next; member in class:llvm::SDUse
260 SDUse() : Val(), User(nullptr), Prev(nullptr), Next(nullptr) {}
315 if (Next) Next->Prev = &Next;
316 Prev = List;
321 *Prev = Next;
322 if (Next) Next->Prev = Prev;
/external/clang/lib/Serialization/
H A DASTReader.cpp1907 MacroDirective *Prev = PP.getMacroDirective(II); local
1908 if (!Prev && Overrides.empty())
1911 DefMacroDirective *PrevDef = Prev ? Prev->getDefinition().getDirective()
1957 AmbiguousMacros *Prev = local
1965 if (!Prev) {
1972 assert(!Prev->empty());
1978 MacroInfo *NewMI = Prev->back()->getInfo();
1979 Prev->pop_back();
1988 while (!Prev
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp764 ReductionInstDesc &Prev);
4123 UnderlyingObjToAccessMap::iterator Prev = local
4125 if (Prev != ObjToLastAccess.end())
4126 DepCands.unionSets(Access, Prev->second);
4975 ReductionInstDesc &Prev) {
4987 return ReductionInstDesc(Select, Prev.MinMaxKind);
5026 ReductionInstDesc &Prev) {
5036 return ReductionInstDesc(I, Prev.MinMaxKind);
5058 return isMinMaxSelectCmpPattern(I, Prev);

Completed in 693 milliseconds

123