Searched refs:id (Results 201 - 225 of 1331) sorted by relevance

1234567891011>>

/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DConfirmationActivity.java16 ((TextView)findViewById(R.id.text)).setText(getTextExtra(EXTRA_TEXT, "text"));
17 findViewById(R.id.ok).setOnClickListener(new View.OnClickListener() {
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DOverlayTest.java35 mContainer = (ViewGroup) findViewById(R.id.container);
40 final Button fadingButton = (Button) findViewById(R.id.fadingButton);
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
H A DTestAppWidgetConfigure.java39 findViewById(R.id.save_button).setOnClickListener(mOnClickListener);
44 String text = ((EditText)findViewById(R.id.edit_text)).getText().toString();
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/menu/
H A DBridgeMenuItemImpl.java41 BridgeMenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, argument
43 super(menu, group, id, categoryOrder, ordering, title, showAsAction);
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualActivity.java35 mGLView = (GLSurfaceView) root.findViewById(R.id.gl1);
38 mGL2View = (GLDualGL2View) root.findViewById(R.id.gl2);
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglDebugMessageInsertKHR.cpp1 /* void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf ) */
4 (JNIEnv *_env, jobject _this, jint source, jint type, jint id, jint severity, jstring buf) {
23 (GLuint)id,
3 android_glDebugMessageInsertKHR__IIIILjava_lang_String_2(JNIEnv *_env, jobject _this, jint source, jint type, jint id, jint severity, jstring buf) argument
/frameworks/opt/chips/sample/src/com/android/ex/chips/sample/
H A DMainActivity.java34 (RecipientEditTextView) findViewById(R.id.email_retv);
39 (RecipientEditTextView) findViewById(R.id.phone_retv);
/frameworks/rs/cpp/
H A DBaseObj.cpp25 ALOGE("Internal error: Object id 0.");
35 BaseObj::BaseObj(void *id, sp<RS> rs) { argument
37 mID = id;
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DLeanbackTransitionHelperKitKat.java30 slide.addTarget(R.id.browse_title_group);
39 slide.addTarget(R.id.browse_title_group);
/frameworks/support/v4/jellybean-mr1/android/support/v4/view/
H A DViewCompatJellybeanMr1.java31 public static void setLabelFor(View view, int id) { argument
32 view.setLabelFor(id);
/frameworks/wilhelm/src/
H A Dhandlers.c41 #define _(id) ((id) - SL_OBJECTID_ENGINE + XA_OBJECTID_CAMERADEVICE + 1)
/frameworks/wilhelm/src/itf/
H A DIEngineCapabilities.c119 *pLEDDeviceID = id_descriptor->id;
128 SLuint32 id = *pLEDDeviceID; local
131 if (id == id_descriptor->id) {
161 *pVibraDeviceID = id_descriptor->id;
170 SLuint32 id = *pVibraDeviceID; local
173 if (id == id_descriptor->id) {
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteControllerDialog.java182 mDisconnectButton = (Button) findViewById(R.id.disconnect);
185 mStopCastingButton = (Button) findViewById(R.id.stop);
188 mSettingsButton = (ImageButton) findViewById(R.id.settings);
191 mArtView = (ImageView) findViewById(R.id.art);
192 mTitleView = (TextView) findViewById(R.id.title);
193 mSubtitleView = (TextView) findViewById(R.id.subtitle);
194 mTitlesWrapper = findViewById(R.id.text_wrapper);
195 mPlayPauseButton = (ImageButton) findViewById(R.id.play_pause);
197 mRouteNameView = (TextView) findViewById(R.id.route_name);
203 (FrameLayout)findViewById(R.id
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dsp_dec.h83 Word8 *id);
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dsp_enc.h126 Word8 *id);
/frameworks/av/media/mtp/
H A DMtpStorageInfo.h39 MtpStorageInfo(MtpStorageID id);
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestCase.java128 String id = null;
131 id = info.getId();
134 if (id == null) {
138 im.setInputMethod(null, id);
/frameworks/base/core/java/android/gesture/
H A DInstance.java41 // the id of the instance
42 final long id; field in class:Instance
44 private Instance(long id, float[] sample, String sampleName) { argument
45 this.id = id;
/frameworks/base/core/java/android/hardware/usb/
H A DUsbConfiguration.java59 public UsbConfiguration(int id, String name, int attributes, int maxPower) { argument
60 mId = id;
156 int id = in.readInt();
161 UsbConfiguration configuration = new UsbConfiguration(id, name, attributes, maxPower);
/frameworks/base/core/java/android/view/animation/
H A DAnimationUtils.java64 * @param id The resource id of the animation to load
65 * @return The animation object reference by the specified id
68 public static Animation loadAnimation(Context context, int id) argument
73 parser = context.getResources().getAnimation(id);
77 Integer.toHexString(id));
82 Integer.toHexString(id));
142 * @param id The resource id of the animation to load
143 * @return The animation object reference by the specified id
146 loadLayoutAnimation(Context context, int id) argument
269 loadInterpolator(Context context, int id) argument
299 loadInterpolator(Resources res, Theme theme, int id) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/animation/
H A DBasicAnimatorActivity.java30 mAnimatingButton = (Button) findViewById(R.id.animatingButton);
/frameworks/base/core/tests/coretests/src/android/view/
H A DVisibilityCallback.java45 mVictim = (MonitoredTextView)findViewById(R.id.victim);
48 Button visibleButton = (Button) findViewById(R.id.vis);
49 Button invisibleButton = (Button) findViewById(R.id.invis);
50 Button goneButton = (Button) findViewById(R.id.gone);
H A DZeroSizedTest.java47 mWithDimension = activity.findViewById(R.id.dimension);
48 mWithNoWdith = activity.findViewById(R.id.noWidth);
49 mWithNoHeight = activity.findViewById(R.id.noHeight);
50 mWithNoDimension = activity.findViewById(R.id.noDimension);
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DFillInWrap.java30 ((TextView) findViewById(R.id.data)).setText("1\n2\n3\n4\n5");
/frameworks/base/media/jni/
H A Dandroid_media_MediaProfiles.cpp175 android_media_MediaProfiles_native_get_camcorder_profile(JNIEnv *env, jobject thiz, jint id, jint quality) argument
177 ALOGV("native_get_camcorder_profile: %d %d", id, quality);
184 int duration = sProfiles->getCamcorderProfileParamByName("duration", id, q);
185 int fileFormat = sProfiles->getCamcorderProfileParamByName("file.format", id, q);
186 int videoCodec = sProfiles->getCamcorderProfileParamByName("vid.codec", id, q);
187 int videoBitRate = sProfiles->getCamcorderProfileParamByName("vid.bps", id, q);
188 int videoFrameRate = sProfiles->getCamcorderProfileParamByName("vid.fps", id, q);
189 int videoFrameWidth = sProfiles->getCamcorderProfileParamByName("vid.width", id, q);
190 int videoFrameHeight = sProfiles->getCamcorderProfileParamByName("vid.height", id, q);
191 int audioCodec = sProfiles->getCamcorderProfileParamByName("aud.codec", id,
224 android_media_MediaProfiles_native_has_camcorder_profile(JNIEnv *env, jobject thiz, jint id, jint quality) argument
[all...]

Completed in 2600 milliseconds

1234567891011>>