Searched refs:source (Results 276 - 300 of 474) sorted by relevance

<<111213141516171819

/frameworks/base/core/java/android/widget/
H A DAbsoluteLayout.java212 public LayoutParams(ViewGroup.LayoutParams source) { argument
213 super(source);
/frameworks/base/libs/androidfw/
H A DInput.cpp37 void InputEvent::initialize(int32_t deviceId, int32_t source) { argument
39 mSource = source;
123 int32_t source,
132 InputEvent::initialize(deviceId, source);
284 int32_t source,
299 InputEvent::initialize(deviceId, source);
561 bool MotionEvent::isTouchEvent(int32_t source, int32_t action) { argument
562 if (source & AINPUT_SOURCE_CLASS_POINTER) {
121 initialize( int32_t deviceId, int32_t source, int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState, int32_t repeatCount, nsecs_t downTime, nsecs_t eventTime) argument
282 initialize( int32_t deviceId, int32_t source, int32_t action, int32_t flags, int32_t edgeFlags, int32_t metaState, int32_t buttonState, float xOffset, float yOffset, float xPrecision, float yPrecision, nsecs_t downTime, nsecs_t eventTime, size_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
/frameworks/base/libs/hwui/
H A DProgram.cpp134 GLuint Program::buildShader(const char* source, GLenum type) { argument
136 glShaderSource(shader, 1, &source, 0);
/frameworks/base/tests/BiDiTests/
H A DAndroid.mk20 # Only compile source java files in this apk.
/frameworks/base/tools/layoutlib/bridge/tests/
H A DAndroid.mk19 # Only compile source java files in this lib.
/frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
H A DGL2JavaView.java95 private int loadShader(int shaderType, String source) { argument
98 GLES20.glShaderSource(shader, source);
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompatIcs.java186 public static void setSource(Object record, View source) { argument
187 ((AccessibilityRecord) record).setSource(source);
/frameworks/base/media/libdrm/mobile1/
H A DAndroid.mk20 # DRM 1.0 core source files
/frameworks/av/cmds/stagefright/
H A Dstream.cpp346 sp<IStreamSource> source; local
365 source = new MyStreamSource(fd);
369 source = new MyConvertingStreamSource(argv[1]);
375 if (player != NULL && player->setDataSource(source) == NO_ERROR) {
/frameworks/av/include/media/stagefright/
H A DAudioPlayer.h45 // Caller retains ownership of "source".
46 void setSource(const sp<MediaSource> &source);
H A DDataSource.h77 const sp<DataSource> &source, String8 *mimeType,
H A DMPEG2TSWriter.h38 virtual status_t addSource(const sp<MediaSource> &source);
/frameworks/av/include/media/stagefright/timedtext/
H A DTimedTextDriver.h49 size_t trackIndex, const sp<MediaSource>& source);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightPlayer.h41 virtual status_t setDataSource(const sp<IStreamSource> &source);
H A DMediaPlayerFactory.cpp121 const sp<IStreamSource> &source) {
122 GET_PLAYER_TYPE_IMPL(client, source);
228 const sp<IStreamSource> &source,
120 getPlayerType(const sp<IMediaPlayer>& client, const sp<IStreamSource> &source) argument
227 scoreFactory(const sp<IMediaPlayer>& client, const sp<IStreamSource> &source, float curScore) argument
/frameworks/av/media/libstagefright/rtsp/
H A DAAVCAssembler.cpp47 const sp<ARTPSource> &source) {
48 List<sp<ABuffer> > *queue = source->queue();
353 const sp<ARTPSource> &source) {
354 AssemblyStatus status = addNALUnit(source);
46 addNALUnit( const sp<ARTPSource> &source) argument
352 assembleMore( const sp<ARTPSource> &source) argument
H A DAMPEG4ElementaryAssembler.cpp207 const sp<ARTPSource> &source) {
208 List<sp<ABuffer> > *queue = source->queue();
400 const sp<ARTPSource> &source) {
401 AssemblyStatus status = addPacket(source);
206 addPacket( const sp<ARTPSource> &source) argument
399 assembleMore( const sp<ARTPSource> &source) argument
/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.h113 const sp<MediaSource> &source,
/frameworks/base/core/java/android/preference/
H A DVolumePreference.java187 public SavedState(Parcel source) { argument
188 super(source);
189 mVolumeStore.volume = source.readInt();
190 mVolumeStore.originalVolume = source.readInt();
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java139 public void publish(Logger source, String tag, Level level, String message) { argument
/frameworks/base/services/java/com/android/server/location/
H A DPassiveProvider.java95 public void setRequest(ProviderRequest request, WorkSource source) { argument
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DClassHasNativeVisitor.java98 public void visitSource(String source, String debug) { argument
/frameworks/ml/bordeaux/service/
H A DAndroid.mk6 # Only compile source java files in this apk.
60 # Only compile source java files in this apk.
/frameworks/av/libvideoeditor/lvpp/
H A DPreviewPlayer.h60 status_t setDataSource(const sp<IStreamSource> &source);
261 void setVideoSource(const sp<MediaSource>& source);
263 void setAudioSource(const sp<MediaSource>& source);
H A DVideoEditorSRC.cpp32 VideoEditorSRC::VideoEditorSRC(const sp<MediaSource> &source) { argument
33 ALOGV("VideoEditorSRC %p(%p)", this, source.get());
35 mSource = source;
230 ALOGV("getNextBuffer: source read returned INFO_FORMAT_CHANGED");

Completed in 244 milliseconds

<<111213141516171819