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

1234567891011>>

/frameworks/base/location/lib/java/com/android/location/provider/
H A DGmsFusedBatchOptions.java54 public void setSourceToUse(int source) { argument
55 mOptions.setSourceToUse(source);
58 public void resetSourceToUse(int source) { argument
59 mOptions.resetSourceToUse(source);
62 public boolean isSourceToUseSet(int source) { argument
63 return mOptions.isSourceToUseSet(source);
/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java845 public ApplicationInfo createFromParcel(Parcel source) {
846 return new ApplicationInfo(source);
853 private ApplicationInfo(Parcel source) { argument
854 super(source);
855 taskAffinity = source.readString();
856 permission = source.readString();
857 processName = source.readString();
858 className = source.readString();
859 theme = source.readInt();
860 flags = source
[all...]
H A DUserInfo.java182 public UserInfo createFromParcel(Parcel source) {
183 return new UserInfo(source);
190 private UserInfo(Parcel source) { argument
191 id = source.readInt();
192 name = source.readString();
193 iconPath = source.readString();
194 flags = source.readInt();
195 serialNumber = source.readInt();
196 creationTime = source.readLong();
197 lastLoggedInTime = source
[all...]
H A DPermissionInfo.java287 public PermissionInfo createFromParcel(Parcel source) {
288 return new PermissionInfo(source);
295 private PermissionInfo(Parcel source) { argument
296 super(source);
297 protectionLevel = source.readInt();
298 flags = source.readInt();
299 group = source.readString();
300 descriptionRes = source.readInt();
301 nonLocalizedDescription = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
H A DActivityInfo.java800 public ActivityInfo createFromParcel(Parcel source) {
801 return new ActivityInfo(source);
808 private ActivityInfo(Parcel source) { argument
809 super(source);
810 theme = source.readInt();
811 launchMode = source.readInt();
812 permission = source.readString();
813 taskAffinity = source.readString();
814 targetActivity = source.readString();
815 flags = source
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java426 public EditorInfo createFromParcel(Parcel source) {
428 res.inputType = source.readInt();
429 res.imeOptions = source.readInt();
430 res.privateImeOptions = source.readString();
431 res.actionLabel = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
432 res.actionId = source.readInt();
433 res.initialSelStart = source.readInt();
434 res.initialSelEnd = source.readInt();
435 res.initialCapsMode = source.readInt();
436 res.hintText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DParcelableCall.java266 public ParcelableCall createFromParcel(Parcel source) {
268 String id = source.readString();
269 int state = source.readInt();
270 DisconnectCause disconnectCause = source.readParcelable(classLoader);
272 source.readList(cannedSmsResponses, classLoader);
273 int capabilities = source.readInt();
274 int properties = source.readInt();
275 long connectTimeMillis = source.readLong();
276 Uri handle = source.readParcelable(classLoader);
277 int handlePresentation = source
[all...]
/frameworks/base/core/java/android/accounts/
H A DAuthenticatorDescription.java89 private AuthenticatorDescription(Parcel source) { argument
90 this.type = source.readString();
91 this.packageName = source.readString();
92 this.labelId = source.readInt();
93 this.iconId = source.readInt();
94 this.smallIconId = source.readInt();
95 this.accountPreferencesId = source.readInt();
96 this.customTokens = source.readByte() == 1;
136 public AuthenticatorDescription createFromParcel(Parcel source) {
137 return new AuthenticatorDescription(source);
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DSentenceSuggestionsInfo.java59 public SentenceSuggestionsInfo(Parcel source) { argument
60 final int infoSize = source.readInt();
62 source.readTypedArray(mSuggestionsInfos, SuggestionsInfo.CREATOR);
64 source.readIntArray(mOffsets);
66 source.readIntArray(mLengths);
135 public SentenceSuggestionsInfo createFromParcel(Parcel source) {
136 return new SentenceSuggestionsInfo(source);
H A DTextInfo.java87 public TextInfo(Parcel source) { argument
88 mCharSequence = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
89 mCookie = source.readInt();
90 mSequenceNumber = source.readInt();
144 public TextInfo createFromParcel(Parcel source) {
145 return new TextInfo(source);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java543 public Visibility(Visibility source) { argument
544 rssi5 = source.rssi5;
545 rssi24 = source.rssi24;
546 age24 = source.age24;
547 age5 = source.age5;
548 num24 = source.num24;
549 num5 = source.num5;
550 BSSID5 = source.BSSID5;
551 BSSID24 = source.BSSID24;
1432 public WifiConfiguration(WifiConfiguration source) { argument
[all...]
H A DWpsInfo.java72 public WpsInfo(WpsInfo source) { argument
73 if (source != null) {
74 setup = source.setup;
75 BSSID = source.BSSID;
76 pin = source.pin;
/frameworks/base/core/java/android/net/
H A DDhcpInfo.java40 public DhcpInfo(DhcpInfo source) { argument
41 if (source != null) {
42 ipAddress = source.ipAddress;
43 gateway = source.gateway;
44 netmask = source.netmask;
45 dns1 = source.dns1;
46 dns2 = source.dns2;
47 serverAddress = source.serverAddress;
48 leaseDuration = source.leaseDuration;
/frameworks/base/core/java/android/text/
H A DAlteredCharSequence.java30 * are mirrored from <code>source</code>, except that the range of
34 public static AlteredCharSequence make(CharSequence source, char[] sub, argument
36 if (source instanceof Spanned)
37 return new AlteredSpanned(source, sub, substart, subend);
39 return new AlteredCharSequence(source, sub, substart, subend);
42 private AlteredCharSequence(CharSequence source, char[] sub, argument
44 mSource = source;
60 private AlteredSpanned(CharSequence source, char[] sub, argument
62 super(source, sub, substart, subend);
63 mSpanned = (Spanned) source;
[all...]
H A DEditable.java31 * <code>source</code>. The destination slice may be empty, in which case
32 * the operation is an insertion, or the source slice may be empty,
37 * <code>source</code> text.
39 * If <code>source</code>
48 public Editable replace(int st, int en, CharSequence source, int start, int end); argument
138 public Editable newEditable(CharSequence source) { argument
139 return new SpannableStringBuilder(source);
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareMonitorEvent.java62 * Returns the source technologies that the status is associated to.
78 public GeofenceHardwareMonitorEvent createFromParcel(Parcel source) {
80 int monitoringType = source.readInt();
81 int monitoringStatus = source.readInt();
82 int sourceTechnologies = source.readInt();
83 Location location = source.readParcelable(classLoader);
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java32 private final ClassPathPackageInfoSource source; field in class:ClassPathPackageInfo
37 ClassPathPackageInfo(ClassPathPackageInfoSource source, String packageName, argument
39 this.source = source;
48 info.add(source.getPackageInfo(name));
/frameworks/base/tools/aapt2/
H A DProguardRules.cpp31 BaseVisitor(const Source& source, KeepSet* keepSet) : mSource(source), mKeepSet(keepSet) { argument
77 LayoutVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSet) { argument
106 XmlResourceVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSet) { argument
127 TransitionVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSet) { argument
145 ManifestVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSe argument
189 collectProguardRulesForManifest(const Source& source, xml::Node* node, KeepSet* keepSet) argument
195 collectProguardRules(ResourceType type, const Source& source, xml::Node* node, KeepSet* keepSet) argument
225 *out << "// Referenced at " << source << "\\n"; local
232 *out << "// Referenced at " << source << "\\n"; local
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pInfo.java58 public WifiP2pInfo(WifiP2pInfo source) { argument
59 if (source != null) {
60 groupFormed = source.groupFormed;
61 isGroupOwner = source.isGroupOwner;
62 groupOwnerAddress = source.groupOwnerAddress;
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DParceledListSliceTest.java161 public BaseObject createFromParcel(Parcel source) {
162 switch (source.readInt()) {
164 return SmallObject.createFromParcelBody(source);
166 return LargeObject.createFromParcelBody(source);
195 public static SmallObject createFromParcelBody(Parcel source) { argument
196 return new SmallObject(source.readInt(), source.readInt());
201 public SmallObject createFromParcel(Parcel source) {
203 source.readInt();
204 return createFromParcelBody(source);
239 createFromParcelBody(Parcel source) argument
[all...]
/frameworks/base/core/java/android/nfc/
H A DTechListParcel.java52 public TechListParcel createFromParcel(Parcel source) {
53 int count = source.readInt();
56 techLists[i] = source.readStringArray();
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSmsRawData.java32 public SmsRawData createFromParcel(Parcel source) {
34 size = source.readInt();
36 source.readByteArray(data);
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
H A DUtils.java46 * @param source
49 public static Bitmap getBitmapFromURL(String source) { argument
51 URL url = new URL(source);
58 Log.e(TAG, "getBitmapFromUrl: " + source, e);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/text/
H A DAllCapsTransformationMethod.java37 public CharSequence getTransformation(CharSequence source, View view) { argument
38 return source != null ? source.toString().toUpperCase(mLocale) : null;
/frameworks/base/location/java/android/location/
H A DFusedBatchOptions.java63 public void setSourceToUse(int source) { argument
64 mSourcesToUse |= source;
67 public void resetSourceToUse(int source) { argument
68 mSourcesToUse &= ~source;
71 public boolean isSourceToUseSet(int source) { argument
72 return (mSourcesToUse & source) != 0;

Completed in 554 milliseconds

1234567891011>>