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

1 2

  /external/lldb/include/lldb/Core/
ClangForward.h 47 class CharacterLiteral;
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 436 const CharacterLiteral *CharLit1 = cast<CharacterLiteral>(Stmt1);
437 const CharacterLiteral *CharLit2 = cast<CharacterLiteral>(Stmt2);
RetainCountChecker.cpp     [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 924 void StmtPrinter::VisitCharacterLiteral(CharacterLiteral *Node) {
928 case CharacterLiteral::Ascii: break; // no prefix.
929 case CharacterLiteral::Wide: OS << 'L'; break;
930 case CharacterLiteral::UTF16: OS << 'u'; break;
931 case CharacterLiteral::UTF32: OS << 'U'; break;
    [all...]
ASTDumper.cpp 314 void VisitCharacterLiteral(const CharacterLiteral *Node);
    [all...]
StmtProfile.cpp 416 void StmtProfiler::VisitCharacterLiteral(const CharacterLiteral *S) {
    [all...]
ASTImporter.cpp 175 Expr *VisitCharacterLiteral(CharacterLiteral *E);
    [all...]
ItaniumMangle.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 263 if (CharacterLiteral *Char = dyn_cast<CharacterLiteral>(Number)) {
267 case CharacterLiteral::Ascii:
271 case CharacterLiteral::Wide:
275 case CharacterLiteral::UTF16:
279 case CharacterLiteral::UTF32:
370 isa<CharacterLiteral>(OrigElement) ||
375 int Which = isa<CharacterLiteral>(OrigElement) ? 1
536 if (const CharacterLiteral *Char =
537 dyn_cast<CharacterLiteral>(ValueExpr->IgnoreParens()))
    [all...]
SemaTemplate.cpp     [all...]
SemaExpr.cpp     [all...]
SemaChecking.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 255 const CharacterLiteral *C = cast<CharacterLiteral>(E);
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 645 const CharacterLiteral *Arg,
647 if (Arg->getKind() != CharacterLiteral::Ascii)
760 if (const CharacterLiteral *CharE = dyn_cast<CharacterLiteral>(Arg))
    [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 45 isa<CharacterLiteral>(Ex) ||
ThreadSafety.cpp 443 } else if (isa<CharacterLiteral>(Exp) ||
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 542 VISIT(CharacterLiteral);
603 IGNORE_EXPR(CharacterLiteral);
    [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 1164 CharacterLiteral> characterLiteral;
    [all...]
ASTMatchersInternal.h     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
DataRecursiveASTVisitor.h     [all...]
Stmt.h 175 friend class CharacterLiteral;
    [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 496 void ASTStmtReader::VisitCharacterLiteral(CharacterLiteral *E) {
500 E->setKind(static_cast<CharacterLiteral::CharacterKind>(Record[Idx++]));
    [all...]

Completed in 410 milliseconds

1 2