Searched refs:id (Results 251 - 275 of 1340) sorted by relevance

<<11121314151617181920>>

/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3OutputStream.h41 Camera3OutputStream(int id, sp<ANativeWindow> consumer,
48 Camera3OutputStream(int id, sp<ANativeWindow> consumer,
66 Camera3OutputStream(int id, camera3_stream_type_t type,
/frameworks/base/core/java/android/gesture/
H A DLearner.java46 * Remove an instance based on its id
48 * @param id
50 void removeInstance(long id) { argument
55 if (id == instance.id) {
/frameworks/base/core/java/android/view/
H A DMenu.java261 * with the given group and id. You can use the group to control ordering of
302 * @param id The item to be removed. If there is no item with this
305 public void removeItem(int id); argument
372 * @param id The identifier to find.
377 public MenuItem findItem(int id); argument
427 * @param id Identifier associated with the menu item.
435 public boolean performIdentifierAction(int id, int flags); argument
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DLLOfTwoFocusableInTouchMode.java41 mButton1 = findViewById(R.id.button1);
42 mButton2 = findViewById(R.id.button2);
43 mButton3 = findViewById(R.id.button3);
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
H A DFixedWidthTest.java44 mFixedWidth = activity.findViewById(R.id.fixed_width);
45 mNonFixedWidth = activity.findViewById(R.id.non_fixed_width);
46 mFixedHeight = activity.findViewById(R.id.fixed_height);
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListFilter.java47 mFrame = findViewById(R.id.frame);
49 mHide = (Button) findViewById(R.id.hide);
52 mShow = (Button) findViewById(R.id.show);
H A DListViewHeight.java47 mButton1 = findViewById(R.id.button1);
48 mButton2 = findViewById(R.id.button2);
49 mButton3 = findViewById(R.id.button3);
51 mOuterLayout = findViewById(R.id.layout);
52 mInnerList = (ListView)findViewById(R.id.inner_list);
/frameworks/base/rs/java/android/renderscript/
H A DProgram.java52 TextureType(int id) { argument
53 mID = id;
64 ProgramParam(int id) { argument
65 mID = id;
77 Program(long id, RenderScript rs) { argument
78 super(id, rs);
153 long id = a != null ? a.getID(mRS) : 0;
154 mRS.nProgramBindConstants(getID(mRS), slot, id);
175 long id = va != null ? va.getID(mRS) : 0;
176 mRS.nProgramBindTexture(getID(mRS), slot, id);
[all...]
H A DType.java71 CubemapFace(int id) { argument
72 mID = id;
187 Type(long id, RenderScript rs) { argument
188 super(id, rs);
227 long id = rs.nTypeCreate(e.getID(rs), dimX, 0, 0, false, false, 0);
228 Type t = new Type(id, rs);
251 long id = rs.nTypeCreate(e.getID(rs), dimX, dimY, 0, false, false, 0);
252 Type t = new Type(id, rs);
277 long id = rs.nTypeCreate(e.getID(rs), dimX, dimY, dimZ, false, false, 0);
278 Type t = new Type(id, r
[all...]
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
H A DSubActivity.java42 ViewGroup container = (ViewGroup) findViewById(R.id.my_container);
46 int dir = child.getId() == R.id.from_left ? 1 : -1;
50 View bg = findViewById(R.id.bg_container);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DCrossfadeImage.java44 ViewGroup container = (ViewGroup) findViewById(R.id.container);
47 mImageView = (ImageView) findViewById(R.id.contact_picture);
51 mCrossfade.addTarget(R.id.contact_picture);
H A DDelayedTransition.java39 final Button button1 = (Button) findViewById(R.id.button1);
40 final Button button2 = (Button) findViewById(R.id.button2);
41 final LinearLayout container = (LinearLayout) findViewById(R.id.container);
/frameworks/testing/espresso/espresso-lib-tests/src/androidTest/java/com/google/android/apps/common/testing/ui/espresso/action/
H A DKeyEventActionIntegrationTest.java103 onView(allOf(withParent(withId(R.id.simple_fragment)), isAssignableFrom(TextView.class)))
112 onView(withId(R.id.new_fragment)).perform(click()).perform(click()).perform(click());
114 onView(allOf(withParent(withId(R.id.simple_fragment)), isAssignableFrom(TextView.class)))
119 onView(allOf(withParent(withId(R.id.simple_fragment)), isAssignableFrom(TextView.class)))
124 onView(allOf(withParent(withId(R.id.simple_fragment)), isAssignableFrom(TextView.class)))
129 onView(allOf(withParent(withId(R.id.simple_fragment)), isAssignableFrom(TextView.class)))
143 onView(withId(R.id.enter_data_edit_text)).perform(click());
144 onView(withId(R.id.enter_data_edit_text)).perform(ViewActions.pressKey(KeyEvent.KEYCODE_X));
145 onView(withId(R.id.enter_data_edit_text)).perform(ViewActions.pressKey(KeyEvent.KEYCODE_Y));
146 onView(withId(R.id
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DKeySetManagerService.java92 long id = getIdByKeySetLPr(ks);
93 if (id == KEYSET_NOT_FOUND) {
96 return pkg.keySetData.packageIsSignedBy(id);
118 long id = getIdByKeySetLPr(ks);
119 return pkg.keySetData.getProperSigningKeySet() == id;
139 long id = getIdByKeySetLPr(ks);
140 pkg.keySetData.addDefinedKeySet(id, alias);
172 long id = getIdByKeySetLPr(ks);
173 ArraySet<Long> publicKeyIds = mKeySetMapping.get(id);
175 throw new NullPointerException("Got invalid KeySet id");
214 getKeySetByIdLPr(long id) argument
242 getPublicKeysFromKeySetLPr(long id) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java164 * The resource id of a drawable to use as the icon in the status bar.
1241 * @param icon The resource id of the icon to put in the status bar.
2651 contentView.setViewVisibility(R.id.profile_badge_large_template, View.GONE);
2652 contentView.setViewVisibility(R.id.profile_badge_line2, View.GONE);
2653 contentView.setViewVisibility(R.id.profile_badge_line3, View.GONE);
2661 if (resId == R.id.profile_badge_line3) {
2662 contentView.setViewVisibility(R.id.line3, View.VISIBLE);
2672 contentView.setTextViewTextSize(R.id.text, TypedValue.COMPLEX_UNIT_PX, subTextSize);
2678 contentView.setTextViewTextSize(R.id.text, TypedValue.COMPLEX_UNIT_PX, regularTextSize);
2683 contentView.setViewPadding(R.id
[all...]
H A DLoaderManager.java66 * @param id The ID whose loader is to be created.
70 public Loader<D> onCreateLoader(int id, Bundle args); argument
137 * @param id A unique identifier for this loader. Can be whatever you want.
145 public abstract <D> Loader<D> initLoader(int id, Bundle args, argument
152 * If a loader with the same id has previously been
157 * @param id A unique identifier for this loader. Can be whatever you want.
163 public abstract <D> Loader<D> restartLoader(int id, Bundle args, argument
172 public abstract void destroyLoader(int id); argument
175 * Return the Loader with the given id or null if no matching Loader
178 public abstract <D> Loader<D> getLoader(int id); argument
242 LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) argument
543 createLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
551 createAndInstallLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
598 initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
648 restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
715 destroyLoader(int id) argument
743 getLoader(int id) argument
[all...]
/frameworks/base/packages/Keyguard/test/src/com/android/keyguard/test/
H A DKeyguardTestActivity.java145 R.id.on_screen_turned_off, R.id.on_screen_turned_on,
146 R.id.do_keyguard, R.id.verify_unlock
210 case R.id.none_menu_item:
213 case R.id.pin_menu_item:
216 case R.id.password_menu_item:
219 case R.id.pattern_menu_item:
222 case R.id.sim_pin_menu_item:
225 case R.id
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DUserSwitcherController.java125 || r.info.id == forcePictureLoadForId || r.picture == null) {
128 bitmaps.put(r.info.id, r.picture);
148 boolean isCurrent = currentId == info.id;
154 Bitmap picture = bitmaps.get(info.id);
156 picture = mUserManager.getUserIcon(info.id);
227 int id;
237 id = guest.id;
242 id = record.info.id;
255 switchToUserId(int id) argument
263 showExitGuestDialog(int id) argument
279 exitGuest(int id) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DLoaderManager.java47 * @param id The ID whose loader is to be created.
51 public Loader<D> onCreateLoader(int id, Bundle args); argument
118 * @param id A unique identifier for this loader. Can be whatever you want.
126 public abstract <D> Loader<D> initLoader(int id, Bundle args, argument
133 * If a loader with the same id has previously been
138 * @param id A unique identifier for this loader. Can be whatever you want.
144 public abstract <D> Loader<D> restartLoader(int id, Bundle args, argument
153 public abstract void destroyLoader(int id); argument
156 * Return the Loader with the given id or null if no matching Loader
159 public abstract <D> Loader<D> getLoader(int id); argument
228 LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) argument
487 createLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
495 createAndInstallLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
542 initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
592 restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
657 destroyLoader(int id) argument
685 getLoader(int id) argument
[all...]
/frameworks/base/core/java/android/os/storage/
H A DIMountService.java252 public int createSecureContainer(String id, int sizeMb, String fstype, String key, argument
259 _data.writeString(id);
280 public int destroySecureContainer(String id, boolean force) throws RemoteException { argument
286 _data.writeString(id);
303 public int finalizeSecureContainer(String id) throws RemoteException { argument
309 _data.writeString(id);
324 public int mountSecureContainer(String id, String key, int ownerUid, boolean readOnly) argument
331 _data.writeString(id);
349 public int unmountSecureContainer(String id, boolean force) throws RemoteException { argument
355 _data.writeString(id);
370 isSecureContainerMounted(String id) argument
412 getSecureContainerPath(String id) argument
779 getSecureContainerFilesystemPath(String id) argument
800 fixPermissionsSecureContainer(String id, int gid, String filename) argument
840 resizeSecureContainer(String id, int sizeMb, String key) argument
1359 createSecureContainer(String id, int sizeMb, String fstype, String key, int ownerUid, boolean external) argument
1367 destroySecureContainer(String id, boolean force) argument
1374 finalizeSecureContainer(String id) argument
1401 getSecureContainerPath(String id) argument
1422 isSecureContainerMounted(String id) argument
1447 mountSecureContainer(String id, String key, int ownerUid, boolean readOnly) argument
1492 unmountSecureContainer(String id, boolean force) argument
1576 fixPermissionsSecureContainer(String id, int gid, String filename) argument
1619 resizeSecureContainer(String id, int sizeMb, String key) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditText.java105 @Override public boolean onTextContextMenuItem(int id) { argument
106 if (mIME != null && mIME.onExtractTextContextMenuItem(id)) {
109 if (id == android.R.id.copy) stopSelectionActionMode();
112 return super.onTextContextMenuItem(id);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarTransitions.java46 mLeftSide = mView.findViewById(R.id.notification_icon_area);
47 mStatusIcons = mView.findViewById(R.id.statusIcons);
48 mSignalCluster = mView.findViewById(R.id.signal_cluster);
49 mBattery = mView.findViewById(R.id.battery);
50 mClock = mView.findViewById(R.id.clock);
/frameworks/base/tools/preload/
H A DProc.java35 final int id; field in class:Proc
60 Proc(Proc parent, int id) { argument
62 this.id = id;
158 System.out.println(prefix + "id=" + id + ", name=" + name);
/frameworks/testing/espresso/espresso-sample/src/main/java/com/google/android/apps/common/testing/ui/testapp/
H A DMenuActivity.java34 * text of R.id.textMenuResult.
42 registerForContextMenu(findViewById(R.id.text_context_menu));
54 TextView text = (TextView) findViewById(R.id.text_menu_result);
68 TextView text = (TextView) findViewById(R.id.text_menu_result);
75 TextView text = (TextView) findViewById(R.id.text_menu_result);
93 TextView text = (TextView) findViewById(R.id.text_menu_result);
/frameworks/wilhelm/src/itf/
H A DI3DGrouping.c39 unsigned id = thisObject->mInstanceID; local
40 assert(0 != id); // player object must be published by this point
41 --id;
42 assert(MAX_INSTANCE > id);
43 unsigned mask = 1 << id;

Completed in 598 milliseconds

<<11121314151617181920>>