HomeSort by relevance Sort by last modified time
    Searched defs:Loc (Results 101 - 125 of 197) sorted by null

1 2 3 45 6 7 8

  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 675 BasicBlock::iterator Loc= Instr;
676 BasicBlock *Next = Curr->splitBasicBlock(Loc, "CF");
  /ndk/tests/device/test-stlport_shared-exception/jni/
unroll1.cpp 17 class Loc;
74 typedef Loc AskDomain_t;
117 struct DomainTraits<Loc>
121 typedef Loc Domain_t;
122 typedef Loc AskDomain_t;
123 typedef Loc MultResult_t;
145 class Loc : public Domain<DomainTraits<Loc> >
148 explicit Loc(const int &a) : Domain<DomainTraits<Loc> >() {
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
unroll1.cpp 17 class Loc;
74 typedef Loc AskDomain_t;
117 struct DomainTraits<Loc>
121 typedef Loc Domain_t;
122 typedef Loc AskDomain_t;
123 typedef Loc MultResult_t;
145 class Loc : public Domain<DomainTraits<Loc> >
148 explicit Loc(const int &a) : Domain<DomainTraits<Loc> >() {
    [all...]
  /external/clang/include/clang/Sema/
AttributeList.h 51 SourceLocation Loc;
54 static IdentifierLoc *create(ASTContext &Ctx, SourceLocation Loc,
Overload.h 718 SourceLocation Loc;
730 OverloadCandidateSet(SourceLocation Loc, CandidateSetKind CSK)
731 : Loc(Loc), Kind(CSK), NumInlineSequences(0) {}
734 SourceLocation getLocation() const { return Loc; }
781 OverloadingResult BestViableFunction(Sema &S, SourceLocation Loc,
789 SourceLocation Loc = SourceLocation());
795 SourceLocation Loc,
ScopeInfo.h 71 SourceLocation Loc;
74 PossiblyUnreachableDiag(const PartialDiagnostic &PD, SourceLocation Loc,
76 : PD(PD), Loc(Loc), stmt(stmt) {}
387 SourceLocation Loc;
398 SourceLocation Loc, SourceLocation EllipsisLoc,
403 Loc(Loc), EllipsisLoc(EllipsisLoc), CaptureType(CaptureType) {}
406 Capture(IsThisCapture, bool IsNested, SourceLocation Loc,
410 Loc(Loc), EllipsisLoc(), CaptureType(CaptureType) {
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 293 unsigned Loc;
302 DeclUpdate(unsigned Kind, SourceLocation Loc)
303 : Kind(Kind), Loc(Loc.getRawEncoding()) {}
311 return SourceLocation::getFromRawEncoding(Loc);
364 unsigned Loc;
366 ReplacedDeclInfo() : ID(0), Offset(0), Loc(0) {}
368 SourceLocation Loc)
369 : ID(ID), Offset(Offset), Loc(Loc.getRawEncoding()) {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 136 FullSourceLoc Loc;
142 Loc(genLocation(L)), Range(genRange()) {
164 Loc(genLocation(SourceLocation(), lac)),
167 assert(K == SingleLocK || Loc.isValid());
174 Loc(genLocation()), Range(genRange()) {
176 assert(Loc.isValid());
183 PathDiagnosticLocation(SourceLocation loc, const SourceManager &sm)
184 : K(SingleLocK), S(nullptr), D(nullptr), SM(&sm), Loc(loc, sm),
186 assert(Loc.isValid())
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 574 const Stmt *Loc;
589 : LCtx(Ctx), Loc(s), SymMgr(symmgr),
  /external/clang/lib/AST/
ExprCXX.cpp 488 return Loc;
498 SourceLocation End = Loc;
772 CXXDefaultArgExpr::Create(const ASTContext &C, SourceLocation Loc,
775 return new (Mem) CXXDefaultArgExpr(CXXDefaultArgExprClass, Loc, Param,
779 CXXDefaultInitExpr::CXXDefaultInitExpr(const ASTContext &C, SourceLocation Loc,
786 Field(Field), Loc(Loc) {
    [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 86 SourceLocation Loc;
88 Loc = getFirstStmtLoc(*Block->succ_begin());
89 if (Loc.isValid())
90 return Loc;
96 return Loc;
    [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp     [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 469 const ParsedSourceLocation &Loc = getFrontendOpts().CodeCompletionAt;
473 Loc.FileName, Loc.Line, Loc.Column,
478 } else if (EnableCodeCompletion(getPreprocessor(), Loc.FileName,
479 Loc.Line, Loc.Column)) {
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 79 Preprocessor::AllocateDefMacroDirective(MacroInfo *MI, SourceLocation Loc,
82 new (MD) DefMacroDirective(MI, Loc, isImported);
94 Preprocessor::AllocateVisibilityMacroDirective(SourceLocation Loc,
97 new (MD) VisibilityMacroDirective(Loc, isPublic);
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
ParsePragma.cpp 398 SourceLocation Loc = Tok.getLocation();
401 Actions.ActOnCapturedRegionStart(Loc, getCurScope(), CR_Default,
    [all...]
ParseStmt.cpp 413 SourceLocation Loc = ConsumeToken();
414 return ParseSEHTryBlockCommon(Loc);
438 SourceLocation Loc = ConsumeToken();
439 Handler = ParseSEHExceptBlock(Loc);
441 SourceLocation Loc = ConsumeToken();
442 Handler = ParseSEHFinallyBlock(Loc);
    [all...]
Parser.cpp 74 DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
75 return Diags.Report(Loc, DiagID);
85 /// \param Loc The location where we'll emit the diagnostic.
88 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
94 Diag(Loc, DK);
98 Diag(Loc, DK)
120 SourceLocation Loc = Tok.getLocation();
122 DiagnosticBuilder DB = Diag(Loc, DiagID);
124 SourceRange(Loc), tok::getPunctuatorSpelling(ExpectedTok));
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 47 SourceLocation Sema::getLocForEndOfToken(SourceLocation Loc, unsigned Offset) {
48 return Lexer::getLocForEndOfToken(Loc, Offset, SourceMgr, LangOpts);
250 bool Sema::makeUnavailableInSystemHeader(SourceLocation loc,
261 if (!Context.getSourceManager().isInSystemHeader(loc))
267 fn->addAttr(UnavailableAttr::CreateImplicit(Context, msg, loc));
1008 SourceLocation loc = locref; local
    [all...]
SemaAccess.cpp     [all...]
SemaExprMember.cpp 203 SourceLocation Loc = nameInfo.getLoc();
204 SourceRange Range(Loc);
217 SemaRef.Diag(Loc, diag::err_invalid_member_use_in_static_method)
223 SemaRef.Diag(Loc, diag::err_nested_non_static_member_use)
226 SemaRef.Diag(Loc, diag::err_invalid_non_static_member_use)
229 SemaRef.Diag(Loc, diag::err_member_call_without_object)
741 SourceLocation loc,
764 DeclarationNameInfo baseNameInfo(DeclarationName(), loc); local
798 Diag(loc, diag::err_invalid_member_use_in_static_method)
804 CheckCXXThisCapture(loc);
1733 SourceLocation loc = R.getNameLoc(); local
    [all...]
SemaLambda.cpp 235 /*Template kw loc*/ SourceLocation(), LAngleLoc,
696 QualType Sema::performLambdaInitCaptureInitialization(SourceLocation Loc,
712 TLB.pushTypeSpec(DeductType).setNameLoc(Loc);
714 DeductType = BuildReferenceType(DeductType, true, Loc, Id);
716 TLB.push<ReferenceTypeLoc>(DeductType).setSigilLoc(Loc);
729 << DeclarationName(Id) << TSI->getType() << Loc;
734 << DeclarationName(Id) << TSI->getType() << Loc;
740 << DeclarationName(Id) << Loc;
749 Diag(Loc, diag::err_init_capture_deduction_failure_from_init_list)
755 Diag(Loc, diag::err_init_capture_deduction_failure
    [all...]
SemaObjCProperty.cpp 275 SourceLocation LParenLoc, SourceLocation &Loc) {
296 Loc = Tok.getLocation();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 211 if (Optional<Loc> LValue = RetVal.getAs<Loc>())
221 if (Optional<Loc> RetLoc = RetVal.getAs<Loc>())
264 Optional<Loc> LValue;
266 if ((LValue = V.getAs<Loc>())) {
297 if (V.getAs<Loc>()) {
362 Optional<Loc> ArgV = Call->getArgSVal(I).getAs<Loc>();
536 V.getAs<loc::ConcreteInt>() || V.getAs<nonloc::ConcreteInt>())
    [all...]
PathDiagnostic.cpp 183 Loc = CP->getLocation();
647 SourceLocation Loc = (*CS->body_begin())->getLocStart();
648 return PathDiagnosticLocation(Loc, SM, SingleLocK);
811 return PathDiagnosticRange(SourceRange(Loc,Loc), true);
862 return SourceRange(Loc,Loc);
    [all...]

Completed in 1704 milliseconds

1 2 3 45 6 7 8