Searched refs:source (Results 51 - 75 of 257) sorted by relevance

1234567891011

/packages/apps/DocumentsUI/src/com/android/documentsui/prefs/
H A DPrefsBackupHelper.java63 private void copyMatchingPreferences(SharedPreferences source, Editor destination) { argument
64 for (Map.Entry<String, ?> preference : source.getAll().entrySet()) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DRenderingRequest.java50 public static void post(Context context, Bitmap source, ImagePreset preset, argument
52 RenderingRequest.post(context, source, preset, type, caller, null, null);
55 public static void post(Context context, Bitmap source, ImagePreset preset, int type, argument
58 && type != GEOMETRY_RENDERING && type != FILTERS_RENDERING) && source == null)
60 Log.v(LOGTAG, "something null: source: " + source
71 bitmap = pipeline.renderGeometryIcon(source, preset);
75 source.getWidth(), source.getHeight(), BitmapCache.RENDERING_REQUEST);
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
H A DPinWidgetFlowHandler.java75 public PinWidgetFlowHandler createFromParcel(Parcel source) {
76 return new PinWidgetFlowHandler(source);
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DActivityResultInfo.java62 public ActivityResultInfo createFromParcel(Parcel source) {
63 return new ActivityResultInfo(source);
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/preprovisioning/anim/
H A DColorMatcherTest.java45 private void assertCorrect(int source, int expected) { argument
46 int actual = mColorMatcher.findClosestColor(source);
/packages/apps/Protips/
H A DAndroid.mk6 # Only compile source java files in this apk.
/packages/apps/Settings/src/com/android/settings/applications/
H A DFetchPackageStorageAsyncLoader.java42 public FetchPackageStorageAsyncLoader(Context context, @NonNull StorageStatsSource source, argument
45 mSource = Preconditions.checkNotNull(source);
/packages/apps/Settings/src/com/android/settings/search/
H A DInlineSwitchPayload.java42 * @param source of the setting. Used to determine where to get and set the setting.
47 public InlineSwitchPayload(String key, @SettingsSource int source, argument
49 super(key, source, intent, isDeviceSupported, defaultValue);
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/audio/
H A DMpegTsMediaCodecAudioTrackRenderer.java47 SampleSource source,
51 super(source, mediaCodecSelector, eventHandler, eventListener);
46 MpegTsMediaCodecAudioTrackRenderer( SampleSource source, MediaCodecSelector mediaCodecSelector, Handler eventHandler, EventListener eventListener) argument
/packages/apps/Tag/
H A DAndroid.mk10 # Only compile source java files in this apk.
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/exchange/
H A DExchangeAttachment.java61 public ExchangeAttachment createFromParcel(Parcel source) {
62 return new ExchangeAttachment(source);
/packages/experimental/Bummer/
H A DAndroid.mk6 # Only compile source java files in this apk.
/packages/experimental/DreamTheater/
H A DAndroid.mk6 # Only compile source java files in this apk.
/packages/providers/BlockedNumberProvider/
H A DAndroid.mk6 # Only compile source java files in this apk.
/packages/providers/BlockedNumberProvider/tests/
H A DAndroid.mk13 # Only compile source java files in this apk.
/packages/providers/CallLogProvider/tests/
H A DAndroid.mk11 # Only compile source java files in this apk.
/packages/screensavers/Basic/
H A DAndroid.mk6 # Only compile source java files in this apk.
/packages/screensavers/PhotoTable/
H A DAndroid.mk6 # Only compile source java files in this apk.
/packages/screensavers/WebView/
H A DAndroid.mk6 # Only compile source java files in this apk.
/packages/services/BuiltInPrintService/src/com/android/bips/util/
H A DFileUtils.java43 /** Copy files from source to target, closing each stream when done */
44 public static void copy(InputStream source, OutputStream target) throws IOException { argument
45 try (InputStream in = source; OutputStream out = target) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DSpannableStringUtils.java36 * <code>source</code> to the region
38 * Spans in <code>source</code> that begin before <code>start</code>
49 public static void copyNonParagraphSuggestionSpansFrom(Spanned source, int start, int end, argument
51 Object[] spans = source.getSpans(start, end, SuggestionSpan.class);
54 int fl = source.getSpanFlags(spans[i]);
62 int st = source.getSpanStart(spans[i]);
63 int en = source.getSpanEnd(spans[i]);
/packages/apps/TV/tuner/src/com/android/tv/tuner/source/
H A DTunerTsStreamerManager.java17 package com.android.tv.tuner.source;
73 TsDataSource source = streamer.createDataSource();
76 mSourceToStreamerMap.put(source, streamer);
77 return source;
90 TsDataSource source = streamer.createDataSource();
92 mSourceToStreamerMap.put(source, streamer);
93 return source;
104 synchronized void releaseDataSource(TsDataSource source, int sessionId, boolean reuse) { argument
107 streamer = mSourceToStreamerMap.get(source);
108 mSourceToStreamerMap.remove(source);
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DGLES11Canvas.java387 public void drawTexture(BasicTexture texture, RectF source, RectF target) { argument
391 mDrawTextureSourceRect.set(source);
393 source = mDrawTextureSourceRect;
399 convertCoordinate(source, target, texture);
400 setTextureCoords(source);
416 // This function changes the source coordinate to the texture coordinates.
417 // It also clips the source and target coordinates if it is beyond the
419 private static void convertCoordinate(RectF source, RectF target, argument
427 source.left /= texWidth;
428 source
511 drawMixed(BasicTexture from, int toColor, float ratio, RectF source, RectF target) argument
701 setTextureCoords(RectF source) argument
[all...]
/packages/apps/Dialer/java/com/android/voicemail/impl/
H A DVoicemail.java33 private final String source; field in class:Voicemail
46 String source,
57 this.source = source;
77 * <p>The id and source data fields are mandatory for update - id is necessary for updating the
78 * database and source data is necessary for updating the server.
214 * Returns the package name of the source that added this voicemail, or null if this field is not
218 return source;
278 writeCharSequence(dest, source);
322 source
40 Voicemail( Long timestamp, String number, PhoneAccountHandle phoneAccountHandle, Long id, Long duration, String source, String providerData, Uri uri, Boolean isRead, Boolean hasContent, String transcription) argument
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DPointerSpeedPreference.java151 public SavedState(Parcel source) { argument
152 super(source);
153 progress = source.readInt();
154 oldSpeed = source.readInt();

Completed in 536 milliseconds

1234567891011