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

1 2 3

  /external/lldb/include/lldb/Core/
ClangForward.h 75 class IntegerLiteral;
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringSyntaxChecker.cpp 69 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
TestAfterDivZeroChecker.cpp 218 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(B->getRHS());
221 IntLiteral = dyn_cast<IntegerLiteral>(B->getLHS());
IdenticalExprChecker.cpp 446 const IntegerLiteral *IntLit1 = cast<IntegerLiteral>(Stmt1);
447 const IntegerLiteral *IntLit2 = cast<IntegerLiteral>(Stmt2);
  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 71 EXPECT_TRUE(Value.getMatcher().hasTypedMatcher<IntegerLiteral>());
  /external/clang/lib/Analysis/
BodyFarm.cpp 213 IntegerLiteral *IL =
214 IntegerLiteral::Create(C, llvm::APInt(C.getTypeSize(C.IntTy), (uint64_t) 1),
CFG.cpp 506 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
510 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
545 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
549 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
562 const IntegerLiteral *IntLiteral2 = dyn_cast<IntegerLiteral>(LHSExpr2);
565 IntLiteral2 = dyn_cast<IntegerLiteral>(RHSExpr2);
631 const IntegerLiteral *Literal1
    [all...]
ThreadSafety.cpp 449 isa<IntegerLiteral>(Exp) ||
    [all...]
ReachableCode.cpp 43 return isa<IntegerLiteral>(Ex) || isa<StringLiteral>(Ex) ||
ThreadSafetyCommon.cpp 44 return cast<IntegerLiteral>(CE)->getValue().toString(10, true);
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 775 if (!isa<IntegerLiteral>(literalE) && !isa<FloatingLiteral>(literalE))
853 if (const IntegerLiteral *IntE = dyn_cast<IntegerLiteral>(literalE))
    [all...]
  /external/clang/lib/AST/
Expr.cpp 676 IntegerLiteral::IntegerLiteral(const ASTContext &C, const llvm::APInt &V,
681 assert(type->isIntegerType() && "Illegal type in IntegerLiteral");
687 IntegerLiteral *
688 IntegerLiteral::Create(const ASTContext &C, const llvm::APInt &V,
690 return new (C) IntegerLiteral(C, V, type, l);
693 IntegerLiteral *
694 IntegerLiteral::Create(const ASTContext &C, EmptyShell Empty) {
695 return new (C) IntegerLiteral(Empty);
    [all...]
ASTDumper.cpp 315 void VisitIntegerLiteral(const IntegerLiteral *Node);
    [all...]
ASTDiagnostic.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SValBuilder.h 232 nonloc::ConcreteInt makeIntVal(const IntegerLiteral* integer) {
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 462 // (IntegerLiteral 'int' 0))
465 // (IntegerLiteral 'int' 10)
510 clang::Expr *Int0 = clang::IntegerLiteral::Create(C,
524 clang::Expr *NumArrayElementsExpr = clang::IntegerLiteral::Create(C,
877 clang::Expr *Int0 = clang::IntegerLiteral::Create(C,
890 clang::Expr *NumArrayElementsExpr = clang::IntegerLiteral::Create(C,
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 263 return makeIntVal(cast<IntegerLiteral>(E));
BugReporterVisitors.cpp     [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 576 VISIT(IntegerLiteral);
626 IGNORE_EXPR(IntegerLiteral);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 358 /// varDecl(hasInitializer(ignoringImpCasts(integerLiteral())))
364 /// varDecl(hasInitializer(integerLiteral()))
385 /// varDecl(hasInitializer(ignoringParenCasts(integerLiteral())))
388 /// varDecl(hasInitializer(integerLiteral()))
408 /// varDecl(hasInitializer(ignoringParenImpCasts(integerLiteral())))
412 /// varDecl(hasInitializer(integerLiteral()))
1155 /// Not matching Hex-encoded chars (e.g. 0x1234, which is a IntegerLiteral),
1172 IntegerLiteral> integerLiteral;
    [all...]

Completed in 579 milliseconds

1 2 3