Searched refs:id (Results 126 - 150 of 2251) sorted by relevance

1234567891011>>

/frameworks/base/core/java/com/android/internal/app/
H A DHeavyWeightSwitcherActivity.java75 setIconAndText(R.id.old_app_icon, R.id.old_app_action, R.id.old_app_description,
77 setIconAndText(R.id.new_app_icon, R.id.new_app_action, R.id.new_app_description,
80 View button = findViewById((R.id.switch_old));
82 button = findViewById((R.id.switch_new));
84 button = findViewById((R.id.cancel));
93 void setText(int id, CharSequenc argument
97 setDrawable(int id, Drawable dr) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DViewsStateBundle.java32 * Maintains a bundle of states for a group of views. Each view must have a unique id to identify
37 * Vertical list maintains id->bundle mapping of all it's children (even the children is offscreen
64 public void remove(int id) { argument
66 mChildStates.remove(getSaveStatesKey(id));
147 * Load view from states, it's none operation if the there is no state associated with the id.
150 * @param id unique id for the view within this ViewsStateBundle
152 public final void loadView(View view, int id) { argument
154 String key = getSaveStatesKey(id);
168 * @param id uniqu
170 saveViewUnchecked(View view, int id) argument
187 saveOnScreenView(Bundle bundle, View view, int id) argument
206 saveOffscreenView(View view, int id) argument
220 getSaveStatesKey(int id) argument
[all...]
/frameworks/support/v7/appcompat/tests/src/android/support/v7/widget/
H A DAppCompatTextViewTest.java53 (AppCompatTextView) mContainer.findViewById(R.id.text_view_caps1);
55 (AppCompatTextView) mContainer.findViewById(R.id.text_view_caps2);
66 onView(withId(R.id.text_view_caps1)).perform(
71 onView(withId(R.id.text_view_caps2)).perform(
81 (AppCompatTextView) mContainer.findViewById(R.id.text_view_app_allcaps_false);
88 final TextView textView = (TextView) mContainer.findViewById(R.id.view_text_color_hex);
94 final TextView textView = (TextView) mContainer.findViewById(R.id.view_text_color_csl);
96 onView(withId(R.id.view_text_color_csl)).perform(setEnabled(true));
100 onView(withId(R.id.view_text_color_csl)).perform(setEnabled(false));
107 final TextView textView = (TextView) mContainer.findViewById(R.id
[all...]
/frameworks/base/core/java/android/view/
H A DVelocityTracker.java29 * and {@link #getYVelocity(int)} to retrieve the velocity for each pointer id.
45 private static native float nativeGetXVelocity(long ptr, int id); argument
46 private static native float nativeGetYVelocity(long ptr, int id); argument
47 private static native boolean nativeGetEstimator(long ptr, int id, Estimator outEstimator); argument
180 * @param id Which pointer's velocity to return.
183 public float getXVelocity(int id) { argument
184 return nativeGetXVelocity(mPtr, id);
191 * @param id Which pointer's velocity to return.
194 public float getYVelocity(int id) { argument
195 return nativeGetYVelocity(mPtr, id);
212 getEstimator(int id, Estimator outEstimator) argument
[all...]
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DContentLoadingProgressBarActivity.java61 mBar = (ContentLoadingProgressBar)findViewById(R.id.progressbar);
62 mShowButton = (Button)findViewById(R.id.show);
64 mHideButton = (Button)findViewById(R.id.hide);
67 mShowText = (TextView)findViewById(R.id.show_text);
68 mShowTextDone = (TextView)findViewById(R.id.show_text_done);
69 mHideText = (TextView)findViewById(R.id.hide_text);
70 mHideTextDone = (TextView)findViewById(R.id.hide_text_done);
80 case R.id.show:
85 case R.id.hide:
/frameworks/support/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DBottomNavigationViewUsage.java41 Button buttonDisable = (Button) findViewById(R.id.button_disable);
43 (BottomNavigationView) findViewById(R.id.bottom_navigation);
51 Button buttonAdd = (Button) findViewById(R.id.button_add);
61 Button buttonRemove = (Button) findViewById(R.id.button_remove);
68 Button buttonTint = (Button) findViewById(R.id.button_tint);
79 final TextView selectedItem = (TextView) findViewById(R.id.selected_item);
85 case R.id.action_search:
88 case R.id.action_settings:
91 case R.id.action_music:
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DContentLoadingProgressBarActivity.java61 mBar = (ContentLoadingProgressBar)findViewById(R.id.progressbar);
62 mShowButton = (Button)findViewById(R.id.show);
64 mHideButton = (Button)findViewById(R.id.hide);
67 mShowText = (TextView)findViewById(R.id.show_text);
68 mShowTextDone = (TextView)findViewById(R.id.show_text_done);
69 mHideText = (TextView)findViewById(R.id.hide_text);
70 mHideTextDone = (TextView)findViewById(R.id.hide_text_done);
80 case R.id.show:
85 case R.id.hide:
/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DBottomNavigationViewUsage.java41 Button buttonDisable = (Button) findViewById(R.id.button_disable);
43 (BottomNavigationView) findViewById(R.id.bottom_navigation);
51 Button buttonAdd = (Button) findViewById(R.id.button_add);
61 Button buttonRemove = (Button) findViewById(R.id.button_remove);
68 Button buttonTint = (Button) findViewById(R.id.button_tint);
79 final TextView selectedItem = (TextView) findViewById(R.id.selected_item);
85 case R.id.action_search:
88 case R.id.action_settings:
91 case R.id.action_music:
/frameworks/av/services/camera/libcameraservice/device3/
H A DStatusTracker.h60 void removeComponent(int id);
66 void markComponentIdle(int id, const sp<Fence>& componentFence);
69 void markComponentActive(int id);
82 void markComponent(int id, ComponentState state,
91 int id; member in struct:android::camera3::StatusTracker::StateChange
/frameworks/base/core/tests/coretests/src/android/widget/
H A DDatePickerFocusTest.java48 mDatePicker = (DatePicker) mActivity.findViewById(R.id.datePicker);
62 assertViewHasFocus(com.android.internal.R.id.date_picker_header_year);
64 assertViewHasFocus(com.android.internal.R.id.prev);
66 assertViewHasFocus(com.android.internal.R.id.next);
68 assertViewHasFocus(com.android.internal.R.id.day_picker_view_pager);
70 assertViewHasFocus(R.id.belowPicker);
72 assertViewHasFocus(com.android.internal.R.id.day_picker_view_pager);
74 assertViewHasFocus(com.android.internal.R.id.next);
76 assertViewHasFocus(com.android.internal.R.id.prev);
78 assertViewHasFocus(com.android.internal.R.id
86 assertViewHasFocus(final int id) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DDragHandleUtils.java40 onHandleView(com.android.internal.R.id.selection_start_handle)
44 onHandleView(com.android.internal.R.id.selection_end_handle)
53 public static ViewInteraction onHandleView(int id) argument
55 return onView(allOf(withId(id), isAssignableFrom(Editor.HandleView.class)))
56 .inRoot(withDecorView(hasDescendant(withId(id))));
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DFocusAfterRemoval.java38 final LinearLayout left = (LinearLayout) findViewById(R.id.leftLayout);
41 Button topLeftButton = (Button) findViewById(R.id.topLeftButton);
51 Button bottomLeftButton = (Button) findViewById(R.id.bottomLeftButton);
60 final Button topRightButton = (Button) findViewById(R.id.topRightButton);
69 final Button bottomRightButton = (Button) findViewById(R.id.bottomRightButton);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewFlipperActivity.java39 ViewFlipper flipper = (ViewFlipper) widget.findViewById(R.id.flipper);
43 ((ImageView) view.findViewById(R.id.widget_image)).setImageResource(R.drawable.sunset1);
44 ((TextView) view.findViewById(R.id.widget_text)).setText("This is a long line of text, "
49 ((ImageView) view.findViewById(R.id.widget_image)).setImageResource(R.drawable.sunset3);
50 ((TextView) view.findViewById(R.id.widget_text)).setText("Another very long line of text, "
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/view/
H A DCardViewActivity.java112 mInfoText = (TextView) findViewById(R.id.info_text);
113 mCardView = (CardView) findViewById(R.id.card_view);
114 mCornerRadiusSeekBar = (SeekBar) findViewById(R.id.corner_radius_seek_bar);
118 mWidthSeekBar = (SeekBar) findViewById(R.id.width_seek_bar);
123 mHeightSeekBar = (SeekBar) findViewById(R.id.height_seek_bar);
127 mElevationSeekBar = (SeekBar) findViewById(R.id.elevation_seek_bar);
131 mMaxElevationSeekBar = (SeekBar) findViewById(R.id.max_elevation_seek_bar);
135 mAlphaSeekBar = (SeekBar) findViewById(R.id.alpha_seek_bar);
139 RadioGroup rb = (RadioGroup) findViewById(R.id.select_target_radio);
143 mResizeCardView = checkedId == R.id
171 getColorId(int id) argument
[all...]
/frameworks/support/percent/tests/java/android/support/percent/
H A DPercentDynamicLayoutTest.java108 onView(withId(R.id.percent_layout)).check(doesNotExist());
109 onView(withId(R.id.percent_stub)).perform(
114 R.id.percent_layout);
123 final View child1 = percentFrameLayout.findViewById(R.id.child1);
124 final View child2 = percentFrameLayout.findViewById(R.id.child2);
138 onView(withId(R.id.percent_layout)).check(doesNotExist());
139 onView(withId(R.id.percent_stub)).perform(
144 R.id.percent_layout);
153 final View child1 = percentFrameLayout.findViewById(R.id.child1);
154 final View child2 = percentFrameLayout.findViewById(R.id
[all...]
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/view/
H A DCardViewActivity.java112 mInfoText = (TextView) findViewById(R.id.info_text);
113 mCardView = (CardView) findViewById(R.id.card_view);
114 mCornerRadiusSeekBar = (SeekBar) findViewById(R.id.corner_radius_seek_bar);
118 mWidthSeekBar = (SeekBar) findViewById(R.id.width_seek_bar);
123 mHeightSeekBar = (SeekBar) findViewById(R.id.height_seek_bar);
127 mElevationSeekBar = (SeekBar) findViewById(R.id.elevation_seek_bar);
131 mMaxElevationSeekBar = (SeekBar) findViewById(R.id.max_elevation_seek_bar);
135 mAlphaSeekBar = (SeekBar) findViewById(R.id.alpha_seek_bar);
139 RadioGroup rb = (RadioGroup) findViewById(R.id.select_target_radio);
143 mResizeCardView = checkedId == R.id
171 getColorId(int id) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DVectorEnabledTintResources.java64 public Drawable getDrawable(int id) throws NotFoundException { argument
67 return AppCompatDrawableManager.get().onDrawableLoadedFromResources(context, this, id);
69 return super.getDrawable(id);
73 final Drawable superGetDrawable(int id) { argument
74 return super.getDrawable(id);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsic3DLUT.java35 protected ScriptIntrinsic3DLUT(long id, RenderScript rs, Element e) { argument
36 super(id, rs);
54 long id;
58 id = rs.nScriptIntrinsicCreate(8, e.getID(rs), mUseIncSupp);
60 ScriptIntrinsic3DLUT si = new ScriptIntrinsic3DLUT(id, rs, e);
H A DScriptIntrinsicBlur.java35 protected ScriptIntrinsicBlur(long id, RenderScript rs) { argument
36 super(id, rs);
55 long id;
59 id = rs.nScriptIntrinsicCreate(5, e.getID(rs), mUseIncSupp);
61 ScriptIntrinsicBlur si = new ScriptIntrinsicBlur(id, rs);
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp134 const sp<SurfaceComposerClient>& client, const sp<IBinder>& id);
141 sp<IBinder> getBuiltInDisplay(int32_t id);
143 status_t setPosition(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
145 status_t setSize(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
147 status_t setLayer(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
149 status_t setFlags(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
152 const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
154 status_t setAlpha(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
156 status_t setMatrix(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
159 status_t setCrop(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
208 getBuiltInDisplay(int32_t id) argument
261 getLayerStateLocked( const sp<SurfaceComposerClient>& client, const sp<IBinder>& id) argument
278 setPosition(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, float x, float y) argument
290 setSize(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, uint32_t w, uint32_t h) argument
306 setLayer(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, uint32_t z) argument
317 setFlags(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, uint32_t flags, uint32_t mask) argument
335 setTransparentRegionHint( const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, const Region& transparentRegion) argument
347 setAlpha(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, float alpha) argument
358 setLayerStack(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, uint32_t layerStack) argument
369 setMatrix(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, float dsdx, float dtdx, float dsdy, float dtdy) argument
386 setCrop(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, const Rect& crop) argument
397 setFinalCrop(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, const Rect& crop) argument
409 deferTransactionUntil( const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, const sp<IBinder>& handle, uint64_t frameNumber) argument
423 setOverrideScalingMode( const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, int32_t overrideScalingMode) argument
450 setGeometryAppliesWithResize( const sp<SurfaceComposerClient>& client, const sp<IBinder>& id) argument
603 getBuiltInDisplay(int32_t id) argument
657 setCrop(const sp<IBinder>& id, const Rect& crop) argument
661 setFinalCrop(const sp<IBinder>& id, const Rect& crop) argument
666 setPosition(const sp<IBinder>& id, float x, float y) argument
670 setSize(const sp<IBinder>& id, uint32_t w, uint32_t h) argument
674 setLayer(const sp<IBinder>& id, uint32_t z) argument
678 hide(const sp<IBinder>& id) argument
684 show(const sp<IBinder>& id) argument
690 setFlags(const sp<IBinder>& id, uint32_t flags, uint32_t mask) argument
695 setTransparentRegionHint(const sp<IBinder>& id, const Region& transparentRegion) argument
700 setAlpha(const sp<IBinder>& id, float alpha) argument
704 setLayerStack(const sp<IBinder>& id, uint32_t layerStack) argument
708 setMatrix(const sp<IBinder>& id, float dsdx, float dtdx, float dsdy, float dtdy) argument
713 deferTransactionUntil(const sp<IBinder>& id, const sp<IBinder>& handle, uint64_t frameNumber) argument
718 setOverrideScalingMode( const sp<IBinder>& id, int32_t overrideScalingMode) argument
724 setGeometryAppliesWithResize( const sp<IBinder>& id) argument
784 setActiveConfig(const sp<IBinder>& display, int id) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DConnectionService.java139 String id,
145 args.arg2 = id;
291 final String id = (String) args.arg2;
296 Log.d(this, "Enqueueing pre-init request %s", id);
302 id,
311 id,
446 String id = mIdByConference.get(conference);
449 mAdapter.setActive(id);
452 mAdapter.setOnHold(id);
462 String id
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java198 ContextType(int id) { argument
199 mID = id;
276 native void rsnContextSendMessage(long con, int id, int[] data); argument
277 synchronized void nContextSendMessage(int id, int[] data) { argument
279 rsnContextSendMessage(mContext, id, data);
398 native void rsnObjDestroy(long con, long id); argument
399 void nObjDestroy(long id) { argument
404 rsnObjDestroy(mContext, id);
418 native void rsnElementGetNativeData(long con, long id, int[] elementData); argument
419 synchronized void nElementGetNativeData(long id, in argument
423 rsnElementGetSubElements(long con, long id, long[] IDs, String[] names, int[] arraySizes) argument
425 nElementGetSubElements(long id, long[] IDs, String[] names, int[] arraySizes) argument
435 rsnTypeGetNativeData(long con, long id, long[] typeData) argument
436 nTypeGetNativeData(long id, long[] typeData) argument
535 rsnAllocationData1D(long con, long id, int off, int mip, int count, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
537 nAllocationData1D(long id, int off, int mip, int count, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
543 rsnAllocationElementData(long con,long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
544 nAllocationElementData(long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
569 rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
572 nAllocationData2D(long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
579 rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b) argument
580 nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) argument
603 rsnAllocationData3D(long con, long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
606 nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
614 rsnAllocationRead(long con, long id, Object d, int dt, int mSize, boolean usePadding) argument
615 nAllocationRead(long id, Object d, Element.DataType dt, int mSize, boolean usePadding) argument
620 rsnAllocationRead1D(long con, long id, int off, int mip, int count, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
622 nAllocationRead1D(long id, int off, int mip, int count, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
628 rsnAllocationElementRead(long con,long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
630 nAllocationElementRead(long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
636 rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
639 nAllocationRead2D(long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
646 rsnAllocationRead3D(long con, long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
649 nAllocationRead3D(long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
656 rsnAllocationGetType(long con, long id) argument
657 nAllocationGetType(long id) argument
662 rsnAllocationResize1D(long con, long id, int dimX) argument
663 nAllocationResize1D(long id, int dimX) argument
674 rsnAllocationAdapterOffset(long con, long id, int x, int y, int z, int mip, int face, int a1, int a2, int a3, int a4) argument
676 nAllocationAdapterOffset(long id, int x, int y, int z, int mip, int face, int a1, int a2, int a3, int a4) argument
740 rsnScriptInvoke(long con, long id, int slot) argument
741 nScriptInvoke(long id, int slot) argument
746 rsnScriptForEach(long con, long id, int slot, long[] ains, long aout, byte[] params, int[] limits) argument
749 nScriptForEach(long id, int slot, long[] ains, long aout, byte[] params, int[] limits) argument
755 rsnScriptReduce(long con, long id, int slot, long[] ains, long aout, int[] limits) argument
757 nScriptReduce(long id, int slot, long ains[], long aout, int[] limits) argument
763 rsnScriptInvokeV(long con, long id, int slot, byte[] params) argument
764 nScriptInvokeV(long id, int slot, byte[] params) argument
769 rsnScriptSetVarI(long con, long id, int slot, int val) argument
770 nScriptSetVarI(long id, int slot, int val) argument
774 rsnScriptGetVarI(long con, long id, int slot) argument
775 nScriptGetVarI(long id, int slot) argument
780 rsnScriptSetVarJ(long con, long id, int slot, long val) argument
781 nScriptSetVarJ(long id, int slot, long val) argument
785 rsnScriptGetVarJ(long con, long id, int slot) argument
786 nScriptGetVarJ(long id, int slot) argument
791 rsnScriptSetVarF(long con, long id, int slot, float val) argument
792 nScriptSetVarF(long id, int slot, float val) argument
796 rsnScriptGetVarF(long con, long id, int slot) argument
797 nScriptGetVarF(long id, int slot) argument
801 rsnScriptSetVarD(long con, long id, int slot, double val) argument
802 nScriptSetVarD(long id, int slot, double val) argument
806 rsnScriptGetVarD(long con, long id, int slot) argument
807 nScriptGetVarD(long id, int slot) argument
811 rsnScriptSetVarV(long con, long id, int slot, byte[] val) argument
812 nScriptSetVarV(long id, int slot, byte[] val) argument
816 rsnScriptGetVarV(long con, long id, int slot, byte[] val) argument
817 nScriptGetVarV(long id, int slot, byte[] val) argument
821 rsnScriptSetVarVE(long con, long id, int slot, byte[] val, long e, int[] dims) argument
823 nScriptSetVarVE(long id, int slot, byte[] val, long e, int[] dims) argument
828 rsnScriptSetVarObj(long con, long id, int slot, long val) argument
829 nScriptSetVarObj(long id, int slot, long val) argument
841 rsnScriptIntrinsicCreate(long con, int id, long eid) argument
842 nScriptIntrinsicCreate(int id, long eid) argument
945 rsnMeshGetVertexBufferCount(long con, long id) argument
946 nMeshGetVertexBufferCount(long id) argument
950 rsnMeshGetIndexCount(long con, long id) argument
951 nMeshGetIndexCount(long id) argument
955 rsnMeshGetVertices(long con, long id, long[] vtxIds, int vtxIdCount) argument
956 nMeshGetVertices(long id, long[] vtxIds, int vtxIdCount) argument
960 rsnMeshGetIndices(long con, long id, long[] idxIds, int[] primitives, int vtxIdCount) argument
961 nMeshGetIndices(long id, long[] idxIds, int[] primitives, int vtxIdCount) argument
966 rsnScriptIntrinsicBLAS_Single(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, long A, long B, float beta, long C, int incX, int incY, int KL, int KU) argument
970 nScriptIntrinsicBLAS_Single(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, long A, long B, float beta, long C, int incX, int incY, int KL, int KU) argument
978 rsnScriptIntrinsicBLAS_Double(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, long A, long B, double beta, long C, int incX, int incY, int KL, int KU) argument
982 nScriptIntrinsicBLAS_Double(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, long A, long B, double beta, long C, int incX, int incY, int KL, int KU) argument
990 rsnScriptIntrinsicBLAS_Complex(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY, int KL, int KU) argument
994 nScriptIntrinsicBLAS_Complex(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY, int KL, int KU) argument
1002 rsnScriptIntrinsicBLAS_Z(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU) argument
1006 nScriptIntrinsicBLAS_Z(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU) argument
1014 rsnScriptIntrinsicBLAS_BNNM(long con, long id, int M, int N, int K, long A, int a_offset, long B, int b_offset, long C, int c_offset, int c_mult_int) argument
1017 nScriptIntrinsicBLAS_BNNM(long id, int M, int N, int K, long A, int a_offset, long B, int b_offset, long C, int c_offset, int c_mult_int) argument
1177 sendMessage(int id, int[] data) argument
1222 Priority(int id) argument
[all...]
/frameworks/base/tools/aapt2/
H A DDebug.cpp45 if (symbol.symbol.id) {
46 std::cout << " (" << symbol.symbol.id.value() << ")";
65 if (parentRef.id) {
66 std::cout << parentRef.id.value();
80 if (entry.key.id) {
81 std::cout << "(" << entry.key.id.value() << ")";
108 if (attr.id) {
109 std::cout << "(" << attr.id.value() << ")";
124 if (package->id) {
125 std::cout << " id
[all...]
/frameworks/opt/net/wifi/service/lib/
H A Dwifi_hal_stub.cpp68 wifi_error wifi_set_iface_event_handler_stub(wifi_request_id id, argument
73 wifi_error wifi_reset_iface_event_handler_stub(wifi_request_id id, wifi_interface_handle iface) { argument
77 wifi_error wifi_start_gscan_stub(wifi_request_id id, wifi_interface_handle iface, argument
82 wifi_error wifi_stop_gscan_stub(wifi_request_id id, wifi_interface_handle iface) { argument
91 wifi_error wifi_set_bssid_hotlist_stub(wifi_request_id id, wifi_interface_handle iface, argument
96 wifi_error wifi_reset_bssid_hotlist_stub(wifi_request_id id, wifi_interface_handle iface) { argument
100 wifi_error wifi_set_significant_change_handler_stub(wifi_request_id id, wifi_interface_handle iface, argument
105 wifi_error wifi_reset_significant_change_handler_stub(wifi_request_id id, wifi_interface_handle iface) { argument
118 wifi_error wifi_get_link_stats_stub(wifi_request_id id, argument
134 wifi_error wifi_rtt_range_request_stub(wifi_request_id id, wifi_interface_handl argument
140 wifi_rtt_range_cancel_stub(wifi_request_id id, wifi_interface_handle iface, unsigned num_devices, mac_addr addr[]) argument
153 wifi_enable_responder_stub(wifi_request_id id, wifi_interface_handle iface, wifi_channel_info channel_hint, unsigned max_duration_seconds, wifi_channel_info* channel_used) argument
160 wifi_disable_responder_stub(wifi_request_id id, wifi_interface_handle iface) argument
178 wifi_set_epno_list_stub(int id, wifi_interface_info *iface, const wifi_epno_params *params, wifi_epno_handler handler) argument
183 wifi_reset_epno_list_stub(int id, wifi_interface_info *iface) argument
196 wifi_set_log_handler_stub(wifi_request_id id, wifi_interface_handle iface, wifi_ring_buffer_data_handler handler) argument
201 wifi_reset_log_handler_stub(wifi_request_id id, wifi_interface_handle iface) argument
205 wifi_set_alert_handler_stub(wifi_request_id id, wifi_interface_handle iface, wifi_alert_handler handler) argument
210 wifi_reset_alert_handler_stub(wifi_request_id id, wifi_interface_handle iface) argument
257 wifi_set_bssid_blacklist_stub(wifi_request_id id, wifi_interface_handle iface, wifi_bssid_params params) argument
262 wifi_start_sending_offloaded_packet_stub(wifi_request_id id, wifi_interface_handle iface, u8 *ip_packet, u16 ip_packet_len, u8 *src_mac_addr, u8 *dst_mac_addr, u32 period_msec) argument
268 wifi_stop_sending_offloaded_packet_stub(wifi_request_id id, wifi_interface_handle iface) argument
299 wifi_nan_enable_request_stub(transaction_id id, wifi_interface_handle iface, NanEnableRequest* msg) argument
305 wifi_nan_disable_request_stub(transaction_id id, wifi_interface_handle iface) argument
310 wifi_nan_publish_request_stub(transaction_id id, wifi_interface_handle iface, NanPublishRequest* msg) argument
316 wifi_nan_publish_cancel_request_stub(transaction_id id, wifi_interface_handle iface, NanPublishCancelRequest* msg) argument
322 wifi_nan_subscribe_request_stub(transaction_id id, wifi_interface_handle iface, NanSubscribeRequest* msg) argument
328 wifi_nan_subscribe_cancel_request_stub(transaction_id id, wifi_interface_handle iface, NanSubscribeCancelRequest* msg) argument
334 wifi_nan_transmit_followup_request_stub(transaction_id id, wifi_interface_handle iface, NanTransmitFollowupRequest* msg) argument
340 wifi_nan_stats_request_stub(transaction_id id, wifi_interface_handle iface, NanStatsRequest* msg) argument
346 wifi_nan_config_request_stub(transaction_id id, wifi_interface_handle iface, NanConfigRequest* msg) argument
352 wifi_nan_tca_request_stub(transaction_id id, wifi_interface_handle iface, NanTCARequest* msg) argument
358 wifi_nan_beacon_sdf_payload_request_stub(transaction_id id, wifi_interface_handle iface, NanBeaconSdfPayloadRequest* msg) argument
374 wifi_nan_get_capabilities_stub(transaction_id id, wifi_interface_handle iface) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_VelocityTracker.cpp53 void getVelocity(int32_t id, float* outVx, float* outVy);
54 bool getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator);
86 uint32_t id = idBits.clearFirstMarkedBit(); local
89 mVelocityTracker.getVelocity(id, &vx, &vy);
111 void VelocityTrackerState::getVelocity(int32_t id, float* outVx, float* outVy) { argument
112 if (id == ACTIVE_POINTER_ID) {
113 id = mVelocityTracker.getActivePointerId();
117 if (id >= 0 && id <= MAX_POINTER_ID && mCalculatedIdBits.hasBit(id)) {
135 getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator) argument
179 android_view_VelocityTracker_nativeGetXVelocity(JNIEnv* env, jclass clazz, jlong ptr, jint id) argument
187 android_view_VelocityTracker_nativeGetYVelocity(JNIEnv* env, jclass clazz, jlong ptr, jint id) argument
195 android_view_VelocityTracker_nativeGetEstimator(JNIEnv* env, jclass clazz, jlong ptr, jint id, jobject outEstimatorObj) argument
[all...]

Completed in 750 milliseconds

1234567891011>>