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

1 2

  /external/clang/lib/AST/
StmtPrinter.cpp 730 void StmtPrinter::VisitCharacterLiteral(CharacterLiteral *Node) {
734 case CharacterLiteral::Ascii: break; // no prefix.
735 case CharacterLiteral::Wide: OS << 'L'; break;
736 case CharacterLiteral::UTF16: OS << 'u'; break;
737 case CharacterLiteral::UTF32: OS << 'U'; break;
    [all...]
ASTDumper.cpp 258 void VisitCharacterLiteral(const CharacterLiteral *Node);
    [all...]
StmtProfile.cpp 312 void StmtProfiler::VisitCharacterLiteral(const CharacterLiteral *S) {
    [all...]
ASTImporter.cpp 175 Expr *VisitCharacterLiteral(CharacterLiteral *E);
    [all...]
ItaniumMangle.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 260 if (CharacterLiteral *Char = dyn_cast<CharacterLiteral>(Number)) {
264 case CharacterLiteral::Ascii:
268 case CharacterLiteral::Wide:
272 case CharacterLiteral::UTF16:
276 case CharacterLiteral::UTF32:
366 isa<CharacterLiteral>(OrigElement) ||
371 int Which = isa<CharacterLiteral>(OrigElement) ? 1
514 if (const CharacterLiteral *Char =
515 dyn_cast<CharacterLiteral>(ValueExpr->IgnoreParens()))
    [all...]
SemaTemplate.cpp     [all...]
SemaChecking.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 253 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/chromium_org/v8/tools/gcmole/
gcmole.cc 547 VISIT(CharacterLiteral);
609 IGNORE_EXPR(CharacterLiteral);
    [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp     [all...]
CGExprScalar.cpp 188 Value *VisitCharacterLiteral(const CharacterLiteral *E) {
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 547 VISIT(CharacterLiteral);
610 IGNORE_EXPR(CharacterLiteral);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h     [all...]
ASTMatchers.h 1070 CharacterLiteral> characterLiteral;
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
RecursiveASTVisitor.h     [all...]
Stmt.h 175 friend class CharacterLiteral;
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 498 void ASTStmtReader::VisitCharacterLiteral(CharacterLiteral *E) {
502 E->setKind(static_cast<CharacterLiteral::CharacterKind>(Record[Idx++]));
    [all...]
ASTWriterStmt.cpp 423 void ASTStmtWriter::VisitCharacterLiteral(CharacterLiteral *E) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp     [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp 448 } else if (isa<CharacterLiteral>(Exp) ||
    [all...]

Completed in 1199 milliseconds

1 2