Searched refs:source (Results 226 - 250 of 257) sorted by relevance

1234567891011

/packages/apps/Settings/src/com/android/settings/applications/appops/
H A DAppOpsState.java87 @Override public OpsTemplate createFromParcel(Parcel source) {
88 return new OpsTemplate(source);
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/audio/
H A DMpegTsDefaultAudioTrackRenderer.java137 SampleSource source,
143 mSource = source.register();
136 MpegTsDefaultAudioTrackRenderer( SampleSource source, MediaCodecSelector selector, Handler eventHandler, EventListener listener, boolean hasSoftwareAudioDecoder, boolean usePassthrough) argument
/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
H A DTunerRecordingSessionWorker.java51 import com.android.tv.tuner.source.TsDataSource;
52 import com.android.tv.tuner.source.TsDataSourceManager;
419 // Since tuning might be happened a while ago, shifts the start position of tuned source.
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DMessage.java351 public Message createFromParcel(Parcel source) {
352 return new Message(source);
H A DSettings.java420 public Settings createFromParcel(Parcel source) {
421 return new Settings(source);
H A DAttachment.java733 public Attachment createFromParcel(Parcel source) {
734 return new Attachment(source);
/packages/services/Car/car-lib/
H A DAndroid.mk122 # Make sure to run droiddoc first to generate the stub source files.
/packages/apps/TV/tuner/src/com/android/tv/tuner/source/
H A DFileTsStreamer.java17 package com.android.tv.tuner.source;
57 // Virtual frequency base used for file-based source
H A DTunerTsStreamer.java17 package com.android.tv.tuner.source;
/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallController.java612 * so we will only trigger an update of the call information if the source of the extras
616 * @param source The source of the extras change ({@link Call#SOURCE_CONNECTION_SERVICE} or
621 public void onExtrasChanged(Call call, int source, Bundle extras) {
623 if (source == Call.SOURCE_INCALL_SERVICE) {
633 * so we will only trigger an update of the call information if the source of the extras
636 * @param source The source of the extras change ({@link Call#SOURCE_CONNECTION_SERVICE} or
641 public void onExtrasRemoved(Call call, int source, List<String> keys) {
643 if (source
[all...]
/packages/apps/Contacts/tests/src/com/android/contacts/model/
H A DRawContactDeltaListTests.java579 final AccountType source = getAccountType();
581 RawContactModifier.ensureKindExists(bobContact, source, Phone.CONTENT_ITEM_TYPE);
592 RawContactModifier.trimEmpty(bobContact, source);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderListFragment.java1110 * @param source List of drawer items representing folders to add to the drawer
1116 private void addFolderDivision(List<DrawerItem> destination, List<DrawerItem> source, argument
1118 if (source.size() > 0) {
1124 destination.addAll(source);
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/services/
H A DFileOperationServiceTest.java418 public TestFileOperation createFromParcel(Parcel source) {
/packages/apps/TV/tuner/tests/unittests/javatests/com/android/tv/tuner/
H A DZappingTimeTest.java37 import com.android.tv.tuner.source.TsDataSourceManager;
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/input/
H A DInputTestFragment.java88 return String.format("Event{source = %s, keycode = %s, key%s}\n",
89 event.source,
109 return String.format("Event{source = HAL, keycode = %s, key%s}\n",
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DMailbox.java858 public Mailbox createFromParcel(Parcel source) {
859 return new Mailbox(source);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayout.java3233 public LayoutParams(ViewGroup.LayoutParams source) { argument
3234 super(source);
3239 public LayoutParams(LayoutParams source) { argument
3240 super(source);
3241 this.cellX = source.cellX;
3242 this.cellY = source.cellY;
3243 this.cellHSpan = source.cellHSpan;
3244 this.cellVSpan = source.cellVSpan;
/packages/apps/TV/src/com/android/tv/guide/
H A DProgramTableAdapter.java778 Html.fromHtml(criticScore.source, Html.FROM_HTML_MODE_LEGACY));
780 criticScoreSource.setText(Html.fromHtml(criticScore.source));
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationActionUtils.java500 final long localMessageId, final long when, final int source,
511 mSource = source;
497 NotificationAction(final NotificationActionType notificationActionType, final Account account, final Conversation conversation, final Message message, final Folder folder, final long conversationId, final String messageId, final long localMessageId, final long when, final int source, final int notificationId) argument
H A DNotificationUtils.java903 // Amend the click intent with a hint that its source was a notification,
1788 final Bitmap source = BitmapFactory.decodeStream(inputStream);
1789 if (source != null) {
1791 contactIconInfo.icon = Bitmap.createScaledBitmap(source, idealIconWidth,
1794 contactIconInfo.wearableBg = Bitmap.createScaledBitmap(source,
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DFileUtils.java547 * This method copies the contents of the specified source file
555 * @throws NullPointerException if source or destination is null
556 * @throws IOException if source or destination is invalid
567 * This method copies the contents of the specified source file
577 * @throws NullPointerException if source or destination is <code>null</code>
578 * @throws IOException if source or destination is invalid
596 * This method copies the contents of the specified source file to the
604 * @throws NullPointerException if source or destination is <code>null</code>
605 * @throws IOException if source or destination is invalid
616 * This method copies the contents of the specified source fil
955 copyURLToFile(URL source, File destination) argument
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java4620 int source = getDisplayNameSourceForMimeTypeId(mimeType);
4622 if (source == DisplayNameSources.STRUCTURED_NAME) {
4632 // source score to STRUCTURED_PHONETIC_NAME.
4633 source = DisplayNameSources.STRUCTURED_PHONETIC_NAME;
4637 if (source < bestDisplayNameSource || source == DisplayNameSources.UNDEFINED) {
4641 if (source == bestDisplayNameSource
4669 bestDisplayNameSource = source;
4676 bestDisplayNameSource = source;
4688 bestDisplayNameSource = source;
[all...]
/packages/services/BuiltInPrintService/jni/lib/
H A DwprintJNI.c1134 static char *copyToNewString(JNIEnv *env, jstring source) { argument
1138 fromJava = (*env)->GetStringUTFChars(env, source, NULL);
1143 (*env)->ReleaseStringUTFChars(env, source, fromJava);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DActionModeHandler.java225 public boolean onShareTargetSelected(ShareActionProvider source, Intent intent) {
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationItemView.java1398 final String source = (sourceOpt != null) ? sourceOpt : "checkbox";
1399 Analytics.getInstance().sendEvent("enter_cab_mode", source, null, 0);

Completed in 489 milliseconds

1234567891011