Searched defs:in (Results 51 - 75 of 591) sorted by relevance

1234567891011>>

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DIntFloat.java11 public IntFloat createFromParcel(Parcel in) {
12 return new IntFloat(in);
23 private IntFloat(Parcel in) { argument
24 readFromParcel(in);
36 public void readFromParcel(Parcel in) { argument
37 index = in.readInt();
38 value = in.readFloat();
H A DStringFloat.java12 public StringFloat createFromParcel(Parcel in) {
13 return new StringFloat(in);
29 private StringFloat(Parcel in) { argument
30 readFromParcel(in);
42 public void readFromParcel(Parcel in) { argument
43 key = in.readString();
44 value = in.readFloat();
H A DStringString.java12 public StringString createFromParcel(Parcel in) {
13 return new StringString(in);
24 private StringString(Parcel in) { argument
25 readFromParcel(in);
37 public void readFromParcel(Parcel in) { argument
38 key = in.readString();
39 value = in.readString();
/frameworks/multidex/library/test/src/android/support/multidex/
H A DZipEntryReader.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
17 /* Apache Harmony HEADER because the code in this class comes mostly from ZipFile, ZipEntry and
50 static ZipEntry readEntry(ByteBuffer in) throws IOException { argument
52 int sig = in.getInt();
57 in.position(8);
58 int gpbf = in.getShort() & 0xffff;
64 int compressionMethod = in.getShort() & 0xffff;
65 int time = in.getShort() & 0xffff;
66 int modDate = in
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DItem.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
46 public Item(Parcel in) { argument
47 id = in.readInt();
48 text = in.readString();
49 icon = in.readParcelable(null);
66 public Item createFromParcel(Parcel in) {
67 return new Item(in);
H A DToneSettings.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
37 private ToneSettings(Parcel in) { argument
38 duration = in.readParcelable(null);
39 tone = in.readParcelable(null);
40 vibrate = in.readInt() == 1;
57 public ToneSettings createFromParcel(Parcel in) {
58 return new ToneSettings(in);
/frameworks/support/compat/java/android/support/v4/os/
H A DParcelableCompat.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
23 * Helper for accessing features in {@link android.os.Parcelable} in a backwards compatible fashion.
53 public T createFromParcel(Parcel in) { argument
54 return mCallbacks.createFromParcel(in, null);
58 public T createFromParcel(Parcel in, ClassLoader loader) { argument
59 return mCallbacks.createFromParcel(in, loader);
/frameworks/av/media/libaudioprocessing/
H A DAudioResamplerFirOps.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
39 #if defined(__SSSE3__) // Should be supported in x86 ABI for both 32 & 64-bit.
59 int32_t mulRL(int left, int32_t in, uint32_t vRL) argument
64 asm( "smultb %[out], %[in], %[vRL] \n"
66 : [in]"%r"(in), [vRL]"r"(vRL)
69 asm( "smultt %[out], %[in], %[vRL] \n"
71 : [in]"%r"(in), [vR
82 mulAdd(int16_t in, int16_t v, int32_t a) argument
97 mulAdd(int16_t in, int32_t v, int32_t a) argument
112 mulAdd(int32_t in, int32_t v, int32_t a) argument
[all...]
/frameworks/base/cmds/hid/src/com/android/commands/hid/
H A DHid.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
56 stream = System.in;
70 private Hid(InputStream in) { argument
73 mReader = new Event.Reader(new InputStreamReader(in, "UTF-8"));
86 error("Error reading in events.", ex);
/frameworks/base/core/java/android/accounts/
H A DAccount.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 * Value type that represents an Account in the {@link AccountManager}. This object is
88 public Account(Parcel in) { argument
89 this.name = in.readString();
90 this.type = in.readString();
91 this.accessId = in.readString();
/frameworks/base/core/java/android/app/
H A DProfilerInfo.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
36 /* Indicates sample profiling when nonzero, interval in microseconds. */
77 public ProfilerInfo createFromParcel(Parcel in) {
78 return new ProfilerInfo(in);
86 private ProfilerInfo(Parcel in) { argument
87 profileFile = in.readString();
88 profileFd = in.readInt() != 0 ? ParcelFileDescriptor.CREATOR.createFromParcel(in) : null;
89 samplingInterval = in
[all...]
H A DResultInfo.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 public ResultInfo createFromParcel(Parcel in) {
64 return new ResultInfo(in);
72 public ResultInfo(Parcel in) { argument
73 mResultWho = in.readString();
74 mRequestCode = in.readInt();
75 mResultCode = in.readInt();
76 if (in.readInt() != 0) {
77 mData = Intent.CREATOR.createFromParcel(in);
[all...]
H A DServiceStartArgs.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 public ServiceStartArgs createFromParcel(Parcel in) {
64 return new ServiceStartArgs(in);
72 public ServiceStartArgs(Parcel in) { argument
73 taskRemoved = in.readInt() != 0;
74 startId = in.readInt();
75 flags = in.readInt();
76 if (in.readInt() != 0) {
77 args = Intent.CREATOR.createFromParcel(in);
[all...]
/frameworks/base/core/java/android/app/admin/
H A DConnectEvent.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
43 private ConnectEvent(Parcel in) { argument
44 this.ipAddress = in.readString();
45 this.port = in.readInt();
46 this.packageName = in.readString();
47 this.timestamp = in.readLong();
73 public ConnectEvent createFromParcel(Parcel in) {
74 if (in.readInt() != PARCEL_TOKEN_CONNECT_EVENT) {
77 return new ConnectEvent(in);
[all...]
H A DDnsEvent.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
54 private DnsEvent(Parcel in) { argument
55 this.hostname = in.readString();
56 this.ipAddresses = in.createStringArray();
57 this.ipAddressesCount = in.readInt();
58 this.packageName = in.readString();
59 this.timestamp = in.readLong();
103 public DnsEvent createFromParcel(Parcel in) {
104 if (in
[all...]
/frameworks/base/core/java/android/app/usage/
H A DExternalStorageStats.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
38 * Return the total bytes used by all files in the shared/external storage
42 * multiuser device. Any OBB data shared between users is not accounted in
50 * Return the total bytes used by all audio files in the shared/external
62 * Return the total bytes used by all video files in the shared/external
74 * Return the total bytes used by all image files in the shared/external
86 * Return the total bytes used by app files in the shared/external storage
104 public ExternalStorageStats(Parcel in) { argument
105 this.totalBytes = in
[all...]
H A DStorageStats.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
91 public StorageStats(Parcel in) { argument
92 this.codeBytes = in.readLong();
93 this.dataBytes = in.readLong();
94 this.cacheBytes = in.readLong();
111 public StorageStats createFromParcel(Parcel in) {
112 return new StorageStats(in);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattIncludedService.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
67 public BluetoothGattIncludedService createFromParcel(Parcel in) {
68 return new BluetoothGattIncludedService(in);
76 private BluetoothGattIncludedService(Parcel in) { argument
77 mUuid = ((ParcelUuid)in.readParcelable(null)).getUuid();
78 mInstanceId = in.readInt();
79 mServiceType = in.readInt();
H A DSdpSapsRecord.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
36 public SdpSapsRecord(Parcel in) { argument
37 this.mRfcommChannelNumber = in.readInt();
38 this.mProfileVersion = in.readInt();
39 this.mServiceName = in.readString();
84 public SdpSapsRecord createFromParcel(Parcel in) {
85 return new SdpSapsRecord(in);
/frameworks/base/core/java/android/bluetooth/le/
H A DPeriodicAdvertisingParameters.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
40 private PeriodicAdvertisingParameters(Parcel in) { argument
41 includeTxPower = in.readInt() != 0 ? true : false;
42 interval = in.readInt();
51 * Returns the periodic advertising interval, in 1.25ms unit.
76 public PeriodicAdvertisingParameters createFromParcel(Parcel in) {
77 return new PeriodicAdvertisingParameters(in);
86 * Whether the transmission power level should be included in the periodic
95 * Set advertising interval for periodic advertising, in 1.2
[all...]
H A DResultStorageDescriptor.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
71 private ResultStorageDescriptor(Parcel in) { argument
72 ReadFromParcel(in);
75 private void ReadFromParcel(Parcel in) { argument
76 mType = in.readInt();
77 mOffset = in.readInt();
78 mLength = in.readInt();
/frameworks/base/core/java/android/content/
H A DSyncStats.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
31 * that was specified in the request. The user needs to take some action to resolve
48 * increment this value although it may still do so in order to record that it had to
108 public SyncStats(Parcel in) { argument
109 numAuthExceptions = in.readLong();
110 numIoExceptions = in.readLong();
111 numParseExceptions = in.readLong();
112 numConflictDetectedExceptions = in.readLong();
113 numInserts = in
[all...]
/frameworks/base/core/java/android/content/pm/
H A DEphemeralIntentFilter.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
46 EphemeralIntentFilter(Parcel in) { argument
47 mInstantAppIntentFilter = in.readParcelable(null /*loader*/);
76 public EphemeralIntentFilter createFromParcel(Parcel in) {
77 return new EphemeralIntentFilter(in);
H A DParceledListSlice.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
38 private ParceledListSlice(Parcel in, ClassLoader loader) { argument
39 super(in, loader);
74 public ParceledListSlice createFromParcel(Parcel in) {
75 return new ParceledListSlice(in, null);
79 public ParceledListSlice createFromParcel(Parcel in, ClassLoader loader) {
80 return new ParceledListSlice(in, loader);
H A DStringParceledListSlice.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
38 private StringParceledListSlice(Parcel in, ClassLoader loader) { argument
39 super(in, loader);
69 public StringParceledListSlice createFromParcel(Parcel in) {
70 return new StringParceledListSlice(in, null);
74 public StringParceledListSlice createFromParcel(Parcel in, ClassLoader loader) {
75 return new StringParceledListSlice(in, loader);

Completed in 1979 milliseconds

1234567891011>>