HomeSort by relevance Sort by last modified time
    Searched refs:resources (Results 26 - 50 of 1390) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/support/src/test/java/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/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/
AbstractService.java 18 package tests.resources.ServiceLoader;
  /frameworks/base/libs/androidfw/tests/data/basic/
build 21 unzip bundle.apk resources.arsc && \
22 mv resources.arsc basic.arsc && \
25 unzip bundle_de_fr.apk resources.arsc && \
26 mv resources.arsc split_de_fr.arsc && \
29 unzip bundle_hdpi-v4.apk resources.arsc && \
30 mv resources.arsc split_hdpi_v4.arsc && \
33 unzip bundle_xhdpi-v4.apk resources.arsc && \
34 mv resources.arsc split_xhdpi_v4.arsc && \
37 unzip bundle_xxhdpi-v4.apk resources.arsc && \
38 mv resources.arsc split_xxhdpi_v4.arsc &&
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
ActionType.java 24 import android.content.res.Resources;
63 String getTitle(Resources resources) {
64 return resources.getString(mTitleResource);
67 String getDesc(Resources resources) {
69 return resources.getString(mDescResource);
74 Action toAction(Resources resources) {
75 return toAction(resources, getDesc(resources))
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor_pb2_test.py 35 from google3.pyglib import resources namespace
46 generated = resources.GetResource(_NEW)
47 checkedin = resources.GetResource(_OLD)
  /frameworks/base/libs/androidfw/tests/data/overlay/
build 19 unzip bundle.apk resources.arsc && \
20 mv resources.arsc overlay.arsc && \
  /frameworks/base/libs/androidfw/tests/data/system/
build 19 unzip bundle.apk resources.arsc && \
20 mv resources.arsc system.arsc && \
  /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);
  /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/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/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
PickerConstants.java 19 import android.content.res.Resources;
35 private Date(Resources resources) {
38 dateSeparator = resources.getString(R.string.date_separator);
49 private Time(Resources resources) {
53 ampm = resources.getStringArray(R.array.ampm);
54 timeSeparator = resources.getString(R.string.time_separator);
74 public static PickerConstants.Date getDateInstance(Resources resources) {
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-resources-plugin/2.4.3/
maven-resources-plugin-2.4.3.jar 
  /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...]
  /external/apache-harmony/support/src/test/java/tests/resources/subfolder/tests/resources/
hyts_resource_fr_FR.java 18 package tests.resources.subfolder.tests.resources;
  /packages/apps/InCallUI/src/com/android/incallui/
InCallUIMaterialColorMapUtils.java 3 import android.content.res.Resources;
13 private final Resources mResources;
15 public InCallUIMaterialColorMapUtils(Resources resources) {
16 super(resources);
17 sPrimaryColors = resources.obtainTypedArray(
19 sSecondaryColors = resources.obtainTypedArray(
21 mResources = resources;
47 public static MaterialPalette getDefaultPrimaryAndSecondaryColors(Resources resources) {
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/
ConversationDrawables.java 19 import android.content.res.Resources;
27 * A singleton cache that holds tinted drawable resources for displaying messages, such as
74 final Resources resources = mContext.getResources(); local
76 mIncomingBubbleDrawable = resources.getDrawable(R.drawable.msg_bubble_incoming);
78 resources.getDrawable(R.drawable.message_bubble_incoming_no_arrow);
79 mIncomingErrorBubbleDrawable = resources.getDrawable(R.drawable.msg_bubble_error);
80 mOutgoingBubbleDrawable = resources.getDrawable(R.drawable.msg_bubble_outgoing);
82 resources.getDrawable(R.drawable.message_bubble_outgoing_no_arrow);
83 mAudioPlayButtonDrawable = resources.getDrawable(R.drawable.ic_audio_play)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeHelper.java 19 import android.content.res.Resources;
47 public CallTypeHelper(Resources resources) {
49 mIncomingName = resources.getString(R.string.type_incoming);
50 mOutgoingName = resources.getString(R.string.type_outgoing);
51 mMissedName = resources.getString(R.string.type_missed);
52 mIncomingVideoName = resources.getString(R.string.type_incoming_video);
53 mOutgoingVideoName = resources.getString(R.string.type_outgoing_video);
54 mMissedVideoName = resources.getString(R.string.type_missed_video);
55 mVoicemailName = resources.getString(R.string.type_voicemail)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ResourceManager.java 17 package com.android.ide.eclipse.adt.internal.resources.manager;
20 import com.android.ide.common.resources.FrameworkResources;
21 import com.android.ide.common.resources.ResourceFile;
22 import com.android.ide.common.resources.ResourceFolder;
23 import com.android.ide.common.resources.ResourceRepository;
24 import com.android.ide.common.resources.ScanningContext;
27 import com.android.ide.eclipse.adt.internal.resources.ResourceHelper;
28 import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor.IProjectListener;
29 import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor.IRawDeltaListener;
35 import com.android.resources.ResourceFolderType
157 ProjectResources resources = mMap.get(project); local
228 ProjectResources resources; local
327 ProjectResources resources; local
461 ProjectResources resources = getProjectResources(project); local
476 ProjectResources resources = getProjectResources(project); local
493 FrameworkResources resources = new FrameworkResources(frameworkRes); local
    [all...]

Completed in 387 milliseconds

12 3 4 5 6 7 8 91011>>