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

12 3 4

  /frameworks/base/core/java/android/webkit/
SelectActionModeCallback.java 143 private void setMenuVisibility(Menu menu, boolean visible, int resourceId) {
144 final MenuItem item = menu.findItem(resourceId);
  /frameworks/base/services/java/com/android/server/am/
LaunchWarningWindow.java 43 getWindow().setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, out.resourceId);
  /cts/tests/tests/content/src/android/content/pm/cts/
PackageManagerTest.java 452 int resourceId = R.xml.pm_test;
455 assertNotNull(mPackageManager.getXml(PACKAGE_NAME, resourceId, appInfo));
457 .getResourceName(resourceId));
459 resourceId));
461 .getResourceName(resourceId));
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
XmlKeyboardLoader.java 327 public SkbTemplate loadSkbTemplate(int resourceId) {
328 if (null == mContext || 0 == resourceId) {
332 XmlResourceParser xrp = r.getXml(resourceId);
337 mSkbTemplate = new SkbTemplate(resourceId);
429 public SoftKeyboard loadKeyboard(int resourceId, int skbWidth, int skbHeight) {
433 XmlResourceParser xrp = mContext.getResources().getXml(resourceId);
486 softKeyboard = new SoftKeyboard(resourceId,
    [all...]
  /frameworks/base/core/java/android/speech/tts/
TextToSpeech.java 698 * @param resourceId
703 public int addSpeech(String text, String packagename, int resourceId) {
705 mUtterances.put(text, makeResourceUri(packagename, resourceId));
753 * @param resourceId
758 public int addEarcon(String earcon, String packagename, int resourceId) {
760 mEarcons.put(earcon, makeResourceUri(packagename, resourceId));
787 private Uri makeResourceUri(String packageName, int resourceId) {
791 .appendEncodedPath(String.valueOf(resourceId))
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGElement.cpp 349 String resourceId = getIdAttribute();
350 if (!extensions->isPendingResource(resourceId))
353 OwnPtr<SVGDocumentExtensions::SVGPendingElements> clients(extensions->removePendingResource(resourceId));
  /frameworks/base/core/java/android/preference/
PreferenceActivity.java 793 if (tv.resourceId != 0) {
794 header.titleRes = tv.resourceId;
802 if (tv.resourceId != 0) {
803 header.summaryRes = tv.resourceId;
811 if (tv.resourceId != 0) {
812 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 176 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];
  /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 144 return outValue.resourceId;
307 * @param resId the resourceId of the drawable to use as the icon or 0
326 mAlert.setIcon(out.resourceId);
475 P.mIconId = out.resourceId;
    [all...]
  /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/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);
  /frameworks/ex/chips/src/com/android/ex/chips/
BaseRecipientAdapter.java 554 final int resourceId = directoryCursor.getInt(DirectoryListQuery.TYPE_RESOURCE_ID);
559 if (packageName != null && resourceId != 0) {
563 params.directoryType = resources.getString(resourceId);
566 + resourceId + "@" + packageName);
570 + resourceId + "@" + packageName, e);
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
ShutdownThread.java 117 final int resourceId = mRebootSafeMode
131 .setMessage(resourceId)
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheel.java 189 private ImageView addImageButton(Context context, int resourceId, boolean rotatable) {
196 view.setImageResource(resourceId);
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
CustomViewAccessibilityActivity.java 223 final int textColor = context.getResources().getColor(typedValue.resourceId);

Completed in 445 milliseconds

12 3 4