HomeSort by relevance Sort by last modified time
    Searched refs:Spelling (Results 1 - 25 of 30) 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 687 #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;
  /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/lib/AST/
DeclarationName.cpp 246 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
247 Spelling,
StmtPrinter.cpp 1071 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1072 Spelling,
    [all...]
  /external/clang/lib/Basic/
IdentifierTable.cpp 495 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
496 case OO_##Name: return Spelling;
  /external/clang/lib/Lex/
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...]
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...]
  /external/clang/lib/Parse/
Parser.cpp 158 const char *Spelling = 0;
161 (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) {
165 << FixItHint::CreateInsertion(EndLoc, Spelling);
    [all...]
ParseExprCXX.cpp     [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 760 StringRef Spelling = *I;
761 OS << ".Case(\"" << Spelling << "\", true)\n";
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp     [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);
  /external/webkit/Source/WebKit/mac/WebView/
WebFrame.mm 412 document->markers()->removeMarkers(DocumentMarker::Spelling);
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]

Completed in 1114 milliseconds

1 2