Searched refs:as (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/graphics/java/android/graphics/drawable/
H A DLevelListDrawable.java47 * <p>With this XML saved into the res/drawable/ folder of the project, it can be referenced as
210 LevelListState as = new LevelListState(state, this, res);
211 mLevelListState = as;
212 setConstantState(as);
H A DAnimationDrawable.java32 * which can be used as a View object's background.
35 * file, placed in the res/drawable/ folder, and set it as the background to a View object. Then, call
340 AnimationState as = new AnimationState(state, this, res);
341 mAnimationState = as;
342 setConstantState(as);
H A DStateListDrawable.java301 StateListState as = new StateListState(state, this, res);
302 mStateListState = as;
303 setConstantState(as);
H A DLayerDrawable.java59 * @param layers A list of drawables to use as layers in this new drawable.
94 LayerState as = createConstantState(state, res);
95 mLayerState = as;
96 if (as.mNum > 0) {
166 * @param layer The drawable to add as a layer.
/frameworks/base/graphics/jni/
H A DAndroid.mk4 # from the simulator as well, and so in turn librs_jni needs to be
/frameworks/base/include/media/
H A DIMediaRecorder.h37 virtual status_t setAudioSource(int as) = 0;
H A DMediaRecorderBase.h32 virtual status_t setAudioSource(audio_source as) = 0;
H A DPVMediaRecorder.h36 virtual status_t setAudioSource(audio_source as);
H A Dmediarecorder.h131 // The codes are distributed as follow:
161 status_t setAudioSource(int as);
/frameworks/base/media/libmediaplayerservice/
H A DMediaRecorderClient.h34 virtual status_t setAudioSource(int as);
H A DStagefrightRecorder.h34 virtual status_t setAudioSource(audio_source as);
H A DMediaRecorderClient.cpp98 status_t MediaRecorderClient::setAudioSource(int as) argument
100 LOGV("setAudioSource(%d)", as);
109 return mRecorder->setAudioSource((audio_source)as);
H A DStagefrightRecorder.cpp55 status_t StagefrightRecorder::setAudioSource(audio_source as) { argument
56 mAudioSource = as;
111 // We don't actually support this at all, as the media_server process
/frameworks/base/awt/java/awt/font/
H A DTextLayout.java154 AttributedString as = new AttributedString(string);
155 as.addAttribute(TextAttribute.FONT, font);
156 this.breaker = new TextRunBreaker(as.getIterator(), frc);
190 AttributedString as = new AttributedString(string);
191 as.addAttributes(attributes, 0, string.length());
192 this.breaker = new TextRunBreaker(as.getIterator(), frc);
743 * Gets the outline of this TextLayout as a Shape.
748 * @return the outline of this TextLayout as a Shape.
763 * Gets the visible advance of this TextLayout which is defined as diffence
867 * point (between two characters) is corresponds to a hit (such as
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp86 // The reference is only used as a proxy for callbacks.
177 android_media_MediaRecorder_setAudioSource(JNIEnv *env, jobject thiz, jint as) argument
179 LOGV("setAudioSource(%d)", as);
180 if (as < AUDIO_SOURCE_DEFAULT || as >= AUDIO_SOURCE_LIST_END) {
186 process_media_recorder_call(env, mr->setAudioSource(as), "java/lang/RuntimeException", "setAudioSource failed.");
/frameworks/base/media/libmedia/
H A DIMediaRecorder.cpp100 status_t setAudioSource(int as) argument
102 LOGV("setAudioSource(%d)", as);
105 data.writeInt32(as);
336 int as = data.readInt32(); local
337 reply->writeInt32(setAudioSource(as));
H A Dmediarecorder.cpp140 status_t MediaRecorder::setAudioSource(int as) argument
142 LOGV("setAudioSource(%d)", as);
163 status_t ret = mMediaRecorder->setAudioSource(as);
/frameworks/base/libs/rs/
H A DAndroid.mk73 # from the simulator as well.
/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp77 // Add us as the head of the list
205 // 'cause we don't want 565 predithered, since as a 9patch, we know
547 AutoFDSeek as(descriptor);
555 /* make a deep copy of the asset, and return it as a stream, or NULL if there

Completed in 525 milliseconds