Searched defs:Spelling (Results 1 - 19 of 19) sorted by relevance

/external/clang/utils/TableGen/
H A DClangCommentHTMLTagsEmitter.cpp27 Matches.emplace_back(Tag->getValueAsString("Spelling"), "return true;");
44 std::string Spelling = Tag->getValueAsString("Spelling"); local
45 StringMatcher::StringPair Match(Spelling, "return true;");
H A DClangCommentHTMLNamedCharacterReferenceEmitter.cpp58 std::string Spelling = Tag.getValueAsString("Spelling"); local
70 StringMatcher::StringPair Match(Spelling, CLiteral.str());
H A DClangAttrEmitter.cpp52 explicit FlattenedSpelling(const Record &Spelling) : argument
53 V(Spelling.getValueAsString("Variety")),
54 N(Spelling.getValueAsString("Name")) {
59 NS = Spelling.getValueAsString("Namespace");
61 K = Spelling.getValueAsBitOrUnset("KnownToGCC", Unset);
77 for (const auto &Spelling : Spellings) {
78 if (Spelling->getValueAsString("Variety") == "GCC") {
80 Ret.emplace_back("GNU", Spelling->getValueAsString("Name"), "", true);
81 Ret.emplace_back("CXX11", Spelling->getValueAsString("Name"), "gnu",
84 Ret.push_back(FlattenedSpelling(*Spelling));
1297 llvm::SmallString<64> Spelling; local
1334 " OS << \\"" << Prefix << Spelling; local
1390 getSpellingListIndex(const std::vector<FlattenedSpelling> &SpellingList, const FlattenedSpelling &Spelling) argument
1458 const std::string &Spelling = S.name(); local
[all...]
/external/clang/lib/Rewrite/
H A DTokenRewriter.cpp89 const char *Spelling; local
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.h86 const char *Spelling; member in class:clang::CXLoadedDiagnostic
H A DCXString.cpp100 char *Spelling = static_cast<char *>(malloc(String.size() + 1)); local
101 memmove(Spelling, String.data(), String.size());
102 Spelling[String.size()] = 0;
103 Result.data = Spelling;
/external/clang/lib/Parse/
H A DParseAST.cpp79 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid); local
84 OS << ": current parser token '" << StringRef(Spelling, Length) << "'\n";
H A DParser.cpp159 const char *Spelling = nullptr; local
161 Spelling = tok::getPunctuatorSpelling(ExpectedTok);
164 Spelling
165 ? Diag(EndLoc, DiagID) << FixItHint::CreateInsertion(EndLoc, Spelling)
H A DParseDeclCXX.cpp3639 StringRef Spelling = PP.getSpelling(SpellingLoc, SpellingBuf); local
3640 if (isLetter(Spelling[0])) {
3642 return &PP.getIdentifierTable().get(Spelling);
/external/llvm/include/llvm/Option/
H A DArg.h44 StringRef Spelling; member in class:llvm::opt::Arg
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; }
/external/llvm/lib/Option/
H A DOption.cpp108 StringRef Spelling; local
111 Spelling = StringRef(Args.getArgString(Index), ArgSize);
113 Spelling = Args.MakeArgString(Twine(UnaliasedOption.getPrefix()) +
122 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
141 return new Arg(UnaliasedOption, Spelling, Index++, Value);
146 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
182 return new Arg(UnaliasedOption, Spelling,
194 Arg *A = new Arg(UnaliasedOption, Spelling, Index - 1 - getNumArgs(),
205 return new Arg(*this, Spelling, Index++, Value);
214 return new Arg(UnaliasedOption, Spelling,
[all...]
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp78 LoopHintAttr::Spelling Spelling; local
83 Spelling = LoopHintAttr::Pragma_nounroll;
87 Spelling = LoopHintAttr::Pragma_unroll;
99 Spelling = LoopHintAttr::Pragma_clang_loop;
138 return LoopHintAttr::CreateImplicit(S.Context, Spelling, Option, State,
/external/clang/lib/Lex/
H A DPPExpressions.cpp263 StringRef Spelling = PP.getSpelling(PeekTok, IntegerBuffer, local
268 NumericLiteralParser Literal(Spelling, PeekTok.getLocation(), PP);
H A DPreprocessor.cpp862 StringRef Spelling = getSpelling(Tok, IntegerBuffer, &NumberInvalid); local
865 NumericLiteralParser Literal(Spelling, Tok.getLocation(), *this);
H A DLexer.cpp226 // Token Spelling
232 const LangOptions &LangOpts, char *Spelling) {
242 Spelling[Length++] = Lexer::getCharAndSizeNoWarn(BufPtr, Size, LangOpts);
245 if (Spelling[Length - 1] == '"')
253 Spelling[Length - 2] == 'R' && Spelling[Length - 1] == '"') {
261 memcpy(Spelling + Length, BufPtr, RawLength);
271 Spelling[Length++] = Lexer::getCharAndSizeNoWarn(BufPtr, Size, LangOpts);
2193 std::string Spelling = PP->getSpelling(Result, &Invalid); local
2197 assert(Spelling[
231 getSpellingSlow(const Token &Tok, const char *BufPtr, const LangOptions &LangOpts, char *Spelling) argument
[all...]
H A DPPDirectives.cpp231 std::string Spelling = getSpelling(MacroNameTok, &Invalid); local
234 II = getIdentifierInfo(Spelling);
/external/clang/tools/c-index-test/
H A Dc-index-test.c2393 CXString Spelling; local
2400 Spelling = clang_getCursorSpelling(Cursor);
2401 cspell = clang_getCString(Spelling);
2404 printf(" Spelling=%s (", cspell);
2414 clang_disposeString(Spelling);
2498 CXString Spelling; local
2507 Spelling = clang_getCursorSpelling(Cursor);
2508 cspell = clang_getCString(Spelling);
2511 printf(" Spelling=%s (", cspell);
2521 clang_disposeString(Spelling);
2535 CXString Spelling; local
[all...]
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp5323 const char *Spelling; member in struct:__anon14271::PrefixEntry
5336 return PE.Spelling == IDVal;
/external/dagger2/lib/
H A Dauto-value-1.4.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...

Completed in 746 milliseconds