HomeSort by relevance Sort by last modified time
    Searched refs:resourceId (Results 51 - 75 of 123) sorted by null

1 23 4 5

  /external/webkit/Source/WebCore/svg/
SVGElement.cpp 349 String resourceId = getIdAttribute();
350 if (!extensions->isPendingResource(resourceId))
353 OwnPtr<SVGDocumentExtensions::SVGPendingElements> clients(extensions->removePendingResource(resourceId));
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
ActivityAnimations.java 108 // resourceId of the source bitmap, the picture description, and the
119 putExtra(PACKAGE + ".resourceId", info.resourceId).
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
MenuLoader.java 101 public void inflateMenu(Context context, int resourceId, Menu root) {
102 inflateMenu(context, resourceExtractor.getResourceName(resourceId),
PreferenceLoader.java 68 public PreferenceScreen inflatePreferences(Context context, int resourceId) {
69 return inflatePreferences(context, resourceExtractor.getResourceName(resourceId));
  /frameworks/base/core/java/android/preference/
PreferenceActivity.java 799 if (tv.resourceId != 0) {
800 header.titleRes = tv.resourceId;
808 if (tv.resourceId != 0) {
809 header.summaryRes = tv.resourceId;
817 if (tv.resourceId != 0) {
818 header.breadCrumbTitleRes = tv.resourceId;
    [all...]
  /frameworks/base/core/java/android/widget/
CalendarView.java 594 * @param resourceId The vertical bar drawable resource id.
598 public void setSelectedDateVerticalBar(int resourceId) {
599 Drawable drawable = getResources().getDrawable(resourceId);
637 * @param resourceId The text appearance resource id.
641 public void setWeekDayTextAppearance(int resourceId) {
642 if (mWeekDayTextAppearanceResId != resourceId) {
643 mWeekDayTextAppearanceResId = resourceId;
662 * @param resourceId The text appearance resource id.
666 public void setDateTextAppearance(int resourceId) {
667 if (mDateTextAppearanceResId != resourceId) {
    [all...]
ActivityChooserView.java 284 * @param resourceId The content description resource id.
286 public void setExpandActivityOverflowButtonContentDescription(int resourceId) {
287 CharSequence contentDescription = mContext.getString(resourceId);
464 * @param resourceId The resource id.
466 public void setDefaultActionButtonContentDescription(int resourceId) {
467 mDefaultActionButtonContentDescription = resourceId;
ShareActionProvider.java 171 Drawable drawable = mContext.getResources().getDrawable(outTypedValue.resourceId);
SuggestionsAdapter.java 373 mUrlColor = mContext.getResources().getColorStateList(colorValue.resourceId);
522 int resourceId = Integer.parseInt(drawableId);
525 + "://" + mProviderContext.getPackageName() + "/" + resourceId;
532 drawable = mProviderContext.getResources().getDrawable(resourceId);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsEditQuickResponsesFragment.java 102 private static final int resourceId = R.layout.quick_response_item;
116 super(context, resourceId, textViewId, quickResponses);
AccountSettingsUtils.java 106 * @param resourceId Id of the provider resource to scan
110 Context context, String domain, int resourceId) {
112 XmlResourceParser xml = context.getResources().getXml(resourceId);
  /frameworks/base/core/java/android/content/res/
TypedArray.java 320 value, value.resourceId);
342 return mResources.loadColorStateList(value, value.resourceId);
601 return mResources.loadDrawable(value, value.resourceId);
628 return mResources.getTextArray(value.resourceId);
708 outValue.resourceId = data[index+AssetManager.STYLE_RESOURCE_ID];
Resources.java     [all...]
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 387 int resourceId = directoryCursor.getInt(DirectoryListQuery.TYPE_RESOURCE_ID);
388 if (packageName != null && resourceId != 0) {
392 partition.directoryType = resources.getString(resourceId);
395 + resourceId + "@" + packageName);
399 + resourceId + "@" + packageName, e);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactDirectoryManager.java 141 int resourceId = cursor.getInt(0);
142 if (resourceId != 0) {
145 String resourceName = getResourceNameById(packageName, resourceId);
162 private String getResourceNameById(String packageName, int resourceId) {
165 return resources.getResourceName(resourceId);
  /frameworks/base/core/java/android/app/
AlertDialog.java 145 return outValue.resourceId;
308 * @param resId the resourceId of the drawable to use as the icon or 0
327 mAlert.setIcon(out.resourceId);
476 P.mIconId = out.resourceId;
    [all...]
Presentation.java 301 theme = outValue.resourceId;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchableSource.java 227 int resourceId = getSourceIconResource();
228 if (resourceId == 0) {
231 return Util.getResourceUri(getContext(), mActivityInfo.applicationInfo, resourceId);
  /frameworks/base/core/java/com/android/internal/app/
HeavyWeightSwitcherActivity.java 91 out.resourceId);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActivityChooserView.java 290 * @param resourceId The content description resource id.
292 public void setExpandActivityOverflowButtonContentDescription(int resourceId) {
293 CharSequence contentDescription = getContext().getString(resourceId);
470 * @param resourceId The resource id.
472 public void setDefaultActionButtonContentDescription(int resourceId) {
473 mDefaultActionButtonContentDescription = resourceId;
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ShareActionProvider.java 177 Drawable drawable = mContext.getResources().getDrawable(outTypedValue.resourceId);
SuggestionsAdapter.java 333 mUrlColor = mContext.getResources().getColorStateList(colorValue.resourceId);
482 int resourceId = Integer.parseInt(drawableId);
485 + "://" + mProviderContext.getPackageName() + "/" + resourceId;
492 drawable = mProviderContext.getResources().getDrawable(resourceId);
  /development/samples/BluetoothLeGatt/src/com/example/bluetooth/le/
DeviceControlActivity.java 229 private void updateConnectionState(final int resourceId) {
233 mConnectionState.setText(resourceId);
  /frameworks/base/core/java/android/net/http/
Request.java 522 void error(int errorId, int resourceId) {
526 resourceId).toString());
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/streamitems/
StreamItemPopulatorActivity.java 196 protected byte[] loadPhotoFromResource(int resourceId) {
197 InputStream is = getResources().openRawResource(resourceId);

Completed in 1351 milliseconds

1 23 4 5