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

  /external/clang/lib/Rewrite/
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 llvm::StringRef Spelling;
CXString.cpp 47 char *Spelling = (char *)malloc(String.size() + 1);
48 memmove(Spelling, String.data(), String.size());
49 Spelling[String.size()] = 0;
50 Result.data = Spelling;
  /external/webkit/Source/WebCore/dom/
DocumentMarker.h 37 Spelling = 1 << 0,
77 : MarkerTypes(Spelling | Grammar | TextMatch | Replacement | CorrectionIndicator | RejectedCorrection | Autocorrected | SpellCheckingExemption)
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 98 std::string Spelling = PP.getSpelling(PragmaToken, &Invalid);
100 PackageName.append(Spelling);
  /external/clang/lib/Lex/
PPExpressions.cpp 169 // If this token's spelling is a pp-identifier, check to see if it is
202 StringRef Spelling = PP.getSpelling(PeekTok, IntegerBuffer,
207 NumericLiteralParser Literal(Spelling.begin(), Spelling.end(),
PPDirectives.cpp 120 std::string Spelling = getSpelling(MacroNameTok, &Invalid);
124 const IdentifierInfo &Info = Identifiers.get(Spelling);
128 MacroNameTok.setIdentifierInfo(getIdentifierInfo(Spelling));
135 Diag(MacroNameTok, diag::err_pp_operator_used_as_macro_name) << Spelling;
270 // this is safe in the face of spelling differences, because there is no way
    [all...]
Lexer.cpp 161 /// spelling loc that indicates the bytes to be lexed for the token and an
233 // Token Spelling
236 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
239 /// wants to get the true, uncanonicalized, spelling of things like digraphs
284 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
287 /// wants to get the true, uncanonicalized, spelling of things like digraphs
320 /// getSpelling - This method is used to get the spelling of a token into a
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 82 // Normalize attribute spelling only if the spelling has both leading
    [all...]
  /external/clang/lib/Parse/
Parser.cpp 170 const char *Spelling = 0;
173 (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) {
177 << FixItHint::CreateInsertion(EndLoc, Spelling);
    [all...]
ParseDeclCXX.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 2230 CXString spelling = clang_getTokenSpelling(TU, tokens[i]); local
    [all...]

Completed in 161 milliseconds