/external/apache-harmony/support/src/test/resources/tests/resources/ServiceLoader/ |
hyts_services.jar | |
hyts_services2.jar | |
/external/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/ |
Service.java | 18 package tests.resources.ServiceLoader;
|
ServiceDuplicateIn2File.java | 18 package tests.resources.ServiceLoader;
|
ServiceFinalClass.java | 18 package tests.resources.ServiceLoader;
|
ServiceForAllCommentTest.java | 18 package tests.resources.ServiceLoader;
|
ServiceForEmptyTest.java | 18 package tests.resources.ServiceLoader;
|
ServiceForIllegalNameTest.java | 18 package tests.resources.ServiceLoader;
|
ServiceForWrongNameTest.java | 18 package tests.resources.ServiceLoader;
|
ServiceIn2File.java | 18 package tests.resources.ServiceLoader;
|
ServiceIn2FileWithEmptyConfig.java | 18 package tests.resources.ServiceLoader;
|
ServiceMoreThanOne.java | 18 package tests.resources.ServiceLoader;
|
ServiceWithDuplicateSons.java | 18 package tests.resources.ServiceLoader;
|
AbstractService.java | 18 package tests.resources.ServiceLoader;
|
/external/apache-harmony/support/src/test/resources/tests/resources/subfolder/tests/resources/ |
hyts_resource.java | 18 package tests.resources.subfolder.tests.resources;
|
hyts_resource_en_US.java | 18 package tests.resources.subfolder.tests.resources;
|
hyts_resource_en_US_VAR.java | 18 package tests.resources.subfolder.tests.resources;
|
hyts_resource_fr.java | 18 package tests.resources.subfolder.tests.resources;
|
hyts_resource_fr_FR_VAR.java | 17 package tests.resources.subfolder.tests.resources;
|
/external/webkit/Source/WebKit/chromium/tests/ |
WebPageSerializerTest.cpp | 123 // Retrieve all resources. 125 WebVector<WebURL> resources; local 127 m_webView, m_supportedSchemes, &resources, &frames)); 129 // Tests that all resources from the frame have been retrieved. 133 EXPECT_EQ(14, resources.size()); // There should be no duplicates. 134 EXPECT_TRUE(webVectorContains(resources, "http://www.example.com/beautifull.css")); 135 EXPECT_TRUE(webVectorContains(resources, "http://www.test.com/awesome.js")); 136 EXPECT_TRUE(webVectorContains(resources, "http://www.test.com/bodyBackground.jpg")); 137 EXPECT_TRUE(webVectorContains(resources, "http://www.test.com/awesome.png")); 138 EXPECT_TRUE(webVectorContains(resources, "http://www.test.com/imageButton.png")) 171 WebVector<WebURL> resources; local [all...] |
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
Initialize.h | 21 const ShBuiltInResources& resources); 29 const ShBuiltInResources& resources, 32 void InitExtensionBehavior(const ShBuiltInResources& resources,
|
/libcore/luni/src/main/java/java/util/ |
PropertyResourceBundle.java | 25 * {@code PropertyResourceBundle} loads resources from an {@code InputStream}. All resources are 26 * Strings. The resources must be of the form {@code key=value}, one 35 Properties resources; field in class:PropertyResourceBundle 51 resources = new Properties(); 52 resources.load(stream); 63 resources = new Properties(); 64 resources.load(reader); 68 return resources.stringPropertyNames(); 73 return (Enumeration<String>) resources.propertyNames() [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/ |
ContactStatusUtil.java | 20 import android.content.res.Resources; 31 Resources resources = context.getResources(); local 34 return resources.getString(R.string.status_available); 37 return resources.getString(R.string.status_away); 39 return resources.getString(R.string.status_busy);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/resources/manager/ |
IdeScanningContextTest.java | 16 package com.android.ide.eclipse.adt.internal.resources.manager;
|
/libcore/luni/src/test/java/libcore/java/util/jar/ |
OldJarFileTest.java | 33 private File resources = Support_Resources.createTempFolder(); field in class:OldJarFileTest 42 Support_Resources.copyFile(resources, null, jarName); 43 new JarFile(new File(resources, jarName)); 53 Support_Resources.copyFile(resources, null, jarName); 54 String fileName = (new File(resources, jarName)).getCanonicalPath(); 65 Support_Resources.copyFile(resources, null, jarName); 66 String fileName = (new File(resources, jarName)).getCanonicalPath(); 77 Support_Resources.copyFile(resources, null, jarName); 78 new JarFile(new File(resources, jarName), false); 89 Support_Resources.copyFile(resources, null, jarName) [all...] |