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

1234567891011>>

/frameworks/rs/cpp/
H A DType.cpp67 Type::Type(void *id, RenderScript *rs) : BaseObj(id, rs) { argument
151 void * id = rsTypeCreate(mRS->mContext, mElement->getID(), mDimX, mDimY, mDimZ, local
153 Type *t = new Type(id, mRS);
H A DAllocation.cpp50 Allocation::Allocation(void *id, RenderScript *rs, sp<const Type> t, uint32_t usage) : argument
51 BaseObj(id, rs) {
383 void *id = rsAllocationCreateTyped(rs->mContext, type->getID(), mips, usage, 0); local
384 if (id == 0) {
388 return new Allocation(id, rs, type, usage);
393 void *id = rsAllocationCreateTyped(rs->mContext, type->getID(), mips, usage, (uint32_t)pointer); local
394 if (id == 0) {
397 return new Allocation(id, rs, type, usage);
412 void *id = rsAllocationCreateTyped(rs->mContext, t->getID(), local
414 if (id
[all...]
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicColorMatrix.java34 private ScriptIntrinsicColorMatrix(int id, RenderScript rs) { argument
35 super(id, rs);
53 int id = rs.nScriptIntrinsicCreate(2, e.getID(rs));
54 return new ScriptIntrinsicColorMatrix(id, rs);
/frameworks/base/media/jni/
H A Dandroid_media_MediaProfiles.cpp173 android_media_MediaProfiles_native_get_camcorder_profile(JNIEnv *env, jobject thiz, jint id, jint quality) argument
175 ALOGV("native_get_camcorder_profile: %d %d", id, quality);
182 int duration = sProfiles->getCamcorderProfileParamByName("duration", id, q);
183 int fileFormat = sProfiles->getCamcorderProfileParamByName("file.format", id, q);
184 int videoCodec = sProfiles->getCamcorderProfileParamByName("vid.codec", id, q);
185 int videoBitRate = sProfiles->getCamcorderProfileParamByName("vid.bps", id, q);
186 int videoFrameRate = sProfiles->getCamcorderProfileParamByName("vid.fps", id, q);
187 int videoFrameWidth = sProfiles->getCamcorderProfileParamByName("vid.width", id, q);
188 int videoFrameHeight = sProfiles->getCamcorderProfileParamByName("vid.height", id, q);
189 int audioCodec = sProfiles->getCamcorderProfileParamByName("aud.codec", id,
222 android_media_MediaProfiles_native_has_camcorder_profile(JNIEnv *env, jobject thiz, jint id, jint quality) argument
[all...]
/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/jni/
H A Dandroid_view_DisplayEventReceiver.cpp65 bool readLastVsyncMessage(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);
149 ALOGV("receiver %p ~ Vsync pulse: timestamp=%lld, id=%d, count=%d",
167 *outId = ev.header.id;
173 dispatchHotplug(ev.header.timestamp, ev.header.id, ev.hotplug.connected);
183 void NativeDisplayEventReceiver::dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count) { argument
188 gDisplayEventReceiverClassInfo.dispatchVsync, timestamp, id, count);
194 void NativeDisplayEventReceiver::dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected) { argument
199 gDisplayEventReceiverClassInfo.dispatchHotplug, timestamp, id, connecte
[all...]
/frameworks/base/libs/hwui/
H A DLayer.h138 return texture.id;
188 if (texture.id) {
189 glBindTexture(renderTarget, texture.id);
194 if (!texture.id) {
195 glGenTextures(1, &texture.id);
200 if (texture.id) {
201 glDeleteTextures(1, &texture.id);
202 texture.id = 0;
212 texture.id = 0;
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DBassBoostTest.java73 mSessionText = (EditText) findViewById(R.id.sessionEdit);
78 mReleaseButton = (ToggleButton)findViewById(R.id.bbReleaseButton);
79 mOnOffButton = (ToggleButton)findViewById(R.id.bassboostOnOff);
87 textView = (TextView)findViewById(R.id.bbStrengthMin);
89 textView = (TextView)findViewById(R.id.bbStrengthMax);
91 seekBar = (SeekBar)findViewById(R.id.bbStrengthSeekBar);
92 textView = (TextView)findViewById(R.id.bbStrengthValue);
136 if (buttonView.getId() == R.id.bassboostOnOff) {
142 if (buttonView.getId() == R.id.bbReleaseButton) {
H A DVirtualizerTest.java73 mSessionText = (EditText) findViewById(R.id.sessionEdit);
77 mReleaseButton = (ToggleButton)findViewById(R.id.virtReleaseButton);
78 mOnOffButton = (ToggleButton)findViewById(R.id.virtualizerOnOff);
85 textView = (TextView)findViewById(R.id.virtStrengthMin);
87 textView = (TextView)findViewById(R.id.virtStrengthMax);
89 seekBar = (SeekBar)findViewById(R.id.virtStrengthSeekBar);
90 textView = (TextView)findViewById(R.id.virtStrengthValue);
133 if (buttonView.getId() == R.id.virtualizerOnOff) {
139 if (buttonView.getId() == R.id.virtReleaseButton) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSignalClusterView.java75 mWifiGroup = (ViewGroup) findViewById(R.id.wifi_combo);
76 mWifi = (ImageView) findViewById(R.id.wifi_signal);
77 mWifiActivity = (ImageView) findViewById(R.id.wifi_inout);
78 mMobileGroup = (ViewGroup) findViewById(R.id.mobile_combo);
79 mMobile = (ImageView) findViewById(R.id.mobile_signal);
80 mMobileActivity = (ImageView) findViewById(R.id.mobile_inout);
81 mMobileType = (ImageView) findViewById(R.id.mobile_type);
82 mSpacer = findViewById(R.id.spacer);
83 mAirplane = (ImageView) findViewById(R.id.airplane);
/frameworks/base/services/java/com/android/server/
H A DNsdService.java78 /* A map from unique id to client info */
266 int id;
298 id = getUniqueId();
299 if (discoverServices(id, servInfo.getServiceType())) {
301 Slog.d(TAG, "Discover " + msg.arg2 + " " + id +
304 storeRequestMap(msg.arg2, id, clientInfo);
307 stopServiceDiscovery(id);
317 id = clientInfo.mClientIds.get(msg.arg2).intValue();
323 removeRequestMap(msg.arg2, id, clientInfo);
324 if (stopServiceDiscovery(id)) {
[all...]
/frameworks/base/core/tests/coretests/src/android/accessibilityservice/
H A DInterrogationActivityTest.java102 .findAccessibilityNodeInfoByViewIdInActiveWindow(R.id.button5);
198 .findAccessibilityNodeInfoByViewIdInActiveWindow(R.id.root);
237 .findAccessibilityNodeInfoByViewIdInActiveWindow(R.id.button5);
245 .findAccessibilityNodeInfoByViewIdInActiveWindow(R.id.button5);
261 .findAccessibilityNodeInfoByViewIdInActiveWindow(R.id.button5);
269 .findAccessibilityNodeInfoByViewIdInActiveWindow(R.id.button5);
277 .findAccessibilityNodeInfoByViewIdInActiveWindow(R.id.button5);
294 .findAccessibilityNodeInfoByViewIdInActiveWindow(R.id.button5);
302 .findAccessibilityNodeInfoByViewIdInActiveWindow(R.id.button5);
318 .findAccessibilityNodeInfoByViewIdInActiveWindow(R.id
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCamera2Device.h38 Camera2Device(int id);
72 * immediately if the latest request received by the HAL has this id.
88 int *id);
94 status_t createReprocessStreamFromStream(int outputId, int *id);
99 status_t getStreamInfo(int id,
105 status_t setStreamTransform(int id, int transform);
111 status_t deleteStream(int id);
117 status_t deleteReprocessStream(int id);
170 status_t triggerAutofocus(uint32_t id);
177 status_t triggerCancelAutofocus(uint32_t id);
[all...]
H A DCamera2Device.cpp35 Camera2Device::Camera2Device(int id): argument
36 mId(id),
40 ALOGV("%s: Created device for camera %d", __FUNCTION__, id);
46 ALOGV("%s: Tearing down for camera id %d", __FUNCTION__, mId);
238 uint32_t width, uint32_t height, int format, size_t size, int *id) {
253 *id = stream->getId();
259 status_t Camera2Device::createReprocessStreamFromStream(int outputId, int *id) { argument
289 *id = stream->getId();
296 status_t Camera2Device::getStreamInfo(int id, argument
304 if ((*streamI)->getId() == id) {
237 createStream(sp<ANativeWindow> consumer, uint32_t width, uint32_t height, int format, size_t size, int *id) argument
322 setStreamTransform(int id, int transform) argument
344 deleteStream(int id) argument
370 deleteReprocessStream(int id) argument
496 triggerAutofocus(uint32_t id) argument
509 triggerCancelAutofocus(uint32_t id) argument
522 triggerPrecaptureMetering(uint32_t id) argument
715 waitForDequeue(int32_t id, nsecs_t timeout) argument
989 uint32_t id; local
1363 uint32_t id; local
[all...]
/frameworks/base/core/java/android/net/http/
H A DSslCertificate.java442 ((TextView) certificateView.findViewById(com.android.internal.R.id.to_common))
444 ((TextView) certificateView.findViewById(com.android.internal.R.id.to_org))
446 ((TextView) certificateView.findViewById(com.android.internal.R.id.to_org_unit))
450 ((TextView) certificateView.findViewById(com.android.internal.R.id.serial_number))
456 ((TextView) certificateView.findViewById(com.android.internal.R.id.by_common))
458 ((TextView) certificateView.findViewById(com.android.internal.R.id.by_org))
460 ((TextView) certificateView.findViewById(com.android.internal.R.id.by_org_unit))
466 ((TextView) certificateView.findViewById(com.android.internal.R.id.issued_on))
471 ((TextView) certificateView.findViewById(com.android.internal.R.id.expires_on))
475 ((TextView) certificateView.findViewById(com.android.internal.R.id
[all...]
H A DLoggingEventHandler.java78 public void error(int id, String description) { argument
80 HttpLog.v("LoggingEventHandler: error() called Id:" + id +
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DRecentApplicationsDialog.java110 mIcons[0] = (TextView)findViewById(com.android.internal.R.id.button0);
111 mIcons[1] = (TextView)findViewById(com.android.internal.R.id.button1);
112 mIcons[2] = (TextView)findViewById(com.android.internal.R.id.button2);
113 mIcons[3] = (TextView)findViewById(com.android.internal.R.id.button3);
114 mIcons[4] = (TextView)findViewById(com.android.internal.R.id.button4);
115 mIcons[5] = (TextView)findViewById(com.android.internal.R.id.button5);
116 mIcons[6] = (TextView)findViewById(com.android.internal.R.id.button6);
117 mIcons[7] = (TextView)findViewById(com.android.internal.R.id.button7);
118 mNoAppsText = findViewById(com.android.internal.R.id.no_applications_message);
202 if (tag.info.id >
[all...]
/frameworks/ex/photoviewer/src/com/android/ex/photo/fragments/
H A DPhotoViewFragment.java186 mPhotoView = (PhotoView) view.findViewById(R.id.photo_view);
191 mPhotoPreviewAndProgress = view.findViewById(R.id.photo_preview);
192 mPhotoPreviewImage = (ImageView) view.findViewById(R.id.photo_preview_image);
194 (ProgressBar) view.findViewById(R.id.indeterminate_progress);
196 (ProgressBar) view.findViewById(R.id.determinate_progress);
198 mEmptyText = (TextView) view.findViewById(R.id.empty_text);
199 mRetryButton = (ImageView) view.findViewById(R.id.retry_button);
247 public Loader<Bitmap> onCreateLoader(int id, Bundle args) { argument
248 switch (id) {
265 final int id
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
H A DPhotoViewFragment.java192 mPhotoView = (PhotoView) view.findViewById(R.id.photo_view);
198 mPhotoPreviewAndProgress = view.findViewById(R.id.photo_preview);
199 mPhotoPreviewImage = (ImageView) view.findViewById(R.id.photo_preview_image);
201 (ProgressBar) view.findViewById(R.id.indeterminate_progress);
203 (ProgressBar) view.findViewById(R.id.determinate_progress);
205 mEmptyText = (TextView) view.findViewById(R.id.empty_text);
206 mRetryButton = (ImageView) view.findViewById(R.id.retry_button);
254 public Loader<Bitmap> onCreateLoader(int id, Bundle args) { argument
258 switch (id) {
275 final int id
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbStorageActivity.java124 mIcon = (ImageView) findViewById(com.android.internal.R.id.icon);
125 mBanner = (TextView) findViewById(com.android.internal.R.id.banner);
126 mMessage = (TextView) findViewById(com.android.internal.R.id.message);
128 mMountButton = (Button) findViewById(com.android.internal.R.id.mount_button);
130 mUnmountButton = (Button) findViewById(com.android.internal.R.id.unmount_button);
132 mProgressBar = (ProgressBar) findViewById(com.android.internal.R.id.progress);
213 public Dialog onCreateDialog(int id, Bundle args) { argument
214 switch (id) {
237 private void scheduleShowDialog(final int id) { argument
242 removeDialog(id);
[all...]
/frameworks/av/media/libstagefright/include/
H A DID3.h48 Iterator(const ID3 &parent, const char *id);
52 void getID(String8 *id) const;
/frameworks/base/core/java/android/app/
H A DListFragment.java46 * id "@android:id/list" (or {@link android.R.id#list} if it's in code)
50 * id "android:empty". Note that when an empty view is present, the list view
66 * &lt;ListView android:id=&quot;@id/android:list&quot;
73 * &lt;TextView android:id=&quot;@id/android:empty&quot;
109 * &lt;TextView android:id=&quot;@+id/text
230 onListItemClick(ListView l, View v, int position, long id) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DSeekBarDialogPreference.java56 final ImageView iconView = (ImageView) view.findViewById(android.R.id.icon);
65 return (SeekBar) dialogView.findViewById(com.android.internal.R.id.seekbar);
/frameworks/base/core/java/android/widget/
H A DTwoLineListItem.java30 * {@link android.R.id#text1 text1}
31 * and {@link android.R.id#text2 text2}. There is an optional third View element with the
32 * ID {@link android.R.id#selectedIcon selectedIcon}, which can be any View subclass
72 mText1 = (TextView) findViewById(com.android.internal.R.id.text1);
73 mText2 = (TextView) findViewById(com.android.internal.R.id.text2);

Completed in 300 milliseconds

1234567891011>>