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

1 2 3 4 5 6 7 8

  /external/clang/tools/libclang/
CXSourceLocation.h 44 Context.getLangOpts(),
62 Context.getLangOpts(),
  /external/clang/lib/Rewrite/Frontend/
RewriteTest.cpp 21 const LangOptions &LangOpts = PP.getLangOpts();
FrontendActions.cpp 98 CI.getLangOpts(), FixItOpts.get()));
124 CI.getLangOpts(), FixItOpts.get());
156 if (CI.getLangOpts().ObjCRuntime.isNonFragile())
158 CI.getDiagnostics(), CI.getLangOpts(),
163 CI.getDiagnostics(), CI.getLangOpts(),
RewriteMacros.cpp 69 Lexer RawLex(SM.getMainFileID(), FromFile, SM, PP.getLangOpts());
94 Rewrite.setSourceMgr(SM, PP.getLangOpts());
HTMLPrint.cpp 58 R.setSourceMgr(context.getSourceManager(), context.getLangOpts());
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 94 getLangOpts());
96 return Lexer::getSpelling(Loc, buf, getSourceManager(), getLangOpts());
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 193 CInvok->getLangOpts()->ObjCAutoRefCount = true;
194 CInvok->getLangOpts()->setGC(LangOptions::NonGC);
209 CInvok->getLangOpts()->ObjCARCWeak = HasARCRuntime(origCI);
224 printer.BeginSourceFile(PP.getLangOpts(), &PP);
238 if (!origCI.getLangOpts()->ObjC1)
241 LangOptions::GCMode OrigGCMode = origCI.getLangOpts()->getGC();
282 DiagClient->BeginSourceFile(Ctx.getLangOpts(), &Unit->getPreprocessor());
298 Ctx.getSourceManager(), Ctx.getLangOpts());
306 DiagClient->BeginSourceFile(Ctx.getLangOpts(), &Unit->getPreprocessor());
329 origCI.getLangOpts()->ObjCAutoRefCount = false
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NSAutoreleasePoolChecker.cpp 78 if (mgr.getLangOpts().getGC() != LangOptions::NonGC)
ObjCAtSyncChecker.cpp 91 if (mgr.getLangOpts().ObjC2)
DebugCheckers.cpp 79 cfg->viewCFG(mgr.getLangOpts());
99 cfg->dump(mgr.getLangOpts(),
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 74 LangOptions *getLangOpts() { return LangOpts.getPtr(); }
75 const LangOptions *getLangOpts() const { return LangOpts.getPtr(); }
CompilerInstance.h 252 LangOptions &getLangOpts() {
253 return *Invocation->getLangOpts();
255 const LangOptions &getLangOpts() const {
256 return *Invocation->getLangOpts();
  /external/clang/lib/Lex/
TokenConcatenation.cpp 49 const LangOptions &LangOpts = PP.getLangOpts();
90 if (PP.getLangOpts().CPlusPlus11) {
210 if (!PP.getLangOpts().CPlusPlus11)
248 (PP.getLangOpts().CPlusPlus && FirstChar == '*');
267 (PP.getLangOpts().CPlusPlus && FirstChar == ':');
271 return PP.getLangOpts().CPlusPlus && FirstChar == '*';
TokenLexer.cpp 136 if (!HasPasteOperator && !PP.getLangOpts().MicrosoftMode)
144 if (PP.getLangOpts().C99 && !PP.getLangOpts().GNUMode
285 if (PP.getLangOpts().MicrosoftMode && NumToks == 1 &&
592 PP.getLangOpts(), ScratchBufStart,
611 if (PP.getLangOpts().MicrosoftExt && Tok.is(tok::slash) &&
618 if (!PP.getLangOpts().AsmPreprocessor) {
628 PP.getLangOpts().MicrosoftExt ? diag::err_pp_bad_paste_ms
    [all...]
  /external/clang/lib/Parse/
ParseInit.cpp 36 if (!PP.getLangOpts().CPlusPlus11)
231 if (getLangOpts().ObjC1 && getLangOpts().CPlusPlus) {
266 } else if (getLangOpts().ObjC1 && Tok.is(tok::identifier)) {
324 if (getLangOpts().ObjC1 && Tok.isNot(tok::ellipsis) &&
412 if (!getLangOpts().CPlusPlus)
422 if (getLangOpts().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
Parser.cpp 45 if (!Ident__except && (getLangOpts().MicrosoftExt || getLangOpts().Borland))
93 if (getLangOpts().OpenCL) {
99 if (getLangOpts().OpenMP)
105 if (getLangOpts().MicrosoftExt) {
232 if (Kind == OutsideFunction && getLangOpts().CPlusPlus) {
233 if (getLangOpts().CPlusPlus11)
448 if (getLangOpts().OpenCL) {
456 if (getLangOpts().MicrosoftExt) {
483 if (getLangOpts().ObjC1)
    [all...]
ParseExpr.cpp 224 getLangOpts().CPlusPlus11);
325 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) {
328 } else if (getLangOpts().CPlusPlus && NextTokPrec <= prec::Conditional)
340 getLangOpts().CPlusPlus11);
368 getLangOpts().CPlusPlus11);
639 (isUnaryExpression && !getLangOpts().CPlusPlus)? CompoundLiteral : CastExpr;
707 if (getLangOpts().CPlusPlus) {
777 if (getLangOpts().ObjC1 && Tok.is(tok::period) &&
785 !(getLangOpts().CPlusPlus && Tok.is(tok::kw_class))) {
801 if (getLangOpts().ObjC1 && &II == Ident_super && !InMessageExpression &
    [all...]
ParseDecl.cpp     [all...]
ParseTentative.cpp 161 if (getLangOpts().ObjC1 && Tok.is(tok::less))
294 if (getLangOpts().ObjC1 && Tok.is(tok::less))
312 else if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace))
371 if (getLangOpts().ObjC1 && Tok.is(tok::less))
396 (getLangOpts().CPlusPlus11 && Tok.is(tok::greatergreater)))) {
453 if (!Disambiguate && !getLangOpts().ObjC1)
462 if (!getLangOpts().ObjC1) {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
AnalysisManager.h 91 const LangOptions &getLangOpts() const {
CheckerContext.h 134 const LangOptions &getLangOpts() const {
135 return Eng.getContext().getLangOpts();
  /external/clang/lib/AST/
ExprClassification.cpp 43 if (!Ctx.getLangOpts().CPlusPlus) {
104 const LangOptions &Lang = Ctx.getLangOpts();
143 return Ctx.getLangOpts().CPlusPlus ? ClassifyTemporary(E->getType())
421 (Ctx.getLangOpts().CPlusPlus &&
432 if (!Ctx.getLangOpts().CPlusPlus) return Cl::CL_PRValue;
453 if (!Ctx.getLangOpts().CPlusPlus) {
505 assert(Ctx.getLangOpts().CPlusPlus &&
541 assert(Ctx.getLangOpts().CPlusPlus &&
580 if (Ctx.getLangOpts().CPlusPlus && E->getType()->isFunctionType())
605 !Ctx.getLangOpts().CPlusPlus) &
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 239 if (CI.getLangOpts().CurrentModule.empty()) {
250 Module = HS.lookupModule(CI.getLangOpts().CurrentModule,
254 << CI.getLangOpts().CurrentModule << Filename;
261 if (!Module->isAvailable(CI.getLangOpts(), CI.getTarget(), Feature)) {
274 addHeaderInclude(UmbrellaHeader, HeaderContents, CI.getLangOpts());
275 collectModuleHeaderIncludes(CI.getLangOpts(), FileMgr,
299 CI.getLangOpts().CurrentModule + ".pcm");
456 Lexer RawLex(SM.getMainFileID(), FromFile, SM, PP.getLangOpts());
585 unsigned Preamble = Lexer::ComputePreamble(Buffer, CI.getLangOpts()).first;
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 107 if ((S.getLangOpts().getGC() != LangOptions::NonGC &&
109 (S.getLangOpts().ObjCAutoRefCount &&
200 if (getLangOpts().ObjCAutoRefCount)
300 Context.getLangOpts(),
521 if (getLangOpts().getGC() != LangOptions::NonGC &&
    [all...]
  /external/clang/include/clang/Edit/
EditedSource.h 53 const LangOptions &getLangOpts() const { return LangOpts; }

Completed in 242 milliseconds

1 2 3 4 5 6 7 8