/external/clang/tools/libclang/ |
CIndexDiagnostic.h | 24 const LangOptions &LangOpts; 27 const LangOptions &LangOpts) 28 : Diag(Diag), LangOpts(LangOpts) { }
|
CXSourceLocation.h | 30 translateSourceLocation(const SourceManager &SM, const LangOptions &LangOpts, 35 CXSourceLocation Result = { { (void*) &SM, (void*) &LangOpts, }, 55 const LangOptions &LangOpts,
|
CIndexDiagnostic.cpp | 202 StoredDiag->LangOpts, 271 StoredDiag->LangOpts, 302 StoredDiag->LangOpts,
|
/external/clang/include/clang/AST/ |
PrettyPrinter.h | 40 : Indentation(2), LangOpts(LO), SuppressSpecifiers(false), 50 const LangOptions LangOpts;
|
/external/clang/lib/Lex/ |
PPMacroExpansion.cpp | 573 const LangOptions &LangOpts = PP.getLangOptions(); 591 .Case("blocks", LangOpts.Blocks) 592 .Case("cxx_exceptions", LangOpts.Exceptions) 593 .Case("cxx_rtti", LangOpts.RTTI) 596 .Case("objc_arr", LangOpts.ObjCAutoRefCount) // FIXME: REMOVE? 597 .Case("objc_arc", LangOpts.ObjCAutoRefCount) 598 .Case("objc_arc_weak", LangOpts.ObjCAutoRefCount && 599 LangOpts.ObjCRuntimeHasWeak) 600 .Case("objc_nonfragile_abi", LangOpts.ObjCNonFragileABI) 601 .Case("objc_weak_class", LangOpts.ObjCNonFragileABI [all...] |
/external/clang/lib/Frontend/ |
InitPreprocessor.cpp | 226 static void AddObjCXXARCLibcxxDefines(const LangOptions &LangOpts, 253 if (LangOpts.ObjCRuntimeHasWeak) { 292 static void AddObjCXXARCLibstdcxxDefines(const LangOptions &LangOpts, 321 if (LangOpts.ObjCRuntimeHasWeak) { 344 const LangOptions &LangOpts, 347 if (!LangOpts.Microsoft && !LangOpts.TraditionalCPP) 349 if (LangOpts.Freestanding) 354 if (!LangOpts.CPlusPlus) { 355 if (LangOpts.C99 [all...] |
/external/clang/lib/Basic/ |
IdentifierTable.cpp | 68 IdentifierTable::IdentifierTable(const LangOptions &LangOpts, 75 AddKeywords(LangOpts); 111 const LangOptions &LangOpts, IdentifierTable &Table) { 114 else if (LangOpts.CPlusPlus && (Flags & KEYCXX)) AddResult = 2; 115 else if (LangOpts.CPlusPlus0x && (Flags & KEYCXX0X)) AddResult = 2; 116 else if (LangOpts.C99 && (Flags & KEYC99)) AddResult = 2; 117 else if (LangOpts.GNUKeywords && (Flags & KEYGNU)) AddResult = 1; 118 else if (LangOpts.Microsoft && (Flags & KEYMS)) AddResult = 1; 119 else if (LangOpts.Borland && (Flags & KEYBORLAND)) AddResult = 1; 120 else if (LangOpts.Bool && (Flags & BOOLSUPPORT)) AddResult = 2 [all...] |
Builtins.cpp | 46 const LangOptions& LangOpts) { 49 if (!LangOpts.NoBuiltin || !strchr(BuiltinInfo[i].Attributes, 'f')) { 50 if (LangOpts.ObjC1 || 57 if (!LangOpts.NoBuiltin || !strchr(TSRecords[i].Attributes, 'f'))
|
/external/clang/include/clang/Frontend/ |
LogDiagnosticPrinter.h | 44 const LangOptions *LangOpts; 66 LangOpts = &LO;
|
CompilerInvocation.h | 68 LangOptions LangOpts; 118 setLangDefaults(LangOpts, IK, LangStd); 124 /// \param LangOpts - The LangOptions object to set up. 169 LangOptions &getLangOpts() { return LangOpts; } 170 const LangOptions &getLangOpts() const { return LangOpts; }
|
VerifyDiagnosticsClient.h | 83 virtual void BeginSourceFile(const LangOptions &LangOpts,
|
TextDiagnosticPrinter.h | 27 const LangOptions *LangOpts; 49 LangOpts = &LO; 53 LangOpts = 0;
|
/external/clang/lib/Rewrite/ |
RewriteTest.cpp | 21 const LangOptions &LangOpts = PP.getLangOptions(); 23 TokenRewriter Rewriter(SM.getMainFileID(), SM, LangOpts);
|
TokenRewriter.cpp | 22 const LangOptions &LangOpts) { 27 Lexer RawLex(FID, FromFile, SM, LangOpts);
|
FixItRewriter.cpp | 29 const LangOptions &LangOpts, 32 Rewrite(SourceMgr, LangOpts),
|
/external/clang/lib/ARCMigrate/ |
PlistReporter.cpp | 48 const LangOptions &LangOpts, 56 extend ? Lexer::MeasureTokenLength(Loc, SM, LangOpts) - 1 : 0; 69 const LangOptions &LangOpts, 73 EmitLocation(o, SM, LangOpts, R.getBegin(), FM, indent+1); 74 EmitLocation(o, SM, LangOpts, R.getEnd(), FM, indent+1, R.isTokenRange()); 99 const LangOptions &LangOpts) { 176 EmitLocation(o, SM, LangOpts, D.getLocation(), FM, 2); 185 EmitRange(o, SM, LangOpts, *RI, FM, 4);
|
/external/clang/lib/StaticAnalyzer/Core/ |
PlistDiagnostics.cpp | 71 const LangOptions &LangOpts; 75 PlistDiagnostics(const std::string& prefix, const LangOptions &LangOpts, 98 : OutputFile(output), LangOpts(LO), SubPD(subPD), flushed(false) {} 138 const LangOptions &LangOpts, 146 extend ? Lexer::MeasureTokenLength(Loc, SM, LangOpts) - 1 : 0; 159 const LangOptions &LangOpts, 162 EmitLocation(o, SM, LangOpts, L.asLocation(), FM, indent, extend); 166 const LangOptions &LangOpts, 170 EmitLocation(o, SM, LangOpts, R.getBegin(), FM, indent+1); 171 EmitLocation(o, SM, LangOpts, R.getEnd(), FM, indent+1, !R.isPoint) [all...] |
/external/clang/include/clang/Rewrite/ |
Rewriter.h | 129 const LangOptions *LangOpts; 152 : SourceMgr(&SM), LangOpts(&LO) {} 153 explicit Rewriter() : SourceMgr(0), LangOpts(0) {} 157 LangOpts = &LO; 160 const LangOptions &getLangOpts() { return *LangOpts; }
|
FixItRewriter.h | 65 const LangOptions &LangOpts, FixItOptions *FixItOpts);
|
/frameworks/compile/slang/ |
slang.cpp | 108 clang::LangOptions Slang::LangOpts; 154 LangOpts.RTTI = 0; // Turn off the RTTI information support 155 LangOpts.NeXTRuntime = 0; // Turn off the NeXT runtime uses 156 LangOpts.C99 = 1; 214 LangOpts, 245 mASTContext.reset(new clang::ASTContext(LangOpts, 403 mDiagClient->BeginSourceFile(LangOpts, mPP.get()); 438 mDiagClient->BeginSourceFile(LangOpts, mPP.get());
|
/external/clang/include/clang/Lex/ |
Lexer.h | 259 const LangOptions &LangOpts); 268 const LangOptions &LangOpts); 301 const LangOptions &LangOpts); 307 const LangOptions &LangOpts);
|
/external/clang/lib/Serialization/ |
ASTWriter.cpp | [all...] |
/external/clang/include/clang/Basic/ |
LangOptions.h | 283 FPOptions(const LangOptions &LangOpts) : 284 fp_contract(LangOpts.DefaultFPContract) {}
|
Builtins.h | 73 void InitializeBuiltins(IdentifierTable &Table, const LangOptions& LangOpts);
|
/external/clang/lib/CodeGen/ |
BackendUtil.cpp | 43 const LangOptions &LangOpts; 89 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts), 134 if (LangOpts.ObjCAutoRefCount) { 327 if (LangOpts.ObjCAutoRefCount)
|