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

1 2

  /external/clang/include/clang/Basic/
OperatorKinds.h 24 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
30 /// \brief Retrieve the spelling of the given overloaded operator, without
  /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; }
  /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/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...]
Arg.cpp 21 : Opt(_Opt), BaseArg(_BaseArg), Spelling(S), Index(_Index),
27 : Opt(_Opt), BaseArg(_BaseArg), Spelling(S), Index(_Index),
34 : Opt(_Opt), BaseArg(_BaseArg), Spelling(S), Index(_Index),
  /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)
DocumentMarker.cpp 101 : m_type(Spelling)
DocumentMarkerControllerTest.cpp 83 markerController().addMarker(range.get(), DocumentMarker::Spelling);
  /external/clang/tools/libclang/
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;
CXLoadedDiagnostic.h 37 /// \brief Return the spelling of the diagnostic.
86 const char *Spelling;
CXLoadedDiagnostic.cpp 106 return cxstring::createRef(Spelling);
650 D->Spelling = TopDiags.copyString(Blob);
  /external/clang/lib/Rewrite/Core/
TokenRewriter.cpp 89 const char *Spelling;
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
  /external/clang/lib/AST/
MicrosoftCXXABI.cpp 95 MSInheritanceAttr::Spelling CXXRecordDecl::calculateInheritanceModel() const {
105 MSInheritanceAttr::Spelling
149 MSInheritanceAttr::Spelling Inheritance = RD->getMSInheritanceModel();
DeclarationName.cpp 171 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
172 Spelling,
  /external/clang/lib/Parse/
ParseAST.cpp 66 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid);
71 OS << ": current parser token '" << StringRef(Spelling, Length) << "'\n";
ParseTentative.cpp 676 #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemOnly) \
678 #define OVERLOADED_OPERATOR_MULTI(Name, Spelling, Unary, Binary, MemOnly)
943 #define TYPE_TRAIT(N,Spelling,K) \
944 case tok::kw_##Spelling:
    [all...]
ParseExprCXX.cpp     [all...]
  /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/editing/
SpellChecker.cpp 149 m_frame.document()->markers().removeMarkers(selectedRange.get(), DocumentMarker::Spelling);
158 // repeated "check spelling" commands work.
177 // This shouldn't happen in very often because the Spelling menu items aren't enabled unless the
284 // takes precedence and we ignore any potential misspelled word. Select the grammar detail, update the spelling
297 // We found a misspelling, but not any earlier bad grammar. Select the misspelling, update the spelling panel, and store
305 m_frame.document()->markers().addMarker(misspellingRange.get(), DocumentMarker::Spelling);
359 // Check spelling of one word
574 misspellingRange->startContainer()->document().markers().addMarker(misspellingRange.get(), DocumentMarker::Spelling, result->replacement, result->hash);
615 // markMisspellingsAndBadGrammar() is triggered by selection change, in which case we check spelling and grammar, but don't autocorrect misspellings.
    [all...]
SpellCheckRequester.cpp 252 markers.remove(DocumentMarker::Spelling);
  /external/clang/lib/Basic/
IdentifierTable.cpp 562 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
563 case OO_##Name: return Spelling;
  /external/clang/lib/Lex/
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...]
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);

Completed in 394 milliseconds

1 2