OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hasBoundaryBefore
(Results
1 - 25
of
29
) sorted by null
1
2
/external/icu/icu4c/source/common/unicode/
normalizer2.h
61
* The
hasBoundaryBefore
(), hasBoundaryAfter() and isInert() functions test whether
398
virtual UBool
hasBoundaryBefore
(UChar32 c) const = 0;
409
* Note that this operation may be significantly slower than
hasBoundaryBefore
().
424
* Note that this operation may be significantly slower than
hasBoundaryBefore
().
618
virtual UBool
hasBoundaryBefore
(UChar32 c) const;
/external/icu/android_icu4j/src/main/java/android/icu/impl/
Norm2AllModes.java
75
public boolean
hasBoundaryBefore
(int c) { return true; }
190
public boolean
hasBoundaryBefore
(int c) { return impl.hasDecompBoundary(c, true); }
240
public boolean
hasBoundaryBefore
(int c) { return impl.hasCompBoundaryBefore(c); }
276
public boolean
hasBoundaryBefore
(int c) { return impl.hasFCDBoundaryBefore(c); }
/external/icu/android_icu4j/src/main/java/android/icu/text/
Normalizer2.java
44
* The
hasBoundaryBefore
(), hasBoundaryAfter() and isInert() functions test whether
377
public abstract boolean
hasBoundaryBefore
(int c);
389
* Note that this operation may be significantly slower than
hasBoundaryBefore
().
404
* Note that this operation may be significantly slower than
hasBoundaryBefore
().
FilteredNormalizer2.java
185
public boolean
hasBoundaryBefore
(int c) {
186
return !set.contains(c) || norm2.
hasBoundaryBefore
(c);
NormalizationTransliterator.java
106
} while(start < limit && !norm2.
hasBoundaryBefore
(c = text.char32At(start)));
Normalizer.java
[
all
...]
StringSearch.java
[
all
...]
/external/icu/icu4c/source/i18n/
nortrans.cpp
146
} while(start < limit && !fNorm2.
hasBoundaryBefore
(c = text.char32At(start)));
collationruleparser.cpp
276
if(!nfc.
hasBoundaryBefore
(prefix0) || !nfc.
hasBoundaryBefore
(c)) {
usearch.cpp
[
all
...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Norm2AllModes.java
71
public boolean
hasBoundaryBefore
(int c) { return true; }
186
public boolean
hasBoundaryBefore
(int c) { return impl.hasDecompBoundary(c, true); }
236
public boolean
hasBoundaryBefore
(int c) { return impl.hasCompBoundaryBefore(c); }
272
public boolean
hasBoundaryBefore
(int c) { return impl.hasFCDBoundaryBefore(c); }
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Normalizer2.java
43
* The
hasBoundaryBefore
(), hasBoundaryAfter() and isInert() functions test whether
401
public abstract boolean
hasBoundaryBefore
(int c);
413
* Note that this operation may be significantly slower than
hasBoundaryBefore
().
429
* Note that this operation may be significantly slower than
hasBoundaryBefore
().
FilteredNormalizer2.java
197
public boolean
hasBoundaryBefore
(int c) {
198
return !set.contains(c) || norm2.
hasBoundaryBefore
(c);
Normalizer.java
[
all
...]
/external/icu/icu4c/source/common/
filterednormalizer2.cpp
251
FilteredNormalizer2::
hasBoundaryBefore
(UChar32 c) const {
252
return !set.contains(c) || norm2.
hasBoundaryBefore
(c);
norm2allmodes.h
211
virtual UBool
hasBoundaryBefore
(UChar32 c) const { return impl.hasDecompBoundary(c, TRUE); }
275
virtual UBool
hasBoundaryBefore
(UChar32 c) const {
311
virtual UBool
hasBoundaryBefore
(UChar32 c) const { return impl.hasFCDBoundaryBefore(c); }
unorm.cpp
142
if(n2->
hasBoundaryBefore
(c)) {
155
if(n2->
hasBoundaryBefore
(c)) {
normalizer2.cpp
117
virtual UBool
hasBoundaryBefore
(UChar32) const { return TRUE; }
484
return ((const Normalizer2 *)norm2)->
hasBoundaryBefore
(c);
normlzr.cpp
484
if(fNorm2->
hasBoundaryBefore
(c=text->next32PostInc())) {
508
if(fNorm2->
hasBoundaryBefore
(c)) {
dictbe.cpp
[
all
...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
NormalizationTransliterator.java
105
} while(start < limit && !norm2.
hasBoundaryBefore
(c = text.char32At(start)));
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRuleParser.java
315
if(!nfc.
hasBoundaryBefore
(prefix0) || !nfc.
hasBoundaryBefore
(c)) {
[
all
...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRuleParser.java
311
if(!nfc.
hasBoundaryBefore
(prefix0) || !nfc.
hasBoundaryBefore
(c)) {
[
all
...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
StringSearch.java
[
all
...]
/prebuilts/misc/common/icu4j/
icu4j.jar
Completed in 357 milliseconds
1
2