HomeSort by relevance Sort by last modified time
    Searched defs:Spelling (Results 1 - 19 of 19) sorted by null

  /external/clang/utils/TableGen/
ClangCommentHTMLTagsEmitter.cpp 27 std::string Spelling = Tag->getValueAsString("Spelling");
28 Matches.push_back(StringMatcher::StringPair(Spelling, "return true;"));
45 std::string Spelling = Tag->getValueAsString("Spelling");
46 StringMatcher::StringPair Match(Spelling, "return true;");
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 58 std::string Spelling = Tag.getValueAsString("Spelling");
70 StringMatcher::StringPair Match(Spelling, CLiteral.str());
ClangAttrEmitter.cpp 38 explicit FlattenedSpelling(const Record &Spelling) :
39 V(Spelling.getValueAsString("Variety")),
40 N(Spelling.getValueAsString("Name")) {
42 assert(V != "GCC" && "Given a GCC spelling, which means this hasn't been"
45 NS = Spelling.getValueAsString("Namespace");
47 K = Spelling.getValueAsBitOrUnset("KnownToGCC", Unset);
60 for (const auto &Spelling : Spellings) {
61 if (Spelling->getValueAsString("Variety") == "GCC") {
62 // Gin up two new spelling objects to add into the list.
63 Ret.push_back(FlattenedSpelling("GNU", Spelling->getValueAsString("Name")
    [all...]
  /external/clang/lib/Parse/
ParseAST.cpp 66 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid);
71 OS << ": current parser token '" << StringRef(Spelling, Length) << "'\n";
Parser.cpp 139 const char *Spelling = nullptr;
141 Spelling = tok::getPunctuatorSpelling(ExpectedTok);
144 Spelling
145 ? Diag(EndLoc, DiagID) << FixItHint::CreateInsertion(EndLoc, Spelling)
    [all...]
ParseDeclCXX.cpp     [all...]
  /external/clang/lib/Rewrite/Core/
TokenRewriter.cpp 89 const char *Spelling;
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
  /external/clang/tools/libclang/
CXLoadedDiagnostic.h 37 /// \brief Return the spelling of the diagnostic.
86 const char *Spelling;
CXString.cpp 100 char *Spelling = static_cast<char *>(malloc(String.size() + 1));
101 memmove(Spelling, String.data(), String.size());
102 Spelling[String.size()] = 0;
103 Result.data = Spelling;
  /external/llvm/lib/Option/
Option.cpp 107 StringRef Spelling;
108 // If the option was an alias, get the spelling from the unaliased one.
110 Spelling = StringRef(Args.getArgString(Index), ArgSize);
112 Spelling = Args.MakeArgString(Twine(UnaliasedOption.getPrefix()) +
121 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
135 return new Arg(UnaliasedOption, Spelling, Index++, Value);
140 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
175 return new Arg(UnaliasedOption, Spelling,
187 Arg *A = new Arg(UnaliasedOption, Spelling, Index - 1 - getNumArgs(),
198 return new Arg(*this, Spelling, Index++, Value)
    [all...]
  /external/llvm/include/llvm/Option/
Arg.h 44 StringRef Spelling;
62 Arg(const Option Opt, StringRef Spelling, unsigned Index,
64 Arg(const Option Opt, StringRef Spelling, unsigned Index,
66 Arg(const Option Opt, StringRef Spelling, unsigned Index,
71 StringRef getSpelling() const { return Spelling; }
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 98 std::string Spelling = PP.getSpelling(PragmaToken, &Invalid);
100 PackageName.append(Spelling);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarker.h 48 Spelling = 1 << SpellingMarkerIndex,
73 : MarkerTypes(Spelling | Grammar | TextMatch | InvisibleSpellcheck)
81 : MarkerTypes(Spelling | Grammar)
89 : MarkerTypes(Spelling | Grammar | InvisibleSpellcheck)
  /external/clang/lib/Lex/
PPExpressions.cpp 180 // If this token's spelling is a pp-identifier, check to see if it is
215 StringRef Spelling = PP.getSpelling(PeekTok, IntegerBuffer,
220 NumericLiteralParser Literal(Spelling, PeekTok.getLocation(), PP);
Preprocessor.cpp 397 /// getSpelling - This method is used to get the spelling of a token into a
780 StringRef Spelling = getSpelling(Tok, IntegerBuffer, &NumberInvalid);
783 NumericLiteralParser Literal(Spelling, Tok.getLocation(), *this);
PPDirectives.cpp 139 std::string Spelling = getSpelling(MacroNameTok, &Invalid);
142 II = getIdentifierInfo(Spelling);
315 // this is safe in the face of spelling differences, because there is no way
    [all...]
Lexer.cpp 160 /// spelling loc that indicates the bytes to be lexed for the token and an
232 // Token Spelling
236 /// spelling of this token from the provided input buffer.
238 const LangOptions &LangOpts, char *Spelling) {
248 Spelling[Length++] = Lexer::getCharAndSizeNoWarn(BufPtr, Size, LangOpts);
251 if (Spelling[Length - 1] == '"')
259 Spelling[Length - 2] == 'R' && Spelling[Length - 1] == '"') {
266 // Everything between the quotes is included verbatim in the spelling.
267 memcpy(Spelling + Length, BufPtr, RawLength)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 3420 CXString spelling = clang_getTokenSpelling(TU, tokens[i]); local
    [all...]

Completed in 577 milliseconds