/libcore/luni/src/main/java/java/util/ |
List.java | 164 public E get(int location); method in interface:List
|
ListResourceBundle.java | 114 return table.get(key);
|
MapEntry.java | 29 RT get(MapEntry<KT, VT> entry); method in interface:MapEntry.Type
|
PropertyResourceBundle.java | 126 return resources.get(key);
|
/libcore/luni/src/main/java/java/util/jar/ |
Attributes.java | 339 public Object get(Object key) { method in class:Attributes 340 return map.get(key); 482 return (String) map.get(name); 494 return (String) map.get(new Attributes.Name(name));
|
/libcore/luni/src/main/java/javax/crypto/ |
MacSpi.java | 109 input.get(bInput);
|
/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/ |
ZoneInfoDB.java | 218 data.get(type); 225 isDsts[i] = data.get(); 226 abbreviationIndexes[i] = data.get(); 230 data.get(abbreviationList);
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
InformationObjectSet.java | 75 public Object get(int[] oid) { method in class:InformationObjectSet
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
InnerNodeImpl.java | 64 return (!children.isEmpty() ? children.get(0) : null); 68 return (!children.isEmpty() ? children.get(children.size() - 1) : null); 76 return parent.children.get(index + 1); 168 children.get(i).index = i;
|
/libcore/luni/src/main/java/org/apache/xml/serializer/utils/ |
StringToIntTable.java | 85 * Get the length of the list. 134 public final int get(String key) method in class:StringToIntTable
|
/libcore/luni/src/main/java/org/apache/xml/utils/ |
NamespaceSupport2.java | 259 * Look up a prefix and get the currently-mapped Namespace URI. 325 * which one you get, use the {@link #getPrefix getPrefix} 384 * aroung the get-all-prefixes version of the operation. This is NOT 591 name = (String[])table.get(qName); 621 uri = (String)prefixTable.get(prefix); 653 return (String)prefixTable.get(prefix); 673 return (String)uriTable.get(uri);
|
StringToIntTable.java | 78 * Get the length of the list. 127 public final int get(String key) method in class:StringToIntTable
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
NamespaceSupport.java | 364 * Look up a prefix and get the currently-mapped Namespace URI. 435 * which one you get, use the {@link #getPrefix getPrefix} 663 name = (String[])table.get(qName); 700 uri = (String)prefixTable.get(prefix); 732 return (String)prefixTable.get(prefix); 752 return (String)uriTable.get(uri);
|
/libcore/luni/src/main/native/ |
NativeBidi.cpp | 86 if (chars.get() == NULL) { 90 ubidi_setPara(data->uBiDi(), chars.get(), length, paraLevel, data->embeddingLevels(), &err); 160 if (levelBytes.get() == NULL) { 164 const UBiDiLevel* levels = reinterpret_cast<const UBiDiLevel*>(levelBytes.get());
|
libcore_io_IoUtils.cpp | 42 if (fds.get() == NULL) {
|
/libcore/luni/src/test/java/com/google/coretests/ |
XmlReportPrinter.java | 85 Suite suite = suites.get(test.className); 107 Suite suite = suites.get(test.className); 184 TestFailure error = errors.get(testId); 185 TestFailure failure = failures.get(testId);
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldCookieHandlerTest.java | 80 public Map get(URI uri, Map requestHeaders) throws IOException { method in class:OldCookieHandlerTest.MockCookieHandler
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
DeflaterOutputStreamTest.java | 75 }).get();
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/ |
DictionaryTest.java | 41 public Object get(Object arg0) { method in class:DictionaryTest.Mock_Dictionary
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyStore2Test.java | 728 Calendar.getInstance().get(Calendar.DAY_OF_MONTH); 730 int dayExpected = Calendar.getInstance().get(Calendar.DAY_OF_MONTH); 731 int monthExpected = Calendar.getInstance().get(Calendar.MONTH); 732 int yearExpected = Calendar.getInstance().get(Calendar.YEAR); 733 int hourExpected = Calendar.getInstance().get(Calendar.HOUR); 734 int minuteExpected = Calendar.getInstance().get(Calendar.MINUTE); 738 int dayActual1 = Calendar.getInstance().get(Calendar.DAY_OF_MONTH); 739 int monthActual1 = Calendar.getInstance().get(Calendar.MONTH); 740 int yearActual1 = Calendar.getInstance().get(Calendar.YEAR); 741 int hourActual1 = Calendar.getInstance().get(Calendar.HOUR) [all...] |
/libcore/luni/src/test/java/tests/api/java/util/concurrent/ |
ScheduledExecutorSubclassTest.java | 38 public V get() throws InterruptedException, ExecutionException { method in class:ScheduledExecutorSubclassTest.CustomTask 39 V v = task.get(); 43 public V get(long time, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException { method in class:ScheduledExecutorSubclassTest.CustomTask 44 V v = task.get(time, unit); 103 assertEquals(Boolean.TRUE, f.get()); 166 int c = counter.count.get(); 184 int c = counter.count.get(); 642 String result = future.get(); 656 future.get(); 670 String result = future.get(); [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DOMImplementationCreateDocumentType.java | 106 publicId = (String) publicIds.get(indexN1005D); 108 systemId = (String) systemIds.get(indexN10061); 154 qualifiedName = (String) qualifiedNames.get(indexN10077); 197 qualifiedName = (String) qualifiedNames.get(indexN10077);
|
NodeIsSupported.java | 114 featureXML = (String) featuresXML.get(indexN10063); 121 featureCore = (String) featuresCore.get(indexN1007C); 155 featureXML = (String) featuresXML.get(indexN10064); 162 featureCore = (String) featuresCore.get(indexN1007D);
|
/packages/apps/Camera/tests/src/com/android/camera/gallery/ |
MockImageList.java | 29 return mList.get(i);
|
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
CertInstallerMain.java | 41 // the whole display) get stuck for about 5 seconds 64 installFromFile(allFiles.get(0));
|