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

  /external/webkit/Source/WebCore/editing/
SpellingCorrectionCommand.h 36 static PassRefPtr<SpellingCorrectionCommand> create(PassRefPtr<Range> rangeToBeCorrected, const String& correction)
38 return adoptRef(new SpellingCorrectionCommand(rangeToBeCorrected, correction));
41 SpellingCorrectionCommand(PassRefPtr<Range> rangeToBeCorrected, const String& correction);
SpellingCorrectionCommand.cpp 40 // On Mac OS X, we use this command to keep track of user undoing a correction for the first time.
44 static PassRefPtr<SpellingCorrectionRecordUndoCommand> create(Document* document, const String& corrected, const String& correction)
46 return adoptRef(new SpellingCorrectionRecordUndoCommand(document, corrected, correction));
49 SpellingCorrectionRecordUndoCommand(Document* document, const String& corrected, const String& correction)
52 , m_correction(correction)
76 SpellingCorrectionCommand::SpellingCorrectionCommand(PassRefPtr<Range> rangeToBeCorrected, const String& correction)
80 , m_correction(correction)
SpellingCorrectionController.h 95 // Return true if correction was applied, false otherwise.
98 void respondToUnappliedSpellCorrection(const VisibleSelection&, const String& corrected, const String& correction) UNLESS_ENABLED({ UNUSED_PARAM(corrected); UNUSED_PARAM(correction); })
105 void handleCorrectionPanelResult(const String& correction) UNLESS_ENABLED({ UNUSED_PARAM(correction); })
117 void recordSpellcheckerResponseForModifiedCorrection(Range* rangeOfCorrection, const String& corrected, const String& correction) UNLESS_ENABLED({ UNUSED_PARAM(rangeOfCorrection); UNUSED_PARAM(corrected); UNUSED_PARAM(correction); })
SpellingCorrectionController.cpp 263 // Pending correction should always be where caret is. But in case this is not always true, we still want to dismiss the panel without accepting the correction.
269 void SpellingCorrectionController::respondToUnappliedSpellCorrection(const VisibleSelection& selectionOfCorrected, const String& corrected, const String& correction)
271 client()->recordAutocorrectionResponse(EditorClient::AutocorrectionReverted, corrected, correction);
323 void SpellingCorrectionController::handleCorrectionPanelResult(const String& correction)
338 if (correction.length()) {
339 m_correctionPanelInfo.replacementString = correction;
346 if (correction.length()) {
347 m_correctionPanelInfo.replacementString = correction;
371 // containing the original pre-correction word so that user can quickly revert th
    [all...]
Editor.h 172 void unappliedSpellCorrection(const VisibleSelection& selectionOfCorrected, const String& corrected, const String& correction);
329 // If user confirmed a correction in the correction panel, correction has non-zero length, otherwise it means that user has dismissed the panel.
330 void handleCorrectionPanelResult(const String& correction);
433 // Return true if correction was applied, false otherwise.
Editor.cpp     [all...]
  /packages/inputmethods/LatinIME/native/src/
unigram_dictionary.h 21 #include "correction.h"
92 void getSplitTwoWordsSuggestion(const int inputLength, Correction *correction);
94 Correction *correction, const bool useFullEditDistance);
96 Correction *correction, const bool useFullEditDistance);
97 void onTerminal(const int freq, Correction *correction);
102 Correction *correction, int *newCount
    [all...]
correction.h 29 class Correction {
40 Correction(const int typedLetterMultiplier, const int fullWordMultiplier);
54 virtual ~Correction();
130 // The following member variables are being used as cache values of the correction state.
156 const int freq, int *editDistanceTable, const Correction* correction);
158 const Correction* correction, const unsigned short *word);
unigram_dictionary.cpp 51 mCorrection = new Correction(typedLetterMultiplier, fullWordMultiplier);
354 const int inputLength, const int missingSpacePos, Correction *correction,
356 correction->setCorrectionParams(-1 /* skipPos */, -1 /* excessivePos */,
359 getSplitTwoWordsSuggestion(inputLength, correction);
363 const int inputLength, const int spaceProximityPos, Correction *correction,
365 correction->setCorrectionParams(-1 /* skipPos */, -1 /* excessivePos */,
368 getSplitTwoWordsSuggestion(inputLength, correction);
378 inline void UnigramDictionary::onTerminal(const int freq, Correction *correction)
    [all...]
correction.cpp 22 #define LOG_TAG "LatinIME: correction.cpp"
24 #include "correction.h"
116 inline bool Correction::isQuote(const unsigned short c) {
122 // Correction //
125 Correction::Correction(const int typedLetterMultiplier, const int fullWordMultiplier)
130 void Correction::initCorrection(const ProximityInfo *pi, const int inputLength,
138 void Correction::initCorrectionState(
147 void Correction::setCorrectionParams(const int skipPos, const int excessivePos,
164 void Correction::checkState()
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WhitelistDictionary.java 95 final String correction = getWhitelistedWord(word.toString());
96 if (TextUtils.isEmpty(correction)) return false;
97 return !correction.equals(word);
  /libcore/luni/src/main/java/java/util/
Grego.java 138 int correction = 0; local
141 correction = isLeap ? 1 : 2;
143 int month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month
  /frameworks/base/core/java/com/android/internal/view/
IInputContext.aidl 52 void commitCorrection(in CorrectionInfo correction);
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
MosaicTypes.h 142 double correction; member in struct:__anon17035
Blend.cpp     [all...]
  /packages/inputmethods/LatinIME/native/
Android.mk 17 src/correction.cpp \
  /external/icu4c/i18n/
gregoimp.cpp 124 int32_t correction = 0; local
127 correction = isLeap ? 1 : 2;
129 month = (12 * (doy + correction) + 6) / 367; // zero-based month
gregocal.cpp 404 int32_t correction = 0; local
407 correction = isLeap ? 1 : 2;
409 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js 96 var correction = window.innerWidth - document.documentElement.clientWidth;
98 $("spacer_dummy").style.width = width + correction + "px";
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 1677 long correction = 0; local
    [all...]
  /external/v8/test/mjsunit/
date-parse.js 130 // Test that we do the right correction for different time zones.
unicode-test.js     [all...]
  /external/webkit/Source/WebCore/css/
CSSPropertyNames.in 215 -webkit-color-correction
  /external/grub/docs/
texinfo.tex     [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex     [all...]

Completed in 822 milliseconds