Searched refs:source (Results 251 - 275 of 474) sorted by relevance

<<111213141516171819

/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java34 public static Object obtain(View source) { argument
35 return AccessibilityNodeInfo.obtain(source);
208 public static void setSource(Object info, View source) { argument
209 ((AccessibilityNodeInfo) info).setSource(source);
/frameworks/base/media/jni/
H A Dandroid_media_MediaExtractor.h43 status_t setDataSource(const sp<DataSource> &source);
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java582 public CompatibilityInfo createFromParcel(Parcel source) {
583 return new CompatibilityInfo(source);
591 private CompatibilityInfo(Parcel source) { argument
592 mCompatibilityFlags = source.readInt();
593 applicationDensity = source.readInt();
594 applicationScale = source.readFloat();
595 applicationInvertedScale = source.readFloat();
/frameworks/base/core/java/android/view/
H A DSurface.java45 public Surface createFromParcel(Parcel source) {
48 s.readFromParcel(source);
275 private native void nativeReadFromParcel(Parcel source); argument
705 public void readFromParcel(Parcel source) { argument
706 if (source == null) {
707 throw new IllegalArgumentException("source must not be null");
710 mName = source.readString();
711 nativeReadFromParcel(source);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp87 void NuPlayer::setDataSource(const sp<IStreamSource> &source) { argument
93 msg->setObject("source", new MP4Source(source));
95 msg->setObject("source", new StreamingSource(source));
121 sp<Source> source; local
123 source = new HTTPLiveSource(url, headers, mUIDValid, mUID);
125 source = new RTSPSource(url, headers, mUIDValid, mUID);
127 source = new GenericSource(url, headers, mUIDValid, mUID);
130 msg->setObject("source", sourc
137 sp<Source> source = new GenericSource(fd, offset, length); local
[all...]
H A DNuPlayerStreamListener.cpp31 const sp<IStreamSource> &source,
33 : mSource(source),
30 NuPlayerStreamListener( const sp<IStreamSource> &source, ALooper::handler_id id) argument
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h70 status_t setDataSource(const sp<IStreamSource> &source);
257 void setAudioSource(sp<MediaSource> source);
260 void setVideoSource(sp<MediaSource> source);
263 void addTextSource_l(size_t trackIndex, const sp<MediaSource>& source);
334 status_t selectAudioTrack_l(const sp<MediaSource>& source, size_t trackIndex);
/frameworks/base/core/java/android/database/
H A DCursorWindow.java129 private CursorWindow(Parcel source) { argument
130 mStartPos = source.readInt();
131 mWindowPtr = nativeCreateFromParcel(source);
680 public CursorWindow createFromParcel(Parcel source) {
681 return new CursorWindow(source);
/frameworks/base/services/input/
H A DInputDispatcher.cpp433 && (motionEntry->source & AINPUT_SOURCE_CLASS_POINTER)
528 if (motionEntry->source & AINPUT_SOURCE_CLASS_POINTER) {
648 entry->deviceId, entry->source, policyFlags,
796 ALOGD("%seventTime=%lld, deviceId=%d, source=0x%x, policyFlags=0x%x, "
800 entry->eventTime, entry->deviceId, entry->source, entry->policyFlags,
822 bool isPointerEvent = entry->source & AINPUT_SOURCE_CLASS_POINTER;
865 ALOGD("%seventTime=%lld, deviceId=%d, source=0x%x, policyFlags=0x%x, "
870 entry->eventTime, entry->deviceId, entry->source, entry->policyFlags,
1153 || mTouchState.source != entry->source
3831 KeyEntry(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState, int32_t repeatCount, nsecs_t downTime) argument
3863 MotionEntry(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, float xPrecision, float yPrecision, nsecs_t downTime, int32_t displayId, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
3929 isHovering(int32_t deviceId, uint32_t source, int32_t displayId) const argument
[all...]
/frameworks/base/core/java/android/app/
H A DIActivityManager.java402 public ContentProviderHolder createFromParcel(Parcel source) {
403 return new ContentProviderHolder(source);
411 private ContentProviderHolder(Parcel source) { argument
412 info = ProviderInfo.CREATOR.createFromParcel(source);
414 source.readStrongBinder());
415 connection = source.readStrongBinder();
416 noReleaseNeeded = source.readInt() != 0;
445 public WaitResult createFromParcel(Parcel source) {
446 return new WaitResult(source);
454 private WaitResult(Parcel source) { argument
[all...]
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp33 ID3::ID3(const sp<DataSource> &source) argument
39 mIsValid = parseV2(source);
42 mIsValid = parseV1(source);
75 bool ID3::parseV2(const sp<DataSource> &source) { argument
85 if (source->readAt(
144 if (source->readAt(sizeof(header), mData, mSize) != (ssize_t)mSize) {
815 bool ID3::parseV1(const sp<DataSource> &source) { argument
819 if (source->getSize(&size) != OK || size < (off64_t)V1_TAG_SIZE) {
824 if (source->readAt(size - V1_TAG_SIZE, mData, V1_TAG_SIZE)
/frameworks/base/core/java/android/text/
H A DSpannableStringInternal.java25 /* package */ SpannableStringInternal(CharSequence source, argument
27 if (start == 0 && end == source.length())
28 mText = source.toString();
30 mText = source.toString().substring(start, end);
36 if (source instanceof Spanned) {
37 Spanned sp = (Spanned) source;
/frameworks/base/include/androidfw/
H A DInput.h63 * This input source flag is hidden from the API because switches are only used by the system
141 // Indicates that the input event is from a trusted source such as a directly attached
249 inline void setSource(int32_t source) { mSource = source; } argument
252 void initialize(int32_t deviceId, int32_t source);
296 int32_t source,
503 int32_t source,
536 static bool isTouchEvent(int32_t source, int32_t action);
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingActivity.java343 private static Bitmap copyBitmap(Bitmap source) { argument
344 Bitmap b = Bitmap.createBitmap(source.getWidth(), source.getHeight(), source.getConfig());
346 c.drawBitmap(source, 0, 0, null);
347 source.recycle();
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A DImageProcessingActivity2.java338 private static Bitmap copyBitmap(Bitmap source) { argument
339 Bitmap b = Bitmap.createBitmap(source.getWidth(), source.getHeight(), source.getConfig());
341 c.drawBitmap(source, 0, 0, null);
342 source.recycle();
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp138 << " Build source blob: " << BuildInfo::GetBuildSourceBlob() << "\n"
157 Source *source = Source::CreateFromFile(pContext, input_bitcode); local
158 if (source == NULL) {
165 if (!result->mergeSource(*source, /* pPreserveSource */false)) {
168 delete source;
172 result = new (std::nothrow) Script(*source);
176 delete source;
/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.cpp65 void setRepeaterSource(const sp<RepeaterSource> &source);
248 const sp<RepeaterSource> &source) {
249 mRepeaterSource = source;
601 bool isVideo, const sp<MediaSource> &source, bool isRepeaterSource,
629 status_t err = convertMetaDataToMessage(source->getFormat(), &format);
654 sp<MediaPuller> puller = new MediaPuller(source, notify);
668 track->setRepeaterSource(static_cast<RepeaterSource *>(source.get()));
683 sp<SurfaceMediaSource> source = new SurfaceMediaSource(width(), height()); local
685 source->setUseAbsoluteTimestamps();
689 new RepeaterSource(source, 30.
247 setRepeaterSource( const sp<RepeaterSource> &source) argument
600 addSource( bool isVideo, const sp<MediaSource> &source, bool isRepeaterSource, bool usePCMAudio, size_t *numInputBuffers) argument
[all...]
H A DRepeaterSource.cpp15 RepeaterSource::RepeaterSource(const sp<MediaSource> &source, double rateHz) argument
17 mSource(source),
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DMediaBufferPuller.cpp29 MediaBufferPuller::MediaBufferPuller(const sp<MediaSource>& source) argument
30 : mSource(source),
/frameworks/av/media/libmedia/
H A DMediaScannerClient.cpp173 const char* source = mValues->getEntry(i); local
182 &source, (const char *)dest, NULL, NULL, NULL, NULL, TRUE, TRUE, &status);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightPlayer.cpp68 status_t StagefrightPlayer::setDataSource(const sp<IStreamSource> &source) { argument
69 return mPlayer->setDataSource(source);
/frameworks/av/media/libstagefright/
H A DJPEGSource.cpp54 JPEGSource::JPEGSource(const sp<DataSource> &source) argument
55 : mSource(source),
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp32 void ARTPAssembler::onPacketReceived(const sp<ARTPSource> &source) { argument
35 status = assembleMore(source);
/frameworks/base/core/java/android/content/
H A DClipDescription.java243 public ClipDescription createFromParcel(Parcel source) {
244 return new ClipDescription(source);
H A DSyncOperation.java42 public SyncOperation(Account account, int userId, int source, String authority, Bundle extras, argument
46 this.syncSource = source;

Completed in 794 milliseconds

<<111213141516171819