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

1 2

  /external/clang/include/clang/Basic/
OperatorKinds.h 23 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
29 /// \brief Retrieve the spelling of the given overloaded operator, without
IdentifierTable.h 726 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
  /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;
CXLoadedDiagnostic.h 37 /// \brief Return the spelling of the diagnostic.
86 llvm::StringRef Spelling;
CXLoadedDiagnostic.cpp 105 return cxstring::createCXString(Spelling, false);
658 D->Spelling = TopDiags.makeString(BlobStart, BlobLen);
  /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/
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
Editor.cpp     [all...]
TextCheckingHelper.cpp 209 misspellingRange->startContainer(ec)->document()->markers()->addMarker(misspellingRange.get(), DocumentMarker::Spelling);
256 // Iterate through the search range by paragraphs, checking each one for spelling and grammar.
291 // We can't stop after the first grammar result, since there might still be a spelling result after
501 // Update the spelling panel to be displaying this error (whether or not the spelling panel is on screen).
503 // correctly; that call behaves differently based on whether the spelling panel is displaying a misspelling
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 82 // Normalize attribute spelling only if the spelling has both leading
    [all...]
  /external/clang/lib/AST/
DeclarationName.cpp 249 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
250 Spelling,
  /external/clang/lib/Basic/
IdentifierTable.cpp 518 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
519 case OO_##Name: return Spelling;
  /external/clang/lib/Lex/
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...]
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...]
  /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/webkit/Source/WebCore/rendering/
InlineTextBox.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 2230 CXString spelling = clang_getTokenSpelling(TU, tokens[i]); local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
AssertMatchingEnums.cpp 419 COMPILE_ASSERT_MATCHING_ENUM(WebTextCheckingResult::ErrorSpelling, DocumentMarker::Spelling);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.cpp 680 return core(frame)->editor()->selectionStartHasMarkerFor(DocumentMarker::Spelling, from, length);

Completed in 477 milliseconds

1 2