Home
last modified time | relevance | path

Searched refs:aWord (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/dports/cad/opencascade/opencascade-7.6.0/src/FSD/
H A DFSD_Base64.cxx45 uint32_t aWord = (uint32_t(theData[i]) << 16) + in Encode() local
48 theEncodedStr[iStr++] = aBase64Chars[aWord >> 18]; in Encode()
49 theEncodedStr[iStr++] = aBase64Chars[aWord >> 12 & 0x3F]; in Encode()
50 theEncodedStr[iStr++] = aBase64Chars[aWord >> 6 & 0x3F]; in Encode()
51 theEncodedStr[iStr++] = aBase64Chars[aWord & 0x3F]; in Encode()
58 theEncodedStr[iStr++] = aBase64Chars[aWord >> 10]; in Encode()
59 theEncodedStr[iStr++] = aBase64Chars[aWord >> 4 & 0x03F]; in Encode()
60 theEncodedStr[iStr++] = aBase64Chars[(aWord & 0xF) << 2]; in Encode()
64 uint32_t aWord = theData[theDataLen - 1]; in Encode() local
65 theEncodedStr[iStr++] = aBase64Chars[aWord >> 2]; in Encode()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/odk/examples/DevelopersGuide/OfficeDev/Linguistic/
H A DSampleSpellChecker.java142 return aWord.equals( aWord.toUpperCase( aLang ) ); in IsUpper()
145 private boolean HasDigits( String aWord ) in HasDigits() argument
147 int nLen = aWord.length(); in HasDigits()
157 String aWord, in GetSpellFailure() argument
176 boolean bIsValid = !(aWord.indexOf( "u" ) != -1 || aWord.indexOf( "U" ) != -1) in GetSpellFailure()
184 if (aWord.equals( "arizona" )) in GetSpellFailure()
197 String aWord, in GetProposals() argument
230 if (aWord.equals( "arizona" )) in GetProposals()
235 else if (aWord.equals( "house" )) in GetProposals()
286 String aWord, Locale aLocale, in isValid() argument
[all …]
H A DSampleHyphenator.java209 String aWord, Locale aLocale, in hyphenate() argument
235 if (aWord.length() >= nHyphMinWordLen) in hyphenate()
237 String aHyphenatedWord = aWord; in hyphenate()
263 if ( aWord.equals( "waterfall" ) ) in hyphenate()
270 else if ( aWord.equals( "driving" ) ) in hyphenate()
282 xRes = new XHyphenatedWord_impl(aWord, aLocale, in hyphenate()
290 String aWord, Locale aLocale, in queryAlternativeSpelling() argument
323 if (aWord.equals( "Schiffahrt" ) && in queryAlternativeSpelling()
339 String aWord, Locale aLocale, in createPossibleHyphens() argument
384 if ( aWord.equals( "waterfall" ) ) in createPossibleHyphens()
[all …]
H A DXHyphenatedWord_impl.java41 private String aWord; field in XHyphenatedWord_impl
49 String aWord, in XHyphenatedWord_impl() argument
55 this.aWord = aWord; in XHyphenatedWord_impl()
60 this.bIsAltSpelling = (aWord != aHyphenatedWord); in XHyphenatedWord_impl()
64 if (this.aWord == null) in XHyphenatedWord_impl()
65 this.aWord = ""; in XHyphenatedWord_impl()
76 return aWord; in getWord()
H A DXPossibleHyphens_impl.java41 private String aWord; field in XPossibleHyphens_impl
47 String aWord, in XPossibleHyphens_impl() argument
52 this.aWord = aWord; in XPossibleHyphens_impl()
59 if (this.aWord == null) in XPossibleHyphens_impl()
60 this.aWord = ""; in XPossibleHyphens_impl()
75 return aWord; in getWord()
H A DXSpellAlternatives_impl.java42 private String aWord; field in XSpellAlternatives_impl
48 String aWord, in XSpellAlternatives_impl() argument
53 this.aWord = aWord; in XSpellAlternatives_impl()
60 if (this.aWord == null) in XSpellAlternatives_impl()
61 this.aWord = ""; in XSpellAlternatives_impl()
74 return aWord; in getWord()
H A DLinguisticExamples.java185 String aWord = "horseback"; in Run() local
186 boolean bIsCorrect = mxSpell.isValid( aWord, aLocale, aEmptyProps ); in Run()
187 System.out.println( aWord + ": " + bIsCorrect ); in Run()
190 aWord = "course"; in Run()
191 bIsCorrect = mxSpell.isValid( aWord, aLocale , aEmptyProps ); in Run()
192 System.out.println( aWord + ": " + bIsCorrect ); in Run()
195 aWord = "house"; in Run()
196 XSpellAlternatives xAlt = mxSpell.spell( aWord, aLocale, aEmptyProps ); in Run()
198 System.out.println( aWord + " is correct." ); in Run()
201 System.out.println( aWord + " is not correct. A list of proposals follows." ); in Run()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/odk/examples/DevelopersGuide/OfficeDev/Linguistic/
H A DSampleSpellChecker.java142 return aWord.equals( aWord.toUpperCase( aLang ) ); in IsUpper()
145 private boolean HasDigits( String aWord ) in HasDigits() argument
147 int nLen = aWord.length(); in HasDigits()
157 String aWord, in GetSpellFailure() argument
176 boolean bIsValid = !(aWord.indexOf( "u" ) != -1 || aWord.indexOf( "U" ) != -1) in GetSpellFailure()
184 if (aWord.equals( "arizona" )) in GetSpellFailure()
197 String aWord, in GetProposals() argument
230 if (aWord.equals( "arizona" )) in GetProposals()
235 else if (aWord.equals( "house" )) in GetProposals()
286 String aWord, Locale aLocale, in isValid() argument
[all …]
H A DSampleHyphenator.java209 String aWord, Locale aLocale, in hyphenate() argument
235 if (aWord.length() >= nHyphMinWordLen) in hyphenate()
237 String aHyphenatedWord = aWord; in hyphenate()
263 if ( aWord.equals( "waterfall" ) ) in hyphenate()
270 else if ( aWord.equals( "driving" ) ) in hyphenate()
282 xRes = new XHyphenatedWord_impl(aWord, aLocale, in hyphenate()
290 String aWord, Locale aLocale, in queryAlternativeSpelling() argument
323 if (aWord.equals( "Schiffahrt" ) && in queryAlternativeSpelling()
339 String aWord, Locale aLocale, in createPossibleHyphens() argument
384 if ( aWord.equals( "waterfall" ) ) in createPossibleHyphens()
[all …]
H A DXHyphenatedWord_impl.java41 private String aWord; field in XHyphenatedWord_impl
49 String aWord, in XHyphenatedWord_impl() argument
55 this.aWord = aWord; in XHyphenatedWord_impl()
60 this.bIsAltSpelling = (aWord != aHyphenatedWord); in XHyphenatedWord_impl()
64 if (this.aWord == null) in XHyphenatedWord_impl()
65 this.aWord = ""; in XHyphenatedWord_impl()
76 return aWord; in getWord()
H A DXPossibleHyphens_impl.java41 private String aWord; field in XPossibleHyphens_impl
47 String aWord, in XPossibleHyphens_impl() argument
52 this.aWord = aWord; in XPossibleHyphens_impl()
59 if (this.aWord == null) in XPossibleHyphens_impl()
60 this.aWord = ""; in XPossibleHyphens_impl()
75 return aWord; in getWord()
H A DXSpellAlternatives_impl.java42 private String aWord; field in XSpellAlternatives_impl
48 String aWord, in XSpellAlternatives_impl() argument
53 this.aWord = aWord; in XSpellAlternatives_impl()
60 if (this.aWord == null) in XSpellAlternatives_impl()
61 this.aWord = ""; in XSpellAlternatives_impl()
74 return aWord; in getWord()
H A DLinguisticExamples.java185 String aWord = "horseback"; in Run() local
186 boolean bIsCorrect = mxSpell.isValid( aWord, aLocale, aEmptyProps ); in Run()
187 System.out.println( aWord + ": " + bIsCorrect ); in Run()
190 aWord = "course"; in Run()
191 bIsCorrect = mxSpell.isValid( aWord, aLocale , aEmptyProps ); in Run()
192 System.out.println( aWord + ": " + bIsCorrect ); in Run()
195 aWord = "house"; in Run()
196 XSpellAlternatives xAlt = mxSpell.spell( aWord, aLocale, aEmptyProps ); in Run()
198 System.out.println( aWord + " is correct." ); in Run()
201 System.out.println( aWord + " is not correct. A list of proposals follows." ); in Run()
/dports/www/firefox-legacy/firefox-52.8.0esr/editor/txtsvc/
H A DnsISpellChecker.h44 NS_IMETHOD NextMisspelledWord(nsAString &aWord, nsTArray<nsString> *aSuggestions) = 0;
54 …NS_IMETHOD CheckWord(const nsAString &aWord, bool *aIsMisspelled, nsTArray<nsString> *aSuggestions…
70 NS_IMETHOD IgnoreAll(const nsAString &aWord) = 0;
76 NS_IMETHOD AddWordToPersonalDictionary(const nsAString &aWord) = 0;
82 NS_IMETHOD RemoveWordFromPersonalDictionary(const nsAString &aWord) = 0;
/dports/www/firefox-legacy/firefox-52.8.0esr/extensions/spellcheck/src/
H A DmozPersonalDictionary.cpp395 NS_IMETHODIMP mozPersonalDictionary::Check(const char16_t *aWord, const char16_t *aLanguage, bool *… in Check() argument
397 NS_ENSURE_ARG_POINTER(aWord); in Check()
402 *aResult = (mDictionaryTable.GetEntry(aWord) || mIgnoreTable.GetEntry(aWord)); in Check()
406 NS_IMETHODIMP mozPersonalDictionary::AddWord(const char16_t *aWord, const char16_t *aLang) in AddWord() argument
411 mDictionaryTable.PutEntry(aWord); in AddWord()
416 NS_IMETHODIMP mozPersonalDictionary::RemoveWord(const char16_t *aWord, const char16_t *aLang) in RemoveWord() argument
421 mDictionaryTable.RemoveEntry(aWord); in RemoveWord()
426 NS_IMETHODIMP mozPersonalDictionary::IgnoreWord(const char16_t *aWord) in IgnoreWord() argument
429 if (aWord && !mIgnoreTable.GetEntry(aWord)) in IgnoreWord()
430 mIgnoreTable.PutEntry(aWord); in IgnoreWord()
H A DmozSpellChecker.h39 NS_IMETHOD NextMisspelledWord(nsAString &aWord, nsTArray<nsString> *aSuggestions) override;
40 …NS_IMETHOD CheckWord(const nsAString &aWord, bool *aIsMisspelled, nsTArray<nsString> *aSuggestions…
42 NS_IMETHOD IgnoreAll(const nsAString &aWord) override;
44 NS_IMETHOD AddWordToPersonalDictionary(const nsAString &aWord) override;
45 NS_IMETHOD RemoveWordFromPersonalDictionary(const nsAString &aWord) override;
/dports/lang/spidermonkey60/firefox-60.9.0/editor/spellchecker/
H A DnsISpellChecker.h49 NS_IMETHOD NextMisspelledWord(nsAString &aWord,
60 NS_IMETHOD CheckWord(const nsAString &aWord, bool *aIsMisspelled,
78 NS_IMETHOD IgnoreAll(const nsAString &aWord) = 0;
84 NS_IMETHOD AddWordToPersonalDictionary(const nsAString &aWord) = 0;
90 NS_IMETHOD RemoveWordFromPersonalDictionary(const nsAString &aWord) = 0;
/dports/www/firefox/firefox-99.0/extensions/spellcheck/src/
H A DmozSpellChecker.h57 nsresult NextMisspelledWord(nsAString& aWord,
69 nsresult CheckWord(const nsAString& aWord, bool* aIsMisspelled,
82 RefPtr<mozilla::SuggestionsPromise> Suggest(const nsAString& aWord,
101 nsresult IgnoreAll(const nsAString& aWord);
107 nsresult AddWordToPersonalDictionary(const nsAString& aWord);
113 nsresult RemoveWordFromPersonalDictionary(const nsAString& aWord);
H A DmozEnglishWordUtils.cpp34 bool mozEnglishWordUtils::FindNextWord(const nsAString& aWord, uint32_t offset, in FindNextWord() argument
36 if (offset >= aWord.Length()) { in FindNextWord()
42 const char16_t* word = aWord.BeginReading(); in FindNextWord()
43 uint32_t length = aWord.Length(); in FindNextWord()
89 return FindNextWord(aWord, startWord - word, begin, end); in FindNextWord()
/dports/lang/spidermonkey60/firefox-60.9.0/extensions/spellcheck/src/
H A DmozPersonalDictionary.cpp387 NS_IMETHODIMP mozPersonalDictionary::Check(const char16_t *aWord, in Check() argument
390 NS_ENSURE_ARG_POINTER(aWord); in Check()
395 *aResult = (mDictionaryTable.GetEntry(aWord) || mIgnoreTable.GetEntry(aWord)); in Check()
399 NS_IMETHODIMP mozPersonalDictionary::AddWord(const char16_t *aWord, in AddWord() argument
404 mDictionaryTable.PutEntry(aWord); in AddWord()
409 NS_IMETHODIMP mozPersonalDictionary::RemoveWord(const char16_t *aWord, in RemoveWord() argument
414 mDictionaryTable.RemoveEntry(aWord); in RemoveWord()
419 NS_IMETHODIMP mozPersonalDictionary::IgnoreWord(const char16_t *aWord) { in IgnoreWord() argument
421 if (aWord && !mIgnoreTable.GetEntry(aWord)) mIgnoreTable.PutEntry(aWord); in IgnoreWord()
H A DmozSpellChecker.h36 NS_IMETHOD NextMisspelledWord(nsAString &aWord,
38 NS_IMETHOD CheckWord(const nsAString &aWord, bool *aIsMisspelled,
42 NS_IMETHOD IgnoreAll(const nsAString &aWord) override;
44 NS_IMETHOD AddWordToPersonalDictionary(const nsAString &aWord) override;
45 NS_IMETHOD RemoveWordFromPersonalDictionary(const nsAString &aWord) override;
/dports/www/firefox-esr/firefox-91.8.0/extensions/spellcheck/src/
H A DmozEnglishWordUtils.cpp34 bool mozEnglishWordUtils::FindNextWord(const nsAString& aWord, uint32_t offset, in FindNextWord() argument
36 if (offset >= aWord.Length()) { in FindNextWord()
42 const char16_t* word = aWord.BeginReading(); in FindNextWord()
43 uint32_t length = aWord.Length(); in FindNextWord()
89 return FindNextWord(aWord, startWord - word, begin, end); in FindNextWord()
/dports/lang/spidermonkey78/firefox-78.9.0/extensions/spellcheck/src/
H A DmozEnglishWordUtils.cpp34 bool mozEnglishWordUtils::FindNextWord(const nsAString& aWord, uint32_t offset, in FindNextWord() argument
36 if (offset >= aWord.Length()) { in FindNextWord()
42 const char16_t* word = aWord.BeginReading(); in FindNextWord()
43 uint32_t length = aWord.Length(); in FindNextWord()
89 return FindNextWord(aWord, startWord - word, begin, end); in FindNextWord()
/dports/mail/thunderbird/thunderbird-91.8.0/extensions/spellcheck/src/
H A DmozEnglishWordUtils.cpp34 bool mozEnglishWordUtils::FindNextWord(const nsAString& aWord, uint32_t offset, in FindNextWord() argument
36 if (offset >= aWord.Length()) { in FindNextWord()
42 const char16_t* word = aWord.BeginReading(); in FindNextWord()
43 uint32_t length = aWord.Length(); in FindNextWord()
89 return FindNextWord(aWord, startWord - word, begin, end); in FindNextWord()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.ui.tests.views.properties.tabbed/src/org/eclipse/ui/tests/views/properties/tabbed/text/
H A DTextTestsTabDescriptor.java27 public TextTestsTabDescriptor(String aWord) { in TextTestsTabDescriptor() argument
29 this.word = aWord; in TextTestsTabDescriptor()
30 getSectionDescriptors().add(new TextTestsSectionDescriptor(aWord, getId())); in TextTestsTabDescriptor()
32 getSectionDescriptors().add(new TextTestsSectionDescriptor2(aWord, getId())); in TextTestsTabDescriptor()

12345678910>>...13