HomeSort by relevance Sort by last modified time
    Searched full:resourceid (Results 76 - 100 of 362) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
PluralResourceLoader.java 24 public String getValue(int resourceId, int quantity) {
25 String name = resourceExtractor.getResourceName(resourceId);
ResourceExtractor.java 86 public String getResourceName(int resourceId) {
87 return resourceIdToString.get(resourceId);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRemoteViews.java 82 public void setImageViewResource(int viewId, final int resourceId) {
86 ((ImageView) view).setImageResource(resourceId);
ShadowDrawable.java 67 public static Drawable createFromResourceId(int resourceId) {
69 shadowOf(bitmap).setLoadedFromResourceId(resourceId);
197 public void setLoadedFromResourceId(int resourceId) {
198 loadedFromResourceId = resourceId;
ShadowTypedValue.java 196 typedValue.resourceId = other.resourceId;
212 if (typedValue.resourceId != 0) {
213 sb.append(" r=0x").append(Integer.toHexString(typedValue.resourceId));
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Texture2D.java 50 public Texture2D(int resourceID) {
52 mResourceID = resourceID;
TextureCube.java 51 public TextureCube(int resourceID) {
53 mResourceID = resourceID;
VertexShader.java 42 public Builder setShader(Resources resources, int resourceID) {
43 mBuilder.setShader(resources, resourceID);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ActionImage.java 36 public ActionImage(Path path, GalleryApp application, int resourceId) {
39 mResourceId = resourceId;
  /cts/tests/tests/util/src/android/util/cts/
TypedValueTest.java 57 tv1.resourceId = 4;
66 assertEquals(4, tv2.resourceId);
119 tv.resourceId = 4;
155 tv.resourceId = 4;
  /external/chromium_org/cc/layers/
video_layer_impl.h 58 std::vector<ResourceProvider::ResourceId> frame_resources_;
  /external/chromium_org/cc/quads/
draw_quad.h 99 typedef ResourceProvider::ResourceId ResourceId;
100 typedef base::Callback<ResourceId(ResourceId)> ResourceIteratorCallback;
draw_quad_unittest.cc 374 ResourceProvider::ResourceId resource_id = 72;
402 ResourceProvider::ResourceId mask_resource_id = 78;
477 ResourceProvider::ResourceId resource_id = 64;
599 ResourceProvider::ResourceId y_plane_resource_id = 45;
600 ResourceProvider::ResourceId u_plane_resource_id = 532;
601 ResourceProvider::ResourceId v_plane_resource_id = 4;
602 ResourceProvider::ResourceId a_plane_resource_id = 63;
689 ResourceProvider::ResourceId IncrementResourceId(
690 ResourceProvider::ResourceId id) {
729 ResourceProvider::ResourceId resource_id = 72
    [all...]
  /external/chromium_org/content/child/npapi/
webplugin_resource_client.h 36 virtual int ResourceId() = 0;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptCanvasModule.cpp 39 using WebCore::TypeBuilder::Canvas::ResourceId;
176 void InjectedScriptCanvasModule::resourceState(ErrorString* errorString, const TraceLogId& traceLogId, const ResourceId& resourceId, RefPtr<ResourceState>* result)
180 function.appendArgument(resourceId);
  /external/chromium_org/third_party/mesa/src/src/glx/
glx_error.h 35 uint_fast32_t resourceID, uint_fast16_t minorCode,
  /external/glide/library/src/main/java/com/bumptech/glide/
DrawableRequestBuilder.java 153 public DrawableRequestBuilder<ModelType> placeholder(int resourceId) {
154 super.placeholder(resourceId);
165 public DrawableRequestBuilder<ModelType> error(int resourceId) {
166 super.error(resourceId);
  /external/mesa3d/src/glx/
glx_error.h 35 uint_fast32_t resourceID, uint_fast16_t minorCode,
  /packages/apps/Contacts/src/com/android/contacts/util/
ThemeUtils.java 32 return outValue.resourceId;
  /frameworks/base/core/java/android/view/
PointerIcon.java 131 int resourceId = a.getResourceId(styleIndex, -1);
134 if (resourceId == -1) {
140 if ((resourceId & 0xff000000) == 0x01000000) {
141 icon.mSystemIconResourceId = resourceId;
143 icon.loadResource(context, context.getResources(), resourceId);
188 * @param resourceId The resource id.
195 public static PointerIcon loadCustomIcon(Resources resources, int resourceId) {
201 icon.loadResource(null, resources, resourceId);
376 private void loadResource(Context context, Resources resources, int resourceId) {
377 final XmlResourceParser parser = resources.getXml(resourceId);
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
NetworkActivity.java 229 int resourceId = 0;
235 resourceId = R.drawable.ic_settings_wifi_active_1;
238 resourceId = R.drawable.ic_settings_wifi_active_2;
241 resourceId = R.drawable.ic_settings_wifi_active_3;
244 resourceId = R.drawable.ic_settings_wifi_active_4;
250 resourceId = R.drawable.ic_settings_wifi_secure_active_1;
253 resourceId = R.drawable.ic_settings_wifi_secure_active_2;
256 resourceId = R.drawable.ic_settings_wifi_secure_active_3;
259 resourceId = R.drawable.ic_settings_wifi_secure_active_4;
264 return resourceId;
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTest.java 123 new UiObject(new UiSelector().resourceId("com.android.documentsui:id/container_save")
124 .childSelector(new UiSelector().resourceId("android:id/button1"))).click();
155 new UiObject(new UiSelector().resourceId("com.android.documentsui:id/container_save")
156 .childSelector(new UiSelector().resourceId("android:id/button1"))).click();
175 new UiObject(new UiSelector().resourceId("com.android.documentsui:id/container_save")
176 .childSelector(new UiSelector().resourceId("android:id/button1"))).click();
  /cts/tests/tests/print/src/android/print/cts/
BasePrintTest.java 224 UiObject destinationSpinner = new UiObject(new UiSelector().resourceId(
237 UiObject orientationSpinner = new UiObject(new UiSelector().resourceId(
250 UiObject mediaSizeSpinner = new UiObject(new UiSelector().resourceId(
263 UiObject colorSpinner = new UiObject(new UiSelector().resourceId(
276 UiObject printButton = new UiObject(new UiSelector().resourceId(
302 UiObject expandHandle = new UiObject(new UiSelector().resourceId(
  /frameworks/base/core/java/android/widget/
ViewAnimator.java 309 * @param resourceID The resource id of the animation.
314 public void setInAnimation(Context context, int resourceID) {
315 setInAnimation(AnimationUtils.loadAnimation(context, resourceID));
322 * @param resourceID The resource id of the animation.
327 public void setOutAnimation(Context context, int resourceID) {
328 setOutAnimation(AnimationUtils.loadAnimation(context, resourceID));
  /cts/tests/tests/widget/src/android/widget/cts/
DigitalClockTest.java 114 private AttributeSet getAttributeSet(int resourceId) {
115 XmlResourceParser parser = mActivity.getResources().getXml(resourceId);

Completed in 1096 milliseconds

1 2 34 5 6 7 8 91011>>