Searched refs:id (Results 226 - 250 of 1021) sorted by relevance

1234567891011>>

/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicBlend.java25 ScriptIntrinsicBlend(int id, RenderScript rs) { argument
26 super(id, rs);
43 int id = rs.nScriptIntrinsicCreate(7, e.getID(rs));
44 return new ScriptIntrinsicBlend(id, rs);
48 private void blend(int id, Allocation ain, Allocation aout) { argument
55 forEach(id, ain, aout, null);
H A DType.java73 CubemapFace(int id) { argument
74 mID = id;
190 Type(int id, RenderScript rs) { argument
191 super(id, rs);
320 int id = mRS.nTypeCreate(mElement.getID(mRS),
322 t = new Type(id, mRS);
H A DScript.java46 KernelID(int id, RenderScript rs, Script s, int slot, int sig) { argument
47 super(id, rs);
84 int id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
85 if (id == 0) {
89 k = new KernelID(id, mRS, this, slot, sig);
107 FieldID(int id, RenderScript rs, Script s, int slot) { argument
108 super(id, rs);
140 int id = mRS.nScriptFieldIDCreate(getID(mRS), slot);
141 if (id == 0) {
145 f = new FieldID(id, mR
291 Script(int id, RenderScript rs) argument
[all...]
/frameworks/base/core/java/android/net/http/
H A DConnectionThread.java48 int id,
53 setName("http" + id);
54 mId = id;
47 ConnectionThread(Context context, int id, RequestQueue.ConnectionManager connectionManager, RequestFeeder requestFeeder) argument
H A DEventHandler.java116 * @param id One of the error codes defined below
119 public void error(int id, String description); argument
/frameworks/base/core/java/android/view/animation/
H A DAnimationUtils.java62 * @param id The resource id of the animation to load
63 * @return The animation object reference by the specified id
66 public static Animation loadAnimation(Context context, int id) argument
71 parser = context.getResources().getAnimation(id);
75 Integer.toHexString(id));
80 Integer.toHexString(id));
140 * @param id The resource id of the animation to load
141 * @return The animation object reference by the specified id
144 loadLayoutAnimation(Context context, int id) argument
267 loadInterpolator(Context context, int id) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/
H A DAutoCompleteTextViewSimple.java50 mTextView = (AutoCompleteTextView) findViewById(R.id.autocompletetextview1);
99 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
108 public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DBaselineAlignmentCenterGravityTest.java43 mButton1 = (Button) activity.findViewById(R.id.button1);
44 mButton2 = (Button) activity.findViewById(R.id.button2);
45 mButton3 = (Button) activity.findViewById(R.id.button3);
/frameworks/base/core/tests/notificationtests/src/android/app/
H A DNotificationStressTest.java79 private void sendNotification(int id, CharSequence text) { argument
86 CharSequence title = text + " " + id;
89 mNotificationManager.notify(id, notification);
/frameworks/base/graphics/java/android/renderscript/
H A DScript.java39 KernelID(int id, RenderScript rs, Script s, int slot, int sig) { argument
40 super(id, rs);
57 int id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
58 if (id == 0) {
62 k = new KernelID(id, mRS, this, slot, sig);
78 FieldID(int id, RenderScript rs, Script s, int slot) { argument
79 super(id, rs);
95 int id = mRS.nScriptFieldIDCreate(getID(mRS), slot);
96 if (id == 0) {
100 f = new FieldID(id, mR
179 Script(int id, RenderScript rs) argument
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardPINView.java53 return R.id.pinEntry;
60 final View ok = findViewById(R.id.key_enter);
76 View pinDelete = findViewById(R.id.delete_button);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewLayersActivity4.java38 setupList(R.id.list1);
42 findViewById(R.id.list1).setAlpha(0.5f);
46 findViewById(R.id.list1).setAlpha(1.0f);
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DDialogActivity.java81 protected Dialog onCreateDialog(int id) argument
83 switch (id)
91 return super.onCreateDialog(id);
/frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
H A DFountainFboView.java74 int id = ev.getPointerId(p);
78 id);
84 id);
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSimpleModel.java83 case R.id.load_model:
86 case R.id.display_options:
88 case R.id.sensor:
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DReparenting.java37 ViewGroup container = (ViewGroup) findViewById(R.id.container);
38 mContainer1 = (ViewGroup) findViewById(R.id.container1);
39 mContainer2 = (ViewGroup) findViewById(R.id.container2);
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DNativeMedia.java71 mGLView1 = (MyGLSurfaceView) findViewById(R.id.glsurfaceview1);
72 mGLView2 = (MyGLSurfaceView) findViewById(R.id.glsurfaceview2);
81 mSurfaceView1 = (SurfaceView) findViewById(R.id.surfaceview1);
103 mSurfaceView2 = (SurfaceView) findViewById(R.id.surfaceview2);
155 Spinner sourceSpinner = (Spinner) findViewById(R.id.source_spinner);
162 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
175 Spinner sinkSpinner = (Spinner) findViewById(R.id.sink_spinner);
182 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
220 ((Button) findViewById(R.id.start_java)).setOnClickListener(new View.OnClickListener() {
250 ((Button) findViewById(R.id
[all...]
/frameworks/av/media/libstagefright/include/
H A DTimedEventQueue.h53 void setEventID(event_id id) { argument
54 mEventID = id;
103 bool cancelEvent(event_id id);
148 sp<Event> removeEventFromQueue_l(event_id id, bool *wakeLocked);
/frameworks/av/media/mtp/
H A DMtpServer.h97 MtpStorage* getStorage(MtpStorageID id);
99 bool hasStorage(MtpStorageID id);
109 void sendStoreAdded(MtpStorageID id);
110 void sendStoreRemoved(MtpStorageID id);
H A DMtpStorage.h40 MtpStorage(MtpStorageID id, const char* filePath,
/frameworks/base/cmds/ime/src/com/android/commands/ime/
H A DIme.java139 String id = nextArg();
140 if (id == null) {
147 boolean res = mImm.setInputMethodEnabled(id, state);
149 System.out.println("Input method " + id + ": "
152 System.out.println("Input method " + id + ": "
166 String id = nextArg();
167 if (id == null) {
174 mImm.setInputMethod(null, id);
175 System.out.println("Input method " + id + " selected");
/frameworks/base/core/java/android/accounts/
H A DGrantCredentialsPermissionActivity.java91 final TextView authTokenTypeView = (TextView) findViewById(R.id.authtoken_type);
116 findViewById(R.id.allow_button).setOnClickListener(this);
117 findViewById(R.id.deny_button).setOnClickListener(this);
119 LinearLayout packagesListView = (LinearLayout) findViewById(R.id.packages_list);
131 ((TextView) findViewById(R.id.account_name)).setText(mAccount.name);
132 ((TextView) findViewById(R.id.account_type)).setText(accountTypeLabel);
155 ((TextView) view.findViewById(R.id.package_label)).setText(packageLabel);
161 case R.id.allow_button:
169 case R.id.deny_button:
/frameworks/base/core/java/android/transition/
H A DScene.java50 * @param layoutId The id of a standard layout resource file.
53 * @return The scene for the given root and layout id
57 com.android.internal.R.id.scene_layoutid_cache);
60 sceneRoot.setTagInternal(com.android.internal.R.id.scene_layoutid_cache, scenes);
96 * @param layoutId The id of a resource file that defines the view
189 view.setTagInternal(com.android.internal.R.id.current_scene, scene);
200 return (Scene) view.getTag(com.android.internal.R.id.current_scene);
/frameworks/base/core/jni/
H A Dandroid_view_DisplayEventReceiver.cpp65 bool processPendingEvents(nsecs_t* outTimestamp, int32_t* id, uint32_t* outCount);
66 void dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count);
67 void dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected);
145 ALOGV("receiver %p ~ Vsync pulse: timestamp=%lld, id=%d, count=%d",
169 *outId = ev.header.id;
173 dispatchHotplug(ev.header.timestamp, ev.header.id, ev.hotplug.connected);
187 void NativeDisplayEventReceiver::dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count) { argument
192 gDisplayEventReceiverClassInfo.dispatchVsync, timestamp, id, count);
198 void NativeDisplayEventReceiver::dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected) { argument
203 gDisplayEventReceiverClassInfo.dispatchHotplug, timestamp, id, connecte
[all...]
/frameworks/base/core/tests/coretests/src/android/view/
H A DGlobalFocusChange.java35 findViewById(R.id.left).getViewTreeObserver().addOnGlobalFocusChangeListener(this);

Completed in 558 milliseconds

1234567891011>>