Searched refs:id (Results 151 - 175 of 890) sorted by relevance

1234567891011>>

/frameworks/base/graphics/java/android/renderscript/
H A DProgramVertex.java54 ProgramVertex(int id, RenderScript rs) { argument
55 super(id, rs);
148 int id = mRS.nProgramVertexCreate(mShader, texNames, tmp);
149 ProgramVertex pv = new ProgramVertex(id, mRS);
H A DScriptIntrinsicLUT.java35 private ScriptIntrinsicLUT(int id, RenderScript rs) { argument
36 super(id, rs);
58 int id = rs.nScriptIntrinsicCreate(3, e.getID(rs));
59 return new ScriptIntrinsicLUT(id, rs);
H A DProgram.java51 TextureType(int id) { argument
52 mID = id;
63 ProgramParam(int id) { argument
64 mID = id;
76 Program(int id, RenderScript rs) { argument
77 super(id, rs);
152 int id = a != null ? a.getID(mRS) : 0;
153 mRS.nProgramBindConstants(getID(mRS), slot, id);
174 int id = va != null ? va.getID(mRS) : 0;
175 mRS.nProgramBindTexture(getID(mRS), slot, id);
[all...]
H A DScript.java38 KernelID(int id, RenderScript rs, Script s, int slot, int sig) { argument
39 super(id, rs);
64 int id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
65 if (id == 0) {
69 k = new KernelID(id, mRS, this, slot, sig);
85 FieldID(int id, RenderScript rs, Script s, int slot) { argument
86 super(id, rs);
107 int id = mRS.nScriptFieldIDCreate(getID(mRS), slot);
108 if (id == 0) {
112 f = new FieldID(id, mR
170 Script(int id, RenderScript rs) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DLaunchWarningWindow.java45 ImageView icon = (ImageView)findViewById(R.id.replace_app_icon);
47 TextView text = (TextView)findViewById(R.id.replace_message);
50 icon = (ImageView)findViewById(R.id.original_app_icon);
52 text = (TextView)findViewById(R.id.original_message);
H A DBaseErrorDialog.java58 Button b = (Button)findViewById(R.id.button1);
62 b = (Button)findViewById(R.id.button2);
66 b = (Button)findViewById(R.id.button3);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewLayersActivity2.java38 setupList(R.id.list1);
39 setupList(R.id.list2);
40 setupList(R.id.list3);
42 findViewById(R.id.list1).setAlpha(0.7f);
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
H A DWebViewStubActivity.java32 mWebView = (WebView) findViewById(R.id.web_page);
/frameworks/native/include/ui/
H A DANativeObjectBase.h62 void incStrong(const void* id) const {
63 REF::incStrong(id);
65 void decStrong(const void* id) const {
66 REF::decStrong(id);
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicLUT.java33 private ScriptIntrinsicLUT(int id, RenderScript rs) { argument
34 super(id, rs);
56 int id = rs.nScriptIntrinsicCreate(3, e.getID(rs));
57 return new ScriptIntrinsicLUT(id, rs);
H A DScript.java38 KernelID(int id, RenderScript rs, Script s, int slot, int sig) { argument
39 super(id, rs);
64 int id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
65 if (id == 0) {
69 k = new KernelID(id, mRS, this, slot, sig);
85 FieldID(int id, RenderScript rs, Script s, int slot) { argument
86 super(id, rs);
107 int id = mRS.nScriptFieldIDCreate(getID(mRS), slot);
108 if (id == 0) {
112 f = new FieldID(id, mR
170 Script(int id, RenderScript rs) argument
[all...]
/frameworks/testing/uiautomator/library/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/av/media/mtp/
H A DMtpStorage.cpp35 MtpStorage::MtpStorage(MtpStorageID id, const char* filePath, argument
38 : mStorageID(id),
46 ALOGV("MtpStorage id: %d path: %s\n", id, filePath);
/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/rs/
H A DrsScriptIntrinsic.cpp82 RsScript rsi_ScriptIntrinsicCreate(Context *rsc, uint32_t id, RsElement ve) { argument
84 ALOGE("rsi_ScriptIntrinsicCreate %i", id);
85 if (!si->init(rsc, (RsScriptIntrinsicID)id, (Element *)ve)) {
/frameworks/support/renderscript/v8/rs_support/
H A DrsScriptIntrinsic.cpp82 RsScript rsi_ScriptIntrinsicCreate(Context *rsc, uint32_t id, RsElement ve) { argument
84 ALOGE("rsi_ScriptIntrinsicCreate %i", id);
85 if (!si->init(rsc, (RsScriptIntrinsicID)id, (Element *)ve)) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DSimUnlockScreen.java90 mHeaderText = (TextView) findViewById(R.id.headerText);
91 mPinText = (TextView) findViewById(R.id.pinDisplay);
92 mBackSpaceButton = findViewById(R.id.backspace);
95 mOkButton = (TextView) findViewById(R.id.ok);
319 mZero = (TextView) findViewById(R.id.zero);
320 mOne = (TextView) findViewById(R.id.one);
321 mTwo = (TextView) findViewById(R.id.two);
322 mThree = (TextView) findViewById(R.id.three);
323 mFour = (TextView) findViewById(R.id.four);
324 mFive = (TextView) findViewById(R.id
[all...]
/frameworks/base/core/java/android/app/
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/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/libs/hwui/
H A DTexture.h44 id = 0;
62 glBindTexture(renderTarget, id);
85 glBindTexture(renderTarget, id);
98 GLuint id; member in struct:android::uirenderer::Texture
150 glDeleteTextures(1, &mTexture->id);

Completed in 8742 milliseconds

1234567891011>>