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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/SpellChecker/SampleSpellCheckerService/
_index.html 5 "Sample correction" as the spelling correction service. </p>
  /external/webkit/Source/WebCore/manual-tests/autocorrection/
undo-autocorrection.html 16 <p><b>Test 1:</b> Type "the mesage". After seeing the correction panel, type whitespace to accept the correction, then select undo. You should see the second word being reverted to "message".</p>
17 <p><b>Test 2:</b> Type "the ". Set font to bold, then type "me". Set font to regular, then type "sage". After seeing the correction panel, type whitespace to accept the correction, then select undo. You should see the second word being reverted to "message" with "me" in bold font.</p>
autocorrection-contraction.html 34 <p>After loading the page, you should see correction panel shows "would" for "wouldn". Then after typing "'t", the correction panel dissappears and the final sentence is "this wouldn't".</p>
close-window-when-correction-is-shown.html 33 <title>Testing closing window when correction suggestion is shown</title>
36 <div><p>This test verifies that when correction suggestion is visible, closing window doesn't hang or crash.</p>
autocorrection-cancelled-by-ESC.html 33 <div><p>This test verifies that autocorrection is not applied when user dismisses correction panel by pressing
35 <p>After seeing the correction panel, press ESC key, then press space. You should see the phrase "the collaps"
spell-checking-after-reversion.html 35 <li>After seeing the correction panel, press space to accept the correction.</li>
  /packages/inputmethods/LatinIME/native/src/
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...]
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.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...]
  /external/webkit/Source/WebCore/editing/
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)
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);
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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
rtc.h 43 * Data structure to control PLL correction some better RTC feature
44 * pll_value is used to get or set current value of correction,
57 int pll_value; /* get/set correction value */
60 int pll_posmult; /* factor for +ve correction */
61 int pll_negmult; /* factor for -ve correction */
91 #define RTC_PLL_GET _IOR('p', 0x11, struct rtc_pll_info) /* Get PLL correction */
92 #define RTC_PLL_SET _IOW('p', 0x12, struct rtc_pll_info) /* Set PLL correction */
  /cts/tests/tests/text/src/android/text/cts/
AutoTextTest.java 50 // get possible spelling correction in the scope of current
58 * get possible spelling correction in the scope of current
66 * get possible spelling correction in the scope of current
73 // get possible spelling correction outside of the scope of current
  /external/clang/test/SemaCXX/
typo-correction.cpp 22 // name typo correction patch that wasn't noticed until building LLVM with
  /external/clang/include/clang/Sema/
TypoCorrection.h 1 //===--- TypoCorrection.h - Class for typo correction results ---*- C++ -*-===//
11 // Sema's typo correction (Sema::CorrectTypo).
53 /// \brief Gets the DeclarationName of the typo correction
59 /// \brief Gets the NestedNameSpecifier needed to use the typo correction
67 /// \brief Gets the "edit distance" of the typo correction from the typo
70 /// \brief Gets the pointer to the declaration of the typo correction
99 /// added to the list of the correction's NamedDecl pointers, NULL is added
113 // Returns true if the correction either is a keyword or has a known decl.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ComposingStateManager.java 61 // Auto-correction indicator should be specified only when the current state is "composing".
64 Log.i(TAG, "Set auto correction Indicator: " + on);
  /external/kernel-headers/original/linux/
rtc.h 43 * Data structure to control PLL correction some better RTC feature
44 * pll_value is used to get or set current value of correction,
57 int pll_value; /* get/set correction value */
60 int pll_posmult; /* factor for +ve correction */
61 int pll_negmult; /* factor for -ve correction */
91 #define RTC_PLL_GET _IOR('p', 0x11, struct rtc_pll_info) /* Get PLL correction */
92 #define RTC_PLL_SET _IOW('p', 0x12, struct rtc_pll_info) /* Set PLL correction */
  /external/icu4c/data/unidata/
NormalizationCorrections.txt 20 # stability, the correction is entered in this data file,
36 # Field 3: Version of Unicode for which the correction was
39 # the correction
  /development/samples/SpellChecker/SampleSpellCheckerService/res/values/
strings.xml 21 <string name="spellchecker_name">Sample correction</string>
  /external/webkit/Source/WebCore/dom/
DocumentMarker.h 40 // Text has been modified by spell correction, reversion of spell correction or other type of substitution.
45 // correction. Text with Replacement marker doesn't necessarily has CorrectionIndicator
50 // Correction suggestion has been offered, but got rejected by user.
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
p4.cpp 36 // FIXME: namespace-aware typo correction causes an extra, misleading
39 // avoid accepting and printing out a typo correction that proves to be
  /external/mesa3d/docs/
README.CYGWIN 140 Gamma correction:
142 and displayed intensities, there is a gamma correction feature in
144 correction in hardware (man gamma) so you won't need to use Mesa's
149 Gamma correction is controlled with the MESA_GAMMA environment
155 gamma correction. Examples using csh:
168 Mesa implements gamma correction with a lookup table which translates
170 small performance penalty. Gamma correction only works in RGB mode.
175 For more information about gamma correction see:
252 MESA_GAMMA - gamma correction coefficients (X only)
xlibdriver.html 119 <H2>Gamma Correction</H2>
122 and displayed intensities, there is a gamma correction feature in
124 correction in hardware (man gamma) so you won't need to use Mesa's
131 Gamma correction is controlled with the <b>MESA_GAMMA</b> environment
137 The defaults are all 1.0, effectively disabling gamma correction.
157 Mesa implements gamma correction with a lookup table which translates
159 small performance penalty. Gamma correction only works in RGB mode.
166 For more information about gamma correction see:
270 MESA_GAMMA - gamma correction coefficients (X only)

Completed in 528 milliseconds

1 2 3 4 5 6 7 8 91011>>