OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getBucketLabel
(Results
1 - 9
of
9
) sorted by null
/libcore/luni/src/main/java/libcore/icu/
AlphabeticIndex.java
66
public String
getBucketLabel
(int index) {
67
return
getBucketLabel
(peer, index);
72
private static native String
getBucketLabel
(long peer, int index);
150
public synchronized String
getBucketLabel
(int index) {
151
return
getBucketLabel
(peer, index);
169
private static native String
getBucketLabel
(long peer, int index);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLocaleUtils.java
74
// AlphabeticIndex.
getBucketLabel
() uses a binary search across
159
public String
getBucketLabel
(int bucketIndex) {
167
return mAlphabeticIndex.
getBucketLabel
(bucketIndex);
179
labels.add(
getBucketLabel
(i));
273
public String
getBucketLabel
(int bucketIndex) {
279
return super.
getBucketLabel
(bucketIndex);
450
public String
getBucketLabel
(int bucketIndex) {
451
return mUtils.
getBucketLabel
(bucketIndex);
455
return
getBucketLabel
(getBucketIndex(name));
ContactsDatabaseHelper.java
[
all
...]
/libcore/luni/src/test/java/libcore/icu/
AlphabeticIndexTest.java
29
String label = ii.
getBucketLabel
(index);
212
ii.
getBucketLabel
(-1);
218
ii.
getBucketLabel
(123456);
/libcore/luni/src/main/native/
libcore_icu_AlphabeticIndex.cpp
123
const UnicodeString& label(ai->
getBucketLabel
());
186
NATIVE_METHOD(AlphabeticIndex,
getBucketLabel
, "(JI)Ljava/lang/String;"),
192
NATIVE_METHOD(ImmutableIndex,
getBucketLabel
, "(JI)Ljava/lang/String;"),
/external/icu4c/test/intltest/
alphaindextst.cpp
194
const UnicodeString &label2 = index->
getBucketLabel
();
257
//
getBucketLabel
(), getBucketType()
266
UnicodeString label = index->
getBucketLabel
();
304
UnicodeString label = index->
getBucketLabel
();
373
const UnicodeString &label = index.
getBucketLabel
();
452
UnicodeString label = aindex.
getBucketLabel
();
/external/icu4c/i18n/unicode/
alphaindex.h
136
* showLabelAtTop(UI, index->
getBucketLabel
());
145
* showLabelInList(UI, index->
getBucketLabel
());
572
virtual const UnicodeString &
getBucketLabel
() const;
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLocaleUtilsTest.java
124
return utils.
getBucketLabel
(bucketIndex);
/external/icu4c/i18n/
alphaindex.cpp
[
all
...]
Completed in 189 milliseconds