OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getBucketIndex
(Results
1 - 10
of
10
) sorted by null
/libcore/luni/src/main/java/libcore/icu/
AlphabeticIndex.java
59
public int
getBucketIndex
(String s) {
60
return
getBucketIndex
(peer, s);
64
* Returns the label for the bucket at the given index (as returned by
getBucketIndex
).
71
private static native int
getBucketIndex
(long peer, String s);
143
public synchronized int
getBucketIndex
(String s) {
144
return
getBucketIndex
(peer, s);
148
* Returns the label for the bucket at the given index (as returned by
getBucketIndex
).
168
private static native int
getBucketIndex
(long peer, String s);
/external/icu4c/test/intltest/
alphaindextst.cpp
286
//
getBucketIndex
()
291
int32_t n = index->
getBucketIndex
(adam, status);
294
n = index->
getBucketIndex
(baker, status);
296
n = index->
getBucketIndex
(Cyrillic, status);
298
n = index->
getBucketIndex
(zed, status);
302
n = index->
getBucketIndex
();
322
n = index->
getBucketIndex
(adam, status);
324
assertEquals("Russian index.
getBucketIndex
(adam)", expectedLatinIndex, n);
325
n = index->
getBucketIndex
(baker, status);
326
assertEquals("Russian index.
getBucketIndex
(baker)", expectedLatinIndex, n)
[
all
...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLocaleUtils.java
113
public int
getBucketIndex
(String name) {
136
final int bucket = mAlphabeticIndex.
getBucketIndex
(name);
205
mMiscBucketIndex = super.
getBucketIndex
("\u65e5");
247
public int
getBucketIndex
(String name) {
248
final int bucketIndex = super.
getBucketIndex
(name);
442
public int
getBucketIndex
(String name) {
443
return mUtils.
getBucketIndex
(name);
455
return getBucketLabel(
getBucketIndex
(name));
ContactsDatabaseHelper.java
[
all
...]
/external/icu4c/i18n/unicode/
alphaindex.h
176
* int32_t bucketIndex = index.
getBucketIndex
(name, status);
194
* It is referenced by
getBucketIndex
(),
273
int32_t
getBucketIndex
(const UnicodeString &name, UErrorCode &errorCode) const;
539
virtual int32_t
getBucketIndex
(const UnicodeString &itemName, UErrorCode &status);
548
virtual int32_t
getBucketIndex
() const;
/libcore/luni/src/main/native/
libcore_icu_AlphabeticIndex.cpp
88
jint result = ai->
getBucketIndex
(string.unicodeString(), status);
89
if (maybeThrowIcuException(env, "AlphabeticIndex::
getBucketIndex
", status)) {
153
jint result = ii->
getBucketIndex
(string.unicodeString(), status);
154
if (maybeThrowIcuException(env, "AlphabeticIndex::ImmutableIndex::
getBucketIndex
", status)) {
185
NATIVE_METHOD(AlphabeticIndex,
getBucketIndex
, "(JLjava/lang/String;)I"),
191
NATIVE_METHOD(ImmutableIndex,
getBucketIndex
, "(JLjava/lang/String;)I"),
/libcore/luni/src/test/java/libcore/icu/
AlphabeticIndexTest.java
28
int index = ii.
getBucketIndex
(string);
203
ii.
getBucketIndex
(null);
/external/icu4c/i18n/
alphaindex.cpp
143
int32_t
getBucketIndex
(const UnicodeString &name, const Collator &collatorPrimaryOnly,
190
AlphabeticIndex::ImmutableIndex::
getBucketIndex
(
192
return buckets_->
getBucketIndex
(name, *collatorPrimaryOnly_, errorCode);
[
all
...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLocaleUtilsTest.java
123
int bucketIndex = utils.
getBucketIndex
(name);
/prebuilts/misc/common/icu4j/
icu4j.jar
Completed in 371 milliseconds