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

1 2 3 4

  /external/chromium_org/tools/clang/empty_string/
EmptyStringConverter.cpp 36 using clang::ast_matchers::stringLiteral;
105 hasArgument(0, id("literal", stringLiteral())),
123 const clang::StringLiteral* literal =
124 result.Nodes.getNodeAs<clang::StringLiteral>("literal");
136 const clang::StringLiteral* literal =
137 result.Nodes.getNodeAs<clang::StringLiteral>("literal");
147 const clang::StringLiteral* literal =
148 result.Nodes.getNodeAs<clang::StringLiteral>("literal");
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 84 StringLiteral **Constraints =
85 reinterpret_cast<StringLiteral**>(constraints.data());
86 StringLiteral *AsmString = cast<StringLiteral>(asmString);
87 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data());
97 StringLiteral *Literal = Constraints[i];
129 StringLiteral *Literal = Constraints[i];
192 StringLiteral *Literal = Clobbers[i];
253 StringLiteral *Literal = Constraints[ConstraintIdx]
    [all...]
SemaAttr.cpp 414 StringLiteral *SegmentName,
416 PragmaStack<StringLiteral *> *Stack =
417 llvm::StringSwitch<PragmaStack<StringLiteral *> *>(PragmaName)
430 int SectionFlags, StringLiteral *SegmentName) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 35 import org.eclipse.jdt.core.dom.StringLiteral;
84 public boolean visit(StringLiteral node) {
135 * Examines if the StringLiteral is part of an assignment corresponding to the
145 private boolean examineVariableDeclaration(StringLiteral node) {
168 * Examines if the StringLiteral is part of a assignment to a variable that
172 private boolean examineAssignment(StringLiteral node) {
195 private boolean examineMethodInvocation(StringLiteral node) {
299 * Examines if the StringLiteral is part of a method declaration (a.k.a. a function
304 private SimpleName methodHasContextArgument(StringLiteral node) {
323 private boolean isClassDerivedFromContext(StringLiteral node)
    [all...]
  /external/lldb/include/lldb/Core/
ClangForward.h 108 class StringLiteral;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAnnotation.java 52 import org.eclipse.jdt.core.dom.StringLiteral;
177 StringLiteral value = ast.newStringLiteral();
185 if (existingValue instanceof StringLiteral) {
186 StringLiteral stringLiteral = (StringLiteral) existingValue;
187 if (mId.equals(stringLiteral.getLiteralValue())) {
193 StringLiteral old = ast.newStringLiteral();
194 old.setLiteralValue(stringLiteral.getLiteralValue());
196 StringLiteral value = ast.newStringLiteral()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JSONParser.cpp 48 StringLiteral,
251 return StringLiteral;
370 case StringLiteral: {
411 if (token != StringLiteral)
  /external/clang/include/clang/AST/
Mangle.h 34 class StringLiteral;
94 virtual bool shouldMangleStringLiteral(const StringLiteral *SL) = 0;
114 virtual void mangleStringLiteral(const StringLiteral *SL, raw_ostream &) = 0;
Stmt.h 47 class StringLiteral;
    [all...]
ExprObjC.h 33 ObjCStringLiteral(StringLiteral *SL, QualType T, SourceLocation L)
40 StringLiteral *getString() { return cast<StringLiteral>(String); }
41 const StringLiteral *getString() const { return cast<StringLiteral>(String); }
42 void setString(StringLiteral *S) { String = S; }
345 /// type and behavior as StringLiteral except that the string initializer is
    [all...]
DeclCXX.h     [all...]
Decl.h 43 class StringLiteral;
    [all...]
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 273 clang::StringLiteralParser StringLiteral(PragmaToken, PP);
274 if (StringLiteral.hadError) {
278 this->handleItem(std::string(StringLiteral.GetString()));
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 456 const StringLiteral *StringLit1 = cast<StringLiteral>(Stmt1);
457 const StringLiteral *StringLit2 = cast<StringLiteral>(Stmt2);
ChrootChecker.cpp 113 const StringLiteral* Str = StrRegion->getStringLiteral();
CheckSecuritySyntaxOnly.cpp 444 const StringLiteral *strArg =
445 dyn_cast<StringLiteral>(CE->getArg((unsigned)ArgSuffix.first)
CStringChecker.cpp 140 const StringLiteral *getCStringLiteral(CheckerContext &C,
747 const StringLiteral *strLit = cast<StringRegion>(MR)->getStringLiteral();
799 const StringLiteral *CStringChecker::getCStringLiteral(CheckerContext &C,
    [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 923 StringLiteral,
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 390 StringLiteral **Constraints,
394 StringLiteral **Clobbers,
411 this->Constraints = new (C) StringLiteral*[NumExprs];
415 this->Clobbers = new (C) StringLiteral*[NumClobbers];
631 StringLiteral **constraints, Expr **exprs,
632 StringLiteral *asmstr, unsigned numclobbers,
633 StringLiteral **clobbers, SourceLocation rparenloc)
645 Constraints = new (C) StringLiteral*[NumExprs];
648 Clobbers = new (C) StringLiteral*[NumClobbers];
    [all...]
Expr.cpp 770 int StringLiteral::mapCharByteWidth(TargetInfo const &target,StringKind k) {
794 StringLiteral *StringLiteral::Create(const ASTContext &C, StringRef Str,
799 "StringLiteral must be of constant array type!");
801 // Allocate enough space for the StringLiteral plus an array of locations for
803 void *Mem = C.Allocate(sizeof(StringLiteral)+
805 llvm::alignOf<StringLiteral>());
806 StringLiteral *SL = new (Mem) StringLiteral(Ty);
808 // OPTIMIZE: could allocate this appended to the StringLiteral
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 740 /// StringRegion - Region associated with a StringLiteral.
743 const StringLiteral* Str;
746 StringRegion(const StringLiteral* str, const MemRegion* sreg)
750 const StringLiteral* Str,
755 const StringLiteral* getStringLiteral() const { return Str; }
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.h 65 class StringLiteral;
752 llvm::Constant *GetAddrOfConstantCFString(const StringLiteral *Literal);
757 llvm::Constant *GetAddrOfConstantString(const StringLiteral *Literal);
760 llvm::Constant *GetConstantArrayFromStringLiteral(const StringLiteral *E);
763 llvm::Constant *GetAddrOfConstantStringFromLiteral(const StringLiteral *S);
    [all...]
CGObjCRuntime.h 136 virtual llvm::Constant *GenerateConstantString(const StringLiteral *) = 0;
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 248 const StringLiteral *SL = cast<StringLiteral>(E);
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 312 S->setAsmString(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
320 SmallVector<StringLiteral*, 16> Constraints;
324 Constraints.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
329 SmallVector<StringLiteral*, 16> Clobbers;
331 Clobbers.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
476 void ASTStmtReader::VisitStringLiteral(StringLiteral *E) {
482 StringLiteral::StringKind kind =
483 static_cast<StringLiteral::StringKind>(Record[Idx++]);
918 E->setString(cast<StringLiteral>(Reader.ReadSubStmt()));
    [all...]

Completed in 336 milliseconds

1 2 3 4