HomeSort by relevance Sort by last modified time
    Searched refs:Spelling (Results 1 - 25 of 37) 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
IdentifierTable.h 770 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
  /external/llvm/include/llvm/Option/
Arg.h 47 StringRef Spelling;
65 Arg(const Option Opt, StringRef Spelling, unsigned Index,
67 Arg(const Option Opt, StringRef Spelling, unsigned Index,
69 Arg(const Option Opt, StringRef Spelling, unsigned Index,
74 StringRef getSpelling() const { return Spelling; }
  /external/clang/utils/TableGen/
ClangCommentHTMLTagsEmitter.cpp 29 std::string Spelling = Tag.getValueAsString("Spelling");
30 Matches.push_back(StringMatcher::StringPair(Spelling, "return true;"));
49 std::string Spelling = Tag.getValueAsString("Spelling");
50 StringMatcher::StringPair Match(Spelling, "return true;");
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 58 std::string Spelling = Tag.getValueAsString("Spelling");
70 StringMatcher::StringPair Match(Spelling, CLiteral.str());
ClangAttrEmitter.cpp 83 // Normalize attribute spelling only if the spelling has both leading
768 " llvm_unreachable(\"Unknown attribute spelling!\");\n"
774 // The actual spelling of the name and namespace (if applicable)
776 llvm::SmallString<64> Spelling;
788 Spelling += Namespace;
789 Spelling += "::";
801 Spelling += Name;
805 " OS << \"" + Prefix.str() + Spelling.str();
808 if (Spelling == "availability")
    [all...]
  /external/llvm/lib/Option/
Option.cpp 106 StringRef Spelling;
107 // If the option was an alias, get the spelling from the unaliased one.
109 Spelling = StringRef(Args.getArgString(Index), ArgSize);
111 Spelling = Args.MakeArgString(Twine(UnaliasedOption.getPrefix()) +
120 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
134 return new Arg(UnaliasedOption, Spelling, Index++, Value);
139 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
174 return new Arg(UnaliasedOption, Spelling,
186 Arg *A = new Arg(UnaliasedOption, Spelling, Index - 1 - getNumArgs(),
197 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 50 Spelling = 1 << SpellingMarkerIndex,
75 : MarkerTypes(Spelling | Grammar | TextMatch | InvisibleSpellcheck)
83 : MarkerTypes(Spelling | Grammar)
91 : 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 96 char *Spelling = static_cast<char *>(malloc(String.size() + 1));
97 memmove(Spelling, String.data(), String.size());
98 Spelling[String.size()] = 0;
99 Result.data = Spelling;
CXLoadedDiagnostic.h 37 /// \brief Return the spelling of the diagnostic.
86 const char *Spelling;
CXLoadedDiagnostic.cpp 98 return cxstring::createRef(Spelling);
641 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/Parse/
ParseAST.cpp 66 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid);
71 OS << ": current parser token '" << StringRef(Spelling, Length) << "'\n";
  /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 147 m_frame.document()->markers()->removeMarkers(selectedRange.get(), DocumentMarker::Spelling);
156 // repeated "check spelling" commands work.
175 // This shouldn't happen in very often because the Spelling menu items aren't enabled unless the
282 // takes precedence and we ignore any potential misspelled word. Select the grammar detail, update the spelling
295 // We found a misspelling, but not any earlier bad grammar. Select the misspelling, update the spelling panel, and store
303 m_frame.document()->markers()->addMarker(misspellingRange.get(), DocumentMarker::Spelling);
387 // Check spelling of one word
602 misspellingRange->startContainer()->document().markers()->addMarker(misspellingRange.get(), DocumentMarker::Spelling, result->replacement, result->hash);
643 // 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/AST/
DeclarationName.cpp 166 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
167 Spelling,
  /external/clang/lib/Basic/
IdentifierTable.cpp 561 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
562 case OO_##Name: return Spelling;
  /external/clang/lib/Lex/
Lexer.cpp 168 /// spelling loc that indicates the bytes to be lexed for the token and an
240 // Token Spelling
244 /// spelling of this token from the provided input buffer.
246 const LangOptions &LangOpts, char *Spelling) {
256 Spelling[Length++] = Lexer::getCharAndSizeNoWarn(BufPtr, Size, LangOpts);
259 if (Spelling[Length - 1] == '"')
267 Spelling[Length - 2] == 'R' && Spelling[Length - 1] == '"') {
274 // Everything between the quotes is included verbatim in the spelling.
275 memcpy(Spelling + Length, BufPtr, RawLength)
    [all...]
PPDirectives.cpp 158 std::string Spelling = getSpelling(MacroNameTok, &Invalid);
162 const IdentifierInfo &Info = Identifiers.get(Spelling);
166 MacroNameTok.setIdentifierInfo(getIdentifierInfo(Spelling));
173 Diag(MacroNameTok, diag::err_pp_operator_used_as_macro_name) << Spelling;
308 // this is safe in the face of spelling differences, because there is no way
    [all...]
PPExpressions.cpp 181 // If this token's spelling is a pp-identifier, check to see if it is
216 StringRef Spelling = PP.getSpelling(PeekTok, IntegerBuffer,
221 NumericLiteralParser Literal(Spelling, PeekTok.getLocation(), PP);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.cpp     [all...]

Completed in 3634 milliseconds

1 2