HomeSort by relevance Sort by last modified time
    Searched full:resourceid (Results 26 - 50 of 114) sorted by null

12 3 4 5

  /frameworks/base/media/mca/filterfw/java/android/filterfw/
GraphEnvironment.java 128 * @param resourceId The ID of the graph resource to load.
131 public int loadGraph(Context context, int resourceId) {
135 graph = getGraphReader().readGraphResource(context, resourceId);
  /frameworks/base/core/java/android/view/animation/
LayoutAnimationController.java 176 * @param resourceID the resource identifier of the animation
183 public void setAnimation(Context context, int resourceID) {
184 setAnimation(AnimationUtils.loadAnimation(context, resourceID));
221 * @param resourceID the resource identifier of the interpolator
228 public void setInterpolator(Context context, int resourceID) {
229 setInterpolator(AnimationUtils.loadInterpolator(context, resourceID));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryFactory.java 197 int resourceId = getMainDictionaryResourceIdIfAvailableForLocale(res, locale);
198 if (0 != resourceId) return resourceId;
  /frameworks/base/services/java/com/android/server/am/
LaunchWarningWindow.java 43 getWindow().setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, out.resourceId);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ScrollBarView.java 44 context, outValue.resourceId);
  /cts/tests/tests/content/src/android/content/cts/
ContextTest.java 158 private AttributeSet getAttributeSet(int resourceId) {
160 resourceId);
  /cts/tests/tests/widget/src/android/widget/cts/
DatePickerTest.java 139 private AttributeSet getAttributeSet(int resourceId) {
140 final XmlResourceParser parser = mContext.getResources().getXml(resourceId);
  /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/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
FragmentShader.java 46 public Builder setShader(Resources resources, int resourceID) {
47 mBuilder.setShader(resources, resourceID);
  /packages/apps/Email/src/com/android/email/mail/
Sender.java 71 private static Sender findSender(Context context, int resourceId, Account account)
75 XmlResourceParser xml = context.getResources().getXml(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));
  /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);
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
ClockBackService.java 248 int resourceId = message.arg1;
249 playEarcon(resourceId);
380 int resourceId = (feedbackIndex == INDEX_SCREEN_ON) ? R.string.template_screen_on
382 String template = mContext.getString(resourceId);
565 Integer resourceId = sSoundsResourceIds.get(earconId);
566 if (resourceId != null) {
568 mTts.addEarcon(earconName, getPackageName(), 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...]
  /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/graphics/java/android/renderscript/
Program.java 242 * @param resourceID id of the file containing GLSL shader code
246 public BaseProgramBuilder setShader(Resources resources, int resourceID) {
249 InputStream is = resources.openRawResource(resourceID);
  /packages/apps/Email/src/com/android/email/activity/setup/
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);
AccountSettingsEditQuickResponsesFragment.java 102 private static final int resourceId = R.layout.quick_response_item;
116 super(context, resourceId, textViewId, quickResponses);
  /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;
  /frameworks/compile/slang/
slang_rs_reflection.h 115 const std::string &ResourceId,
122 mResourceId(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/base/core/java/android/util/
TypedValue.java 170 public int resourceId;
472 resourceId = other.resourceId;
487 if (resourceId != 0) {
488 sb.append(" r=0x").append(Integer.toHexString(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...]

Completed in 1829 milliseconds

12 3 4 5