HomeSort by relevance Sort by last modified time
    Searched full:resid (Results 251 - 275 of 513) sorted by null

<<11121314151617181920>>

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
TextCandidatesViewManager.java 474 int resid = 0;
478 resid = R.drawable.cand_up_press;
480 resid = R.drawable.cand_down_press;
485 resid = R.drawable.cand_up;
487 resid = R.drawable.cand_down;
494 if (resid != 0) {
495 mReadMoreButton.setImageResource(resid);
1117 int resid = 0; local
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_linearity.py 93 print "Line: m=%f, b=%f, resid=%f"%(line[0], line[1], residuals[0])
  /cts/tests/tests/app/src/android/app/cts/
InstrumentationTest.java 198 final int resId = R.id.goto_menu_id;
200 mInstrumentation.invokeMenuActionSync(mActivity, resId, 0);
203 assertEquals(resId, mActivity.getMenuID());
612 public void setFeatureDrawableResource(int featureId, int resId) {
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 353 private InputStream obtainInputStream(int resId) {
354 return mRes.openRawResource(resId);
357 private byte[] obtainByteArray(int resId) throws IOException {
358 InputStream is = obtainInputStream(resId);
  /external/fio/engines/
skeleton_external.c 62 * io_u->xfer_buflen. Residual data count may be set in io_u->resid
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestMenuItem.java 217 public MenuItem setActionView(int resId) {
  /frameworks/base/services/tests/servicestests/src/com/android/server/search/
SearchablesTest.java 364 * @param resid The resource identifier of the desired xml. Can not be 0.
375 public XmlResourceParser getXml(String packageName, int resid, ApplicationInfo appInfo) {
378 MoreAsserts.assertNotEqual(resid, 0);
381 return mRealPackageManager.getXml(packageName, resid, appInfo);
  /frameworks/support/v4/java/android/support/v4/app/
ActionBarDrawerToggle.java 336 * @param resId Resource ID of a drawable to use for the up indicator, or 0
340 public void setHomeAsUpIndicator(int resId) {
342 if (resId != 0) {
343 indicator = ContextCompat.getDrawable(mActivity, resId);
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/account/
AccountTypeTest.java 40 // Package name null, resId -1, use the default
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
StateListDrawableTest.java 246 private XmlResourceParser getResourceParser(int resId) throws XmlPullParserException,
249 resId);
  /frameworks/base/cmds/idmap/
inspect.cpp 279 uint32_t resID = (packageId << 24) | (targetTypeId << 16) | (entryOffset + i);
282 err = resource_metadata(am, resID, NULL, &type, &name);
  /frameworks/base/core/java/android/widget/
Switch.java 252 public void setSwitchTextAppearance(Context context, int resid) {
254 context.obtainStyledAttributes(resid,
456 * @param resId Resource ID of a track drawable
460 public void setTrackResource(int resId) {
461 setTrackDrawable(getContext().getDrawable(resId));
498 * @param resId Resource ID of a thumb drawable
502 public void setThumbResource(int resId) {
503 setThumbDrawable(getContext().getDrawable(resId));
    [all...]
ActionMenuView.java 84 * @param resId theme used to inflate popup menus
87 public void setPopupTheme(int resId) {
88 if (mPopupTheme != resId) {
89 mPopupTheme = resId;
90 if (resId == 0) {
93 mPopupContext = new ContextThemeWrapper(mContext, resId);
  /frameworks/base/docs/html/training/backward-compatible-ui/
abstracting.jd 77 public abstract CompatTab setText(int resId);
78 public abstract CompatTab setIcon(int resId);
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardMultiUserAvatar.java 74 public static KeyguardMultiUserAvatar fromXml(int resId, Context context,
77 LayoutInflater.from(context).inflate(resId, userSelector, false);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
MenuItemWrapperICS.java 237 public MenuItem setActionView(int resId) {
239 mWrappedObject.setActionView(resId);
  /packages/apps/Browser/src/com/android/browser/
BreadCrumbView.java 176 int resid = outValue.resourceId; local
177 mBackButton.setBackgroundResource(resid);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AbstractGalleryActivity.java 141 public void setContentView(int resId) {
142 super.setContentView(resId);
  /packages/apps/Settings/src/com/android/settings/wifi/
WriteWifiConfigToNfcDialog.java 238 private void setViewText(final TextView view, final int resid) {
242 view.setText(resid);
  /packages/apps/SpareParts/src/com/android/spare_parts/
SpareParts.java 204 int floatToIndex(float val, int resid) {
205 String[] indices = getResources().getStringArray(resid);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
CaptionPreviewFragment.java 157 static CharSequence getTextForLocale(Context context, Locale locale, int resId) {
164 return res.getText(resId);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ActionMenuView.java 91 * @param resId theme used to inflate popup menus
94 public void setPopupTheme(int resId) {
95 if (mPopupTheme != resId) {
96 mPopupTheme = resId;
97 if (resId == 0) {
100 mPopupContext = new ContextThemeWrapper(mContext, resId);
  /packages/apps/InCallUI/src/com/android/incallui/
StatusBarNotifier.java 463 int resId = R.string.notification_ongoing_call;
466 resId = R.string.notification_incoming_call;
468 resId = R.string.notification_on_hold;
470 resId = R.string.notification_dialing;
473 resId = R.string.notification_requesting_video_call;
476 return resId;
  /frameworks/base/core/java/android/view/
Window.java 739 public void setWindowAnimations(int resId) {
741 attrs.windowAnimations = resId;
    [all...]
  /external/fio/
backend.c 538 } else if (io_u->resid) {
539 int bytes = io_u->xfer_buflen - io_u->resid;
545 td_verror(td, EIO, "full resid");
550 io_u->xfer_buflen = io_u->resid;
785 } else if (io_u->resid) {
786 int bytes = io_u->xfer_buflen - io_u->resid;
798 td_verror(td, EIO, "full resid");
803 io_u->xfer_buflen = io_u->resid;
1233 io_u->resid = 0;
    [all...]

Completed in 3747 milliseconds

<<11121314151617181920>>