HomeSort by relevance Sort by last modified time
    Searched defs:Spelling (Results 1 - 9 of 9) 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/
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 119 std::string Spelling = getSpelling(MacroNameTok, &Invalid);
123 const IdentifierInfo &Info = Identifiers.get(Spelling);
127 Diag(MacroNameTok, diag::err_pp_operator_used_as_macro_name) << Spelling;
262 // this is safe in the face of spelling differences, because there is no way
    [all...]
Lexer.cpp 158 /// spelling loc that indicates the bytes to be lexed for the token and an
230 // Token Spelling
233 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
236 /// wants to get the true, uncanonicalized, spelling of things like digraphs
281 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
284 /// wants to get the true, uncanonicalized, spelling of things like digraphs
317 /// getSpelling - This method is used to get the spelling of a token into a
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 760 StringRef Spelling = *I;
761 OS << ".Case(\"" << Spelling << "\", true)\n";
  /external/clang/lib/Parse/
Parser.cpp 158 const char *Spelling = 0;
161 (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) {
165 << FixItHint::CreateInsertion(EndLoc, Spelling);
    [all...]

Completed in 254 milliseconds