Searched defs:source (Results 376 - 400 of 468) sorted by relevance

<<111213141516171819

/frameworks/base/core/java/android/widget/
H A DLinearLayout.java1907 public LayoutParams(ViewGroup.MarginLayoutParams source) { argument
1908 super(source);
1913 * and gravity of the source.
1915 * @param source The layout params to copy from.
1917 public LayoutParams(LayoutParams source) { argument
1918 super(source);
1920 this.weight = source.weight;
1921 this.gravity = source.gravity;
H A DRelativeLayout.java219 // with MeasureSpec value overflow and RelativeLayout was one source of them.
1344 public LayoutParams(ViewGroup.LayoutParams source) { argument
1345 super(source);
1351 public LayoutParams(ViewGroup.MarginLayoutParams source) { argument
1352 super(source);
1357 * of the source.
1359 * @param source The layout params to copy from.
1361 public LayoutParams(LayoutParams source) { argument
1362 super(source);
1364 this.mIsRtlCompatibilityMode = source
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java822 public LayoutParams(ViewGroup.LayoutParams source) { argument
823 super(source);
826 public LayoutParams(ViewGroup.MarginLayoutParams source) { argument
827 super(source);
H A DResolverDrawerLayout.java778 public LayoutParams(LayoutParams source) { argument
779 super(source);
780 this.alwaysShow = source.alwaysShow;
781 this.ignoreOffset = source.ignoreOffset;
784 public LayoutParams(MarginLayoutParams source) { argument
785 super(source);
788 public LayoutParams(ViewGroup.LayoutParams source) { argument
789 super(source);
/frameworks/base/core/jni/
H A Dandroid_view_MotionEvent.cpp335 jint deviceId, jint source, jint action, jint flags, jint edgeFlags,
372 event->initialize(deviceId, source, action, flags, edgeFlags, metaState, buttonState,
441 jlong nativePtr, jint source) {
443 event->setSource(source);
333 android_view_MotionEvent_nativeInitialize(JNIEnv* env, jclass clazz, jlong nativePtr, jint deviceId, jint source, jint action, jint flags, jint edgeFlags, jint metaState, jint buttonState, jfloat xOffset, jfloat yOffset, jfloat xPrecision, jfloat yPrecision, jlong downTimeNanos, jlong eventTimeNanos, jint pointerCount, jobjectArray pointerPropertiesObjArray, jobjectArray pointerCoordsObjArray) argument
440 android_view_MotionEvent_nativeSetSource(JNIEnv* env, jclass clazz, jlong nativePtr, jint source) argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaExtractor.cpp59 JavaDataSourceBridge(JNIEnv *env, jobject source) { argument
60 mDataSource = env->NewGlobalRef(source);
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp303 GLuint ShaderProgram::CompileShader(GLenum shader_type, const char* source) { argument
304 LOG_FRAME("Compiling source:\n[%s]", source);
309 // Compile source
310 glShaderSource(shader, 1, &source, NULL);
319 ALOGE("%s", source);
320 std::string src(source);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPageContentRepository.java90 public void open(ParcelFileDescriptor source, final OpenDocumentCallback callback) { argument
96 mRenderer.open(source, callback);
458 public void open(ParcelFileDescriptor source, OpenDocumentCallback callback) { argument
465 mOpenTask = new OpenTask(source, callback);
657 public OpenTask(ParcelFileDescriptor source, OpenDocumentCallback callback) { argument
658 mSource = source;
831 ParcelFileDescriptor source = pipe[0];
841 BitmapSerializeUtils.readBitmapPixels(bitmap, source);
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java131 * If the source does not care about the tile size, it should use
598 RectF source = mSourceRect;
601 source.set(0, 0, mTileSize, mTileSize);
618 if (drawTile(tile, canvas, source, target)) {
626 source.set(tx * scaleX, ty * scaleY, (tx + size) * scaleX,
628 canvas.drawTexture(mPreview, source, target);
633 Tile tile, GLCanvas canvas, RectF source, RectF target) {
636 canvas.drawTexture(tile, source, target);
646 source.left /= 2f;
647 source
632 drawTile( Tile tile, GLCanvas canvas, RectF source, RectF target) argument
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_FlpHardwareProvider.cpp589 uint32_t source,
604 source,
587 GeofenceMonitorStatusCallback( int32_t status, uint32_t source, FlpLocation* lastLocation) argument
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java1140 * @param source The phone number to format
1146 public static String formatNumber(String source) { argument
1147 SpannableStringBuilder text = new SpannableStringBuilder(source);
1156 * @param source the phone number to format
1164 public static String formatNumber(String source, int defaultFormattingType) { argument
1165 SpannableStringBuilder text = new SpannableStringBuilder(source);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java428 throw new IllegalArgumentException("Expected 8 coordinates as source coordinates but "
436 throw new IllegalArgumentException("Expected 4x4 matrix for source transform!");
645 // Upload new source coordinates to GPU
687 private static int loadShader(int shaderType, String source) { argument
690 GLES20.glShaderSource(shader, source);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java55 /** The input source JAR to parse. */
74 * @param osJarPath The input source JARs to parse.
374 /** All classes found in the source JAR. */
392 * @param zipClasses All classes found in the source JAR.
619 public void visitSource(String source, String debug) { argument
H A DDependencyFinder.java70 * @param osJarPath The input source JARs to parse.
103 mLog.info("++++++ %d Entries found in source JARs", deps.size());
121 mLog.info("------ %d Entries missing from source JARs", missing.size());
499 public void visitSource(String source, String debug) { argument
/frameworks/native/include/input/
H A DInput.h63 * This input source flag is hidden from the API because switches are only used by the system
163 // Indicates that the input event is from a trusted source such as a directly attached
272 inline void setSource(int32_t source) { mSource = source; } argument
275 void initialize(int32_t deviceId, int32_t source);
314 int32_t source,
521 int32_t source,
556 static bool isTouchEvent(int32_t source, int32_t action);
/frameworks/native/libs/input/
H A DInputTransport.cpp242 int32_t source,
252 ALOGD("channel '%s' publisher ~ publishKeyEvent: seq=%u, deviceId=%d, source=0x%x, "
256 deviceId, source, action, flags, keyCode, scanCode, metaState, repeatCount,
269 msg.body.key.source = source;
284 int32_t source,
300 ALOGD("channel '%s' publisher ~ publishMotionEvent: seq=%u, deviceId=%d, source=0x%x, "
306 deviceId, source, action, flags, edgeFlags, metaState, buttonState,
325 msg.body.motion.source = source;
239 publishKeyEvent( uint32_t seq, 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
281 publishMotionEvent( uint32_t seq, 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, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
582 int32_t source = msg->body.motion.source; local
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaServiceStateTracker.java260 * Save current source of cdma subscription
261 * @param source - 1 for NV, 0 for RUIM
263 private void saveCdmaSubscriptionSource(int source) { argument
264 log("Storing cdma subscription source: " + source);
267 source );
544 // NV is ready when subscription source is NV
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java1391 String source, String target) {
1392 if (source != null && target != null && !source.equals(target)) {
1394 if (source.equals(overrides.valueAt(index))) {
1399 overrides.put(source, target);
1407 String source = sourceNames.get(i);
1409 setNameOverride(state.nameOverrides, source, target);
1418 String source = mSharedElementSourceNames.get(i);
1424 setNameOverride(state.nameOverrides, source, target);
1426 setNameOverride(state.nameOverrides, target, source);
1390 setNameOverride(ArrayMap<String, String> overrides, String source, String target) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java1348 public LayoutParams(LayoutParams source) { argument
1349 super(source);
1351 this.gravity = source.gravity;
1354 public LayoutParams(ViewGroup.LayoutParams source) { argument
1355 super(source);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarOverlayLayout.java808 public LayoutParams(ViewGroup.LayoutParams source) { argument
809 super(source);
812 public LayoutParams(ViewGroup.MarginLayoutParams source) { argument
813 super(source);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java1820 public LayoutParams(ViewGroup.MarginLayoutParams source) { argument
1821 super(source);
1826 * and gravity of the source.
1828 * @param source The layout params to copy from.
1830 public LayoutParams(LayoutParams source) { argument
1831 super(source);
1833 this.weight = source.weight;
1834 this.gravity = source.gravity;
/frameworks/av/media/libmedia/
H A DIAudioFlinger.cpp517 audio_source_t source,
530 data.writeInt32(source);
1140 audio_source_t source = (audio_source_t)data.readInt32(); local
1144 &device, address, source, flags);
512 openInput(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t *device, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp208 // | source |
225 attributes->source = (audio_source_t) parcel.readInt32();
781 // now set data source
787 const sp<IStreamSource> &source) {
789 player_type playerType = MediaPlayerFactory::getPlayerType(this, source);
795 // now set data source
796 setDataSource_post(p, p->setDataSource(source));
1318 // set data source
1373 // set data source
786 setDataSource( const sp<IStreamSource> &source) argument
H A DStagefrightRecorder.cpp115 ALOGE("Invalid audio source: %d", as);
132 ALOGE("Invalid video source: %d", vs);
891 ALOGE("audio source is not initialized");
985 ALOGE("Invalid audio source: %d", mAudioSource);
1020 // Must have exactly one source.
1028 sp<MediaSource> source; local
1031 source = createAudioSource();
1041 err = setupVideoEncoder(mediaSource, &source);
1048 mWriter->addSource(source);
1167 /* hardware codecs must support camera source met
1447 setupVideoEncoder( sp<MediaSource> cameraSource, sp<MediaSource> *source) argument
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp201 void NuPlayer::setDataSourceAsync(const sp<IStreamSource> &source) { argument
206 msg->setObject("source", new StreamingSource(notify, source));
237 sp<Source> source; local
239 source = new HTTPLiveSource(notify, httpService, url, headers);
241 source = new RTSPSource(
247 source = new RTSPSource(
259 source = genericSource;
261 ALOGE("Failed to set data source!");
264 msg->setObject("source", sourc
273 sp<GenericSource> source = local
[all...]

Completed in 522 milliseconds

<<111213141516171819