Searched refs:vs (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/tools/localize/
H A DValues.cpp8 const string& i, int ix, XMLNode* v, const int ve, const string& vs,
17 versionString(vs),
7 StringResource(const SourcePos& p, const string& f, const Configuration& c, const string& i, int ix, XMLNode* v, const int ve, const string& vs, const string& cmnt) argument
/frameworks/base/include/media/
H A DIMediaRecorder.h36 virtual status_t setVideoSource(int vs) = 0;
H A DPVMediaRecorder.h38 status_t setVideoSource(video_source vs);
H A Dmediarecorder.h156 status_t setVideoSource(int vs);
/frameworks/base/media/libmediaplayerservice/
H A DMediaRecorderClient.h33 virtual status_t setVideoSource(int vs);
H A DMediaRecorderClient.cpp74 status_t MediaRecorderClient::setVideoSource(int vs) argument
76 LOGV("setVideoSource(%d)", vs);
84 return mRecorder->setVideoSource((video_source)vs);
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp165 android_media_MediaRecorder_setVideoSource(JNIEnv *env, jobject thiz, jint vs) argument
167 LOGV("setVideoSource(%d)", vs);
168 if (vs < VIDEO_SOURCE_DEFAULT || vs >= VIDEO_SOURCE_LIST_END) {
173 process_media_recorder_call(env, mr->setVideoSource(vs), "java/lang/RuntimeException", "setVideoSource failed.");
/frameworks/base/media/libmedia/
H A DIMediaRecorder.cpp90 status_t setVideoSource(int vs) argument
92 LOGV("setVideoSource(%d)", vs);
95 data.writeInt32(vs);
335 int vs = data.readInt32(); local
336 reply->writeInt32(setVideoSource(vs));
H A Dmediarecorder.cpp106 status_t MediaRecorder::setVideoSource(int vs) argument
108 LOGV("setVideoSource(%d)", vs);
129 status_t ret = mMediaRecorder->setVideoSource(vs);
/frameworks/base/libs/surfaceflinger/DisplayHardware/
H A DDisplayHardwareBase.cpp174 struct vt_stat vs; local
175 res = ioctl(fd, VT_GETSTATE, &vs);
251 this->prev_vt_num = vs.v_active;
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dsimd.h217 #define VECTOR_ATTRIBUTE(mode,vs) __attribute__((vector_size(vs)))
219 #define VECTOR_ATTRIBUTE(mode,vs)
/frameworks/base/core/java/android/widget/
H A DTextView.java5481 int vs = mScrollY;
5483 if (top - vs < vslack)
5484 vs = top - vslack;
5485 if (bottom - vs > vspace - vslack)
5486 vs = bottom - (vspace - vslack);
5487 if (ht - vs < vspace)
5488 vs = ht - vspace;
5489 if (0 - vs > 0)
5490 vs = 0;
5552 if (hs != mScrollX || vs !
[all...]

Completed in 124 milliseconds