Searched refs:get (Results 1 - 25 of 1237) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp1741 // get the content sample rate
1783 static_cast<android::AudioSfDecoder*>(ap->mAPlayer.get());
1811 static_cast<android::AudioSfDecoder*>(ap->mAPlayer.get());
1847 static_cast<android::AudioSfDecoder*>(ap->mAPlayer.get());
1884 static_cast<android::AudioSfDecoder*>(ap->mAPlayer.get());
1920 static_cast<android::AudioSfDecoder*>(ap->mAPlayer.get());
2230 android::StreamPlayer* splr = static_cast<android::StreamPlayer*>(ap->mAPlayer.get());
2244 android::StreamPlayer* splr = static_cast<android::StreamPlayer*>(ap->mAPlayer.get());
H A DMediaPlayer_to_android.cpp432 ((android::LocAVPlayer*)mp->mAVPlayer.get())->setDataSource(
437 ((android::LocAVPlayer*)mp->mAVPlayer.get())->setDataSource(
585 android::GenericPlayer* avp = mp->mAVPlayer.get();
701 android::StreamPlayer* splr = static_cast<android::StreamPlayer*>(mp->mAVPlayer.get());
710 android::StreamPlayer* splr = static_cast<android::StreamPlayer*>(mp->mAVPlayer.get());
H A DVideoCodec_to_android.cpp67 if (omx.get() == NULL) {
81 // get the number of profiles and levels for the first codec implementation
H A Dandroid_AudioSfDecoder.cpp674 static_cast<NuCachedSource2 *>(mDataSource.get());
689 // data is buffered up to the end of the stream, it can't get any better than this
H A Dandroid_GenericMediaPlayer.cpp302 if (mVideoSurfaceTexture.get() == surfaceTexture.get()) {
/frameworks/wilhelm/src/
H A Dhandler_bodies.c118 android::GenericPlayer* avp = mp->mAVPlayer.get();
/frameworks/wilhelm/tests/sandbox/
H A Dnativewindow.cpp75 return surface.get();
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DQueryController.java67 if(event.getText().get(0) != null)
68 mLastActivityName = event.getText().get(0).toString();
74 if(event.getText().get(0) != null)
75 mLastTraversedText = event.getText().get(0).toString();
165 * Gets the root node from accessibility and if it fails to get one it will
H A DUiDevice.java146 * and call this method to get the text from each traversed element.
443 UiWatcher watcher = mWatchers.get(watcherName);
H A DUiSelector.java531 UiSelector selector = (UiSelector)mSelectorAttributes.get(UiSelector.SELECTOR_CHILD, null);
539 (UiSelector)mSelectorAttributes.get(UiSelector.SELECTOR_PATTERN, null);
547 (UiSelector)mSelectorAttributes.get(UiSelector.SELECTOR_CONTAINER, null);
555 (UiSelector) mSelectorAttributes.get(UiSelector.SELECTOR_PARENT, null);
566 return (String) mSelectorAttributes.get(criterion, null);
570 return (Boolean) mSelectorAttributes.get(criterion, false);
574 return (Integer) mSelectorAttributes.get(criterion, 0);
717 (Integer)mSelectorAttributes.get(UiSelector.SELECTOR_INSTANCE);
722 currentSelectorCounter = (Integer)mSelectorAttributes.get(UiSelector.SELECTOR_COUNT);
786 UiSelector child = (UiSelector)mSelectorAttributes.get(UiSelecto
[all...]
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestRunner.java168 + results.get(key));
191 + results.get(key));
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DMatrix2f.java67 public float get(int x, int y) { method in class:Matrix2f
141 float rhs_ij = rhs.get(i,j);
142 ri0 += lhs.get(j,0) * rhs_ij;
143 ri1 += lhs.get(j,1) * rhs_ij;
H A DMatrix3f.java67 public float get(int x, int y) { method in class:Matrix3f
216 float rhs_ij = rhs.get(i,j);
217 ri0 += lhs.get(j,0) * rhs_ij;
218 ri1 += lhs.get(j,1) * rhs_ij;
219 ri2 += lhs.get(j,2) * rhs_ij;
H A DMatrix4f.java67 public float get(int x, int y) { method in class:Matrix4f
233 float rhs_ij = rhs.get(i,j);
234 ri0 += lhs.get(j,0) * rhs_ij;
235 ri1 += lhs.get(j,1) * rhs_ij;
236 ri2 += lhs.get(j,2) * rhs_ij;
237 ri3 += lhs.get(j,3) * rhs_ij;
H A DScript.java59 KernelID k = mKIDs.get(slot);
102 FieldID f = mFIDs.get(slot);
H A DScriptGroup.java177 final ConnectLine cl = n.mOutputs.get(ct);
200 mNodes.get(ct2).mSeen = false;
202 Node n = mNodes.get(ct);
211 if (s == mNodes.get(ct).mScript) {
212 return mNodes.get(ct);
220 Node n = mNodes.get(ct);
222 if (k == n.mKernels.get(ct2)) {
345 Node n = mNodes.get(ct);
347 final Script.KernelID kid = n.mKernels.get(ct2);
353 if (n.mInputs.get(ct
[all...]
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdScriptGroup.cpp67 if (n->mInputs[ct3]->mDstKernel.get() == k) {
68 ain = n->mInputs[ct3]->mAlloc.get();
74 ain = sg->mInputs[ct3]->mAlloc.get();
80 if (n->mOutputs[ct3]->mSource.get() == k) {
81 aout = n->mOutputs[ct3]->mAlloc.get();
87 aout = sg->mOutputs[ct3]->mAlloc.get();
/frameworks/support/renderscript/v8/rs_support/
H A DrsAllocation.cpp409 rsc->mHal.funcs.allocation.resize(rsc, this, t.get(), mHal.state.hasReferences);
410 setType(t.get());
H A DrsContext.cpp72 uint32_t ret = runScript(mRootScript.get());
H A DrsElement.cpp210 mHal.state.fields[ctNoPadding] = mFields[ct].e.get();
265 if ((ee->mFields[i].e.get() != ein[i]) ||
H A DrsElement.h97 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();}
130 return elem.get();
139 return elem.get();
H A DrsMatrix2x2.cpp49 const float rhs_ij = ((const Matrix2x2 *)rhs)->get(i, j);
50 ri0 += ((const Matrix2x2 *)lhs)->get(j, 0) * rhs_ij;
51 ri1 += ((const Matrix2x2 *)lhs)->get(j, 1) * rhs_ij;
H A DrsMatrix2x2.h28 inline float get(uint32_t x, uint32_t y) const { function in struct:android::renderscript::Matrix2x2
H A DrsMatrix3x3.cpp54 const float rhs_ij = ((const Matrix3x3 *)rhs)->get(i, j);
55 ri0 += ((const Matrix3x3 *)lhs)->get(j, 0) * rhs_ij;
56 ri1 += ((const Matrix3x3 *)lhs)->get(j, 1) * rhs_ij;
57 ri2 += ((const Matrix3x3 *)lhs)->get(j, 2) * rhs_ij;
70 temp = get(i, j);
71 set(i, j, get(j, i));
H A DrsMatrix3x3.h28 inline float get(uint32_t x, uint32_t y) const { function in struct:android::renderscript::Matrix3x3

Completed in 138 milliseconds

1234567891011>>