/libcore/support/src/test/java/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;
|
/prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/ |
localedata.jar | |
/prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/ |
localedata.jar | |
/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/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/ |
AbstractService.java | 18 package tests.resources.ServiceLoader;
|
/external/swiftshader/src/OpenGL/compiler/ |
Initialize.h | 22 void InsertBuiltInFunctions(GLenum shaderType, const ShBuiltInResources &resources, TSymbolTable &table); 25 const ShBuiltInResources& resources, 28 void InitExtensionBehavior(const ShBuiltInResources& resources,
|
/packages/apps/Dialer/java/com/android/incallui/ |
InCallUIMaterialColorMapUtils.java | 19 import android.content.res.Resources; 28 private final Resources resources; field in class:InCallUIMaterialColorMapUtils 30 public InCallUIMaterialColorMapUtils(Resources resources) { 31 super(resources); 32 primaryColors = resources.obtainTypedArray(R.array.background_colors); 33 secondaryColors = resources.obtainTypedArray(R.array.background_colors_dark); 34 this.resources = resources; [all...] |
/packages/apps/Dialer/java/com/android/dialer/calllogutils/ |
CallTypeHelper.java | 19 import android.content.res.Resources; 59 public CallTypeHelper(Resources resources, Duo duo) { 61 incomingName = resources.getString(R.string.type_incoming); 62 incomingPulledName = resources.getString(R.string.type_incoming_pulled); 63 outgoingName = resources.getString(R.string.type_outgoing); 64 outgoingPulledName = resources.getString(R.string.type_outgoing_pulled); 65 missedName = resources.getString(R.string.type_missed); 66 incomingVideoName = resources.getString(R.string.type_incoming_video); 67 incomingVideoPulledName = resources.getString(R.string.type_incoming_video_pulled) [all...] |
/frameworks/support/compat/src/main/java/androidx/core/content/res/ |
ConfigurationHelper.java | 22 import android.content.res.Resources; 40 public static int getDensityDpi(@NonNull Resources resources) { 42 return resources.getConfiguration().densityDpi; 44 return resources.getDisplayMetrics().densityDpi;
|
/frameworks/support/core/ktx/src/main/java/androidx/core/graphics/drawable/ |
BitmapDrawable.kt | 21 import android.content.res.Resources 26 inline fun Bitmap.toDrawable(resources: Resources) = BitmapDrawable(resources, this)
|
/packages/apps/Contacts/src/com/android/contacts/ |
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);
|
/packages/apps/Dialer/java/com/android/contacts/common/ |
ContactStatusUtil.java | 20 import android.content.res.Resources; 27 Resources resources = context.getResources(); local 30 return resources.getString(R.string.status_available); 33 return resources.getString(R.string.status_away); 35 return resources.getString(R.string.status_busy);
|
/packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/ |
ByResource.java | 18 import android.content.res.Resources; 26 * Creates a BySelector for the {@code resId} from {@code resources} 30 public static BySelector id(Resources resources, int resId) { 31 String id = resources.getResourceName(resId); 36 * Creates a BySelector for the text of {@code stringRes} from {@code resources}. 40 public static BySelector text(Resources resources, int stringRes) { 41 String text = resources.getString(stringRes);
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
ConversationViewUtils.java | 20 import android.content.res.Resources; 26 public static void setTextZoom(Resources resources, WebSettings settings) { 27 final float fontScale = resources.getConfiguration().fontScale; 28 final int desiredFontSizePx = resources.getInteger( 30 final int unstyledFontSizePx = resources.getInteger(
|
/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; field in class:OldJarFileTest 37 resources = Support_Resources.createTempFolder(); 47 Support_Resources.copyFile(resources, null, jarName); 48 new JarFile(new File(resources, jarName)); 58 Support_Resources.copyFile(resources, null, jarName); 59 String fileName = (new File(resources, jarName)).getCanonicalPath(); 70 Support_Resources.copyFile(resources, null, jarName); 71 String fileName = (new File(resources, jarName)).getCanonicalPath(); 82 Support_Resources.copyFile(resources, null, jarName); 83 new JarFile(new File(resources, jarName), false) [all...] |