HomeSort by relevance Sort by last modified time
    Searched refs:Spelling (Results 1 - 25 of 42) 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 752 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
  /external/clang/include/clang/Driver/
Arg.h 48 StringRef Spelling;
66 Arg(const Option Opt, StringRef Spelling, unsigned Index,
68 Arg(const Option Opt, StringRef Spelling, unsigned Index,
70 Arg(const Option Opt, StringRef Spelling, unsigned Index,
75 StringRef getSpelling() const { return Spelling; }
  /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/lib/Driver/
Option.cpp 97 StringRef Spelling;
98 // If the option was an alias, get the spelling from the unaliased one.
100 Spelling = StringRef(Args.getArgString(Index), ArgSize);
102 Spelling = Args.MakeArgString(Twine(UnaliasedOption.getPrefix()) +
111 return new Arg(UnaliasedOption, Spelling, Index++);
114 return new Arg(UnaliasedOption, Spelling, Index++, Value);
119 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
154 return new Arg(UnaliasedOption, Spelling,
166 Arg *A = new Arg(UnaliasedOption, Spelling, Index - 1 - getNumArgs(),
177 return new Arg(*this, Spelling, Index++, Value)
    [all...]
Arg.cpp 22 : Opt(_Opt), BaseArg(_BaseArg), Spelling(S), Index(_Index),
28 : Opt(_Opt), BaseArg(_BaseArg), Spelling(S), Index(_Index),
35 : Opt(_Opt), BaseArg(_BaseArg), Spelling(S), Index(_Index),
  /external/llvm/lib/Option/
Option.cpp 99 StringRef Spelling;
100 // If the option was an alias, get the spelling from the unaliased one.
102 Spelling = StringRef(Args.getArgString(Index), ArgSize);
104 Spelling = Args.MakeArgString(Twine(UnaliasedOption.getPrefix()) +
113 return new Arg(UnaliasedOption, Spelling, Index++);
116 return new Arg(UnaliasedOption, Spelling, Index++, Value);
121 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
156 return new Arg(UnaliasedOption, Spelling,
168 Arg *A = new Arg(UnaliasedOption, Spelling, Index - 1 - getNumArgs(),
179 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/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/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/webkit/Source/WebCore/dom/
DocumentMarker.h 37 Spelling = 1 << 0,
77 : MarkerTypes(Spelling | Grammar | TextMatch | Replacement | CorrectionIndicator | RejectedCorrection | Autocorrected | SpellCheckingExemption)
  /external/clang/lib/Rewrite/Core/
TokenRewriter.cpp 89 const char *Spelling;
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 98 std::string Spelling = PP.getSpelling(PragmaToken, &Invalid);
100 PackageName.append(Spelling);
  /external/webkit/Source/WebCore/editing/
SpellChecker.cpp 145 return DocumentMarker::Spelling;
SpellingCorrectionController.h 32 // Some platforms use spelling and autocorrection markers to provide visual cue.
126 || marker.type == DocumentMarker::Spelling) && static_cast<int>(marker.endOffset) == endOffset);
SpellingCorrectionController.cpp 277 markers->removeMarkers(range.get(), DocumentMarker::Spelling | DocumentMarker::Autocorrected, DocumentMarkerController::RemovePartiallyOverlappingMarker);
401 if (marker.type == DocumentMarker::Spelling)
468 // Spelling corrected text has been edited. We need to determine whether user has reverted it to original text or
  /external/clang/lib/AST/
DeclarationName.cpp 222 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
223 Spelling,
  /external/clang/lib/Basic/
IdentifierTable.cpp 524 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
525 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 126 std::string Spelling = getSpelling(MacroNameTok, &Invalid);
130 const IdentifierInfo &Info = Identifiers.get(Spelling);
134 MacroNameTok.setIdentifierInfo(getIdentifierInfo(Spelling));
141 Diag(MacroNameTok, diag::err_pp_operator_used_as_macro_name) << Spelling;
276 // this is safe in the face of spelling differences, because there is no way
    [all...]
PPExpressions.cpp 176 // If this token's spelling is a pp-identifier, check to see if it is
211 StringRef Spelling = PP.getSpelling(PeekTok, IntegerBuffer,
216 NumericLiteralParser Literal(Spelling, PeekTok.getLocation(), PP);

Completed in 534 milliseconds

1 2