HomeSort by: relevance | last modified time | path
    Searched defs:If (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
EvaluatedExprVisitor.h 36 // 'constexpr-if'.
58 // Don't visit either child expression if the condition is dependent.
59 if (E->getCond()->isValueDependent())
68 // Don't visit either child expression if the condition is type-dependent.
69 if (E->isResultDependent())
83 if (E->isPotentiallyEvaluated())
88 if (!CE->isUnevaluatedBuiltinCall(Context))
97 if (*I)
105 if (SubStmt)
109 void VisitIfStmt(PTR(IfStmt) If) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 25 if (Range.isInvalid())
30 if (low == CondDirectiveLocs.end())
33 if (SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), low->getLoc()))
40 if (upp != CondDirectiveLocs.end())
48 if (Loc.isInvalid())
50 if (CondDirectiveLocs.empty())
53 if (SourceMgr.isBeforeInTranslationUnit(CondDirectiveLocs.back().getLoc(),
66 if (SourceMgr.isInSystemHeader(DirLoc.getLoc()))
75 void PPConditionalDirectiveRecord::If(SourceLocation Loc,
DependencyDirectivesSourceMinimizer.cpp 97 /// Reports a diagnostic if the diagnostic engine is provided. Always returns
110 if (!Diags)
126 // Check if we can even back up.
127 if (*Current != '"' || First == Current)
132 if (*Current != 'R')
134 if (First == Current || !isIdentifierBody(*--Current))
138 if (*Current == 'u' || *Current == 'U' || *Current == 'L')
142 if (*Current != '8' || First == Current || *Current-- != 'u')
154 if (Last == End) {
165 if (First == End
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
PPCallbacks.h 46 /// \param PrevFID the file that was exited if \p Reason is ExitFile.
70 /// \param RecoveryPath If this client indicates that it can recover from
104 /// in the file system. If the file was found via an absolute include path,
106 /// RelativePath will be split up. For example, if an include of "Some/Some.h"
140 /// \param ForPragma If entering from pragma directive.
151 /// \param ForPragma If entering from pragma directive.
164 /// \param Imported The imported module; can be null if importing failed.
293 /// \param Undef New MacroDirective if the macro was defined, null otherwise.
302 /// \param MD The MacroDirective if the name was a macro, null otherwise.
315 /// \#if/\#else directive and ends after the \#endif/\#else directive
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 52 /// Tracks where #if and #elif directives get evaluated and whether to true.
83 void If(SourceLocation Loc, SourceRange ConditionRange,
121 if (!ShowLineMarkers)
123 if (UseLineDirectives) {
133 if (!Extra.empty())
135 if (FileType == SrcMgr::C_System)
139 else if (FileType == SrcMgr::C_ExternCSystem)
158 if (Reason != EnterFile)
160 if (LastInclusionLocation.isInvalid())
187 /// called if this #include results in an error or does not textually includ
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 51 Function *If;
136 If = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_if, { IntMask });
172 if (Phi->getIncomingBlock(i) == IDom) {
174 if (Phi->getIncomingValue(i) != BoolTrue)
178 if (Phi->getIncomingValue(i) != BoolFalse)
188 if (const CallInst *CI = dyn_cast<CallInst>(&I))
189 if (CI->getIntrinsicID() == Intrinsic::amdgcn_kill)
195 // Erase "Phi" if it is not used any more
197 if (RecursivelyDeleteDeadPHINode(Phi)) {
202 /// Open a new "If" bloc
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
BodyFarm.cpp 38 if (!BPT)
41 // Check if the block pointer type takes no arguments and
107 /// \return an nullptr if no member with such a name exists.
177 if (Arg->getType() == Ty)
233 if (!FoundDecl->getDeclContext()->isFunctionOrMethod())
252 if (Ty->isRValueReferenceType()) {
255 } else if (Ty->isLValueReferenceType() &&
259 } else if (Ty->isLValueReferenceType()
308 /// if (!o.__state) {
318 if (D->param_size() < 2
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.h 51 FalseKW, Field, Foreach, If, In, Include, Int, Let, List, MultiClass,
154 // If EOF is met in an include file, then the method will update
156 // If EOF is met in the top-level file, then the method will
188 // True, if the condition for this directive is true, false - otherwise.
190 // #ifdef NAME : true, if NAME is defined, false - otherwise.
192 // #else : false, if NAME is defined, true - otherwise.
223 // If IncludeStackMustBeEmpty is true, the include stack must be empty
226 // only if we exit the "top-level" file (i.e. finish lexing).
228 // The method returns false, if the current preprocessing control stack
234 // must only call this method, if *(CurPtr - 1) is '#'. If the method matche
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 91 if (isBrList())
122 if (Kind == Integer)
124 else if (Kind == Symbol)
132 if (Kind == Float)
141 if (Kind == Float)
182 if (Sym) {
183 if (!Sym->isFunctionTable())
224 If,
246 if (!STI->checkFeatures("+reference-types"))
294 case If
    [all...]

Completed in 94 milliseconds