/packages/apps/Messaging/src/com/android/messaging/sms/ |
D | DatabaseMessages.java | 210 private SmsMessage(final Parcel in) { in SmsMessage() argument 211 mUri = in.readString(); in SmsMessage() 212 mRowId = in.readLong(); in SmsMessage() 213 mTimestampInMillis = in.readLong(); in SmsMessage() 214 mTimestampSentInMillis = in.readLong(); in SmsMessage() 215 mType = in.readInt(); in SmsMessage() 216 mThreadId = in.readLong(); in SmsMessage() 217 mStatus = in.readInt(); in SmsMessage() 218 mRead = in.readInt() != 0; in SmsMessage() 219 mSeen = in.readInt() != 0; in SmsMessage() [all …]
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
D | MatrixUtils.h | 63 static void convert9to33(double out[3][3], double in[9]) { in convert9to33() 64 out[0][0] = in[0]; in convert9to33() 65 out[0][1] = in[1]; in convert9to33() 66 out[0][2] = in[2]; in convert9to33() 68 out[1][0] = in[3]; in convert9to33() 69 out[1][1] = in[4]; in convert9to33() 70 out[1][2] = in[5]; in convert9to33() 72 out[2][0] = in[6]; in convert9to33() 73 out[2][1] = in[7]; in convert9to33() 74 out[2][2] = in[8]; in convert9to33() [all …]
|
D | Interp.h | 51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; in ciCalc() local 54 tmpf[0] = in[0] * ciTable[off + 40]; in ciCalc() 55 tmpf[0] += in[1] * ciTable[off]; in ciCalc() 56 tmpf[0] += in[2] * ciTable[40 - off]; in ciCalc() 57 tmpf[0] += in[3] * ciTable[80 - off]; in ciCalc() 58 in += img->pitch; in ciCalc() 59 tmpf[1] = in[0] * ciTable[off + 40]; in ciCalc() 60 tmpf[1] += in[1] * ciTable[off]; in ciCalc() 61 tmpf[1] += in[2] * ciTable[40 - off]; in ciCalc() 62 tmpf[1] += in[3] * ciTable[80 - off]; in ciCalc() [all …]
|
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/buffer/ |
D | DvrStorageManager.java | 89 private void readFormatInt(DataInputStream in, MediaFormat format, String key) in readFormatInt() argument 91 int val = in.readInt(); in readFormatInt() 97 private void readFormatLong(DataInputStream in, MediaFormat format, String key) in readFormatLong() argument 99 long val = in.readLong(); in readFormatLong() 105 private void readFormatFloat(DataInputStream in, MediaFormat format, String key) in readFormatFloat() argument 107 float val = in.readFloat(); in readFormatFloat() 113 private String readString(DataInputStream in) throws IOException { in readString() argument 114 int len = in.readInt(); in readString() 119 in.readFully(strBytes); in readString() 123 private void readFormatString(DataInputStream in, MediaFormat format, String key) in readFormatString() argument [all …]
|
/packages/services/Car/car-lib/src/android/car/ |
D | ICarProjection.aidl | 38 void registerProjectionRunner(in Intent serviceIntent) = 0; 44 void unregisterProjectionRunner(in Intent serviceIntent) = 1; 51 in ICarProjectionKeyEventHandler eventHandler, in byte[] eventMask) = 2; in registerKeyEventHandler() 56 void unregisterKeyEventHandler(in ICarProjectionKeyEventHandler eventHandler) = 3; 62 void startProjectionAccessPoint(in Messenger messenger, in IBinder binder) = 4; in startProjectionAccessPoint() 67 void stopProjectionAccessPoint(in IBinder binder) = 5; 71 in BluetoothDevice device, in int profile, in IBinder token) = 6; in requestBluetoothProfileInhibit() 75 in BluetoothDevice device, in int profile, in IBinder token) = 7; in releaseBluetoothProfileInhibit() 78 void updateProjectionStatus(in ProjectionStatus status, in IBinder token) = 8; in updateProjectionStatus() 81 void registerProjectionStatusListener(in ICarProjectionStatusListener listener) = 9; [all …]
|
/packages/services/Car/car-lib/src/android/car/storagemonitoring/ |
D | IoStatsEntry.java | 42 public IoStatsEntry createFromParcel(Parcel in) { 43 return new IoStatsEntry(in); 86 public IoStatsEntry(Parcel in) { in IoStatsEntry() argument 87 uid = in.readInt(); in IoStatsEntry() 88 runtimeMillis = in.readLong(); in IoStatsEntry() 89 foreground = in.readParcelable(IoStatsEntry.Metrics.class.getClassLoader()); in IoStatsEntry() 90 background = in.readParcelable(IoStatsEntry.Metrics.class.getClassLoader()); in IoStatsEntry() 136 public IoStatsEntry(JSONObject in) throws JSONException { in IoStatsEntry() argument 137 uid = in.getInt("uid"); in IoStatsEntry() 138 runtimeMillis = in.getLong("runtimeMillis"); in IoStatsEntry() [all …]
|
D | WearEstimate.java | 51 public WearEstimate createFromParcel(Parcel in) { 52 return new WearEstimate(in); 83 public WearEstimate(Parcel in) { in WearEstimate() argument 84 typeA = validateWearValue(in.readInt()); in WearEstimate() 85 typeB = validateWearValue(in.readInt()); in WearEstimate() 91 public WearEstimate(JsonReader in) throws IOException { in WearEstimate() argument 94 in.beginObject(); in WearEstimate() 95 while (in.hasNext()) { in WearEstimate() 96 switch (in.nextName()) { in WearEstimate() 98 typeA = validateWearValue(in.nextInt()); in WearEstimate() [all …]
|
/packages/apps/Email/src/com/beetstra/jutf7/ |
D | UTF7StyleCharsetDecoder.java | 64 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) { in decodeLoop() argument 65 while (in.hasRemaining()) { in decodeLoop() 66 byte b = in.get(); in decodeLoop() 70 return malformed(in); in decodeLoop() 73 return overflow(in); in decodeLoop() 80 return overflow(in); in decodeLoop() 81 CoderResult result = handleBase64(in, out, b); in decodeLoop() 90 return malformed(in); in decodeLoop() 95 return overflow(in); in decodeLoop() 103 private CoderResult overflow(ByteBuffer in) { in overflow() argument [all …]
|
/packages/apps/Dialer/java/com/android/dialer/calllog/model/ |
D | coalesced_row.proto | 17 // Value in column CoalescedAnnotatedCallLog._ID 20 // Value in column CoalescedAnnotatedCallLog.TIMESTAMP 23 // Value in column CoalescedAnnotatedCallLog.NUMBER 26 // Value in column CoalescedAnnotatedCallLog.FORMATTED_NUMBER 29 // Value in column CoalescedAnnotatedCallLog.NUMBER_PRESENTATION 32 // Value in column CoalescedAnnotatedCallLog.IS_READ 35 // Value in column CoalescedAnnotatedCallLog.NEW 38 // Value in column CoalescedAnnotatedCallLog.GEOCODED_LOCATION 41 // Value in column CoalescedAnnotatedCallLog.PHONE_ACCOUNT_COMPONENT_NAME 44 // Value in column CoalescedAnnotatedCallLog.PHONE_ACCOUNT_ID [all …]
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
D | Message.java | 303 private Message(Parcel in) { in Message() argument 304 id = in.readLong(); in Message() 305 serverId = in.readString(); in Message() 306 uri = in.readParcelable(null); in Message() 307 conversationUri = in.readParcelable(null); in Message() 308 subject = in.readString(); in Message() 309 snippet = in.readString(); in Message() 310 mFrom = in.readString(); in Message() 311 mTo = in.readString(); in Message() 312 mCc = in.readString(); in Message() [all …]
|
D | Conversation.java | 203 private Conversation(Parcel in, ClassLoader loader) { in Conversation() argument 204 id = in.readLong(); in Conversation() 205 uri = in.readParcelable(null); in Conversation() 206 subject = in.readString(); in Conversation() 207 dateMs = in.readLong(); in Conversation() 208 hasAttachments = (in.readInt() != 0); in Conversation() 209 messageListUri = in.readParcelable(null); in Conversation() 210 sendingState = in.readInt(); in Conversation() 211 priority = in.readInt(); in Conversation() 212 read = (in.readInt() != 0); in Conversation() [all …]
|
D | Account.java | 319 public Account buildFrom(Parcel in, ClassLoader loader) { in buildFrom() argument 320 return new Account(in, loader); in buildFrom() 596 protected Account(Parcel in, ClassLoader loader) { in Account() argument 597 displayName = in.readString(); in Account() 598 senderName = in.readString(); in Account() 599 type = in.readString(); in Account() 600 accountManagerName = in.readString(); in Account() 601 providerVersion = in.readInt(); in Account() 602 uri = in.readParcelable(null); in Account() 603 capabilities = in.readInt(); in Account() [all …]
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | dom.md | 3 …nt Object Model(DOM) is an in-memory representation of JSON for query and manipulation. The basic … 34 The `Encoding` parameter specifies the encoding of JSON String value in memory. Possible options ar… 36 …in JSON files. Unicode-enabled functions in Windows use UTF-16 (wide character) encoding. No matte… 61 …ces to an `Allocator` instance. On the other hand, `Value` does not do so, in order to reduce memo… 63 The default allocator used in `GenericDocument` is `MemoryPoolAllocator`. This allocator actually a… 115 `kParseIterativeFlag` | Iterative(constant complexity in terms of function call stack size)… 116 …ErrorDocumentRootNotSingular` error. Using this flag for parsing multiple JSONs in the same stream. 117 `kParseFullPrecisionFlag` | Parse number in full precision (slower). If this flag is not set, t… 119 … using a single specialization). The downside is the flags needed to be determined in compile-time. 121 The `SourceEncoding` parameter defines what encoding is in the stream. This can be differed to the … [all …]
|
D | encoding.md | 5 > (in Introduction) JSON text is a sequence of Unicode code points. 9 > (in §3) JSON text SHALL be encoded in Unicode. The default encoding is UTF-8. 11 > (in §6) JSON may be represented using UTF-8, UTF-16, or UTF-32. When JSON is written in UTF-8, JS… 24 Those unique numbers are called code points, which is in the range `0x0` to `0x10FFFF`. 34 … Within computer memory, they are often stored in the computer's endianness. However, when it is s… 36 RapidJSON provide these encodings via the structs in `rapidjson/encodings.h`: 65 For processing text in memory, we normally use `UTF8`, `UTF16` or `UTF32`. For processing text via … 67 …in `GenericValue<Encoding>` and `GenericDocument<Encoding>` indicates the encoding to be used to r… 76 For a detail example, please check the example in [DOM's Encoding](doc/stream.md) section. 80 …in the declaration, each encoding has a `CharType` template parameter. Actually, it may be a littl… [all …]
|
/packages/apps/Settings/src/com/android/settings/applications/ |
D | ProcStatsEntry.java | 92 public ProcStatsEntry(Parcel in) { in ProcStatsEntry() argument 93 mPackage = in.readString(); in ProcStatsEntry() 94 mUid = in.readInt(); in ProcStatsEntry() 95 mName = in.readString(); in ProcStatsEntry() 96 in.readStringList(mPackages); in ProcStatsEntry() 97 mBgDuration = in.readLong(); in ProcStatsEntry() 98 mAvgBgMem = in.readLong(); in ProcStatsEntry() 99 mMaxBgMem = in.readLong(); in ProcStatsEntry() 100 mBgWeight = in.readDouble(); in ProcStatsEntry() 101 mRunDuration = in.readLong(); in ProcStatsEntry() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/applications/ |
D | ProcStatsEntry.java | 92 public ProcStatsEntry(Parcel in) { in ProcStatsEntry() argument 93 mPackage = in.readString(); in ProcStatsEntry() 94 mUid = in.readInt(); in ProcStatsEntry() 95 mName = in.readString(); in ProcStatsEntry() 96 in.readStringList(mPackages); in ProcStatsEntry() 97 mBgDuration = in.readLong(); in ProcStatsEntry() 98 mAvgBgMem = in.readLong(); in ProcStatsEntry() 99 mMaxBgMem = in.readLong(); in ProcStatsEntry() 100 mBgWeight = in.readDouble(); in ProcStatsEntry() 101 mRunDuration = in.readLong(); in ProcStatsEntry() [all …]
|
/packages/services/Car/car-lib/src/android/car/vms/ |
D | IVmsSubscriberService.aidl | 33 in IVmsSubscriberClient subscriber) = 0; 39 in IVmsSubscriberClient subscriber, in addVmsSubscriber() 40 in VmsLayer layer) = 1; in addVmsSubscriber() 47 void addVmsSubscriberPassive(in IVmsSubscriberClient subscriber) = 2; 53 in IVmsSubscriberClient subscriber, in addVmsSubscriberToPublisher() 54 in VmsLayer layer, in addVmsSubscriberToPublisher() 63 in IVmsSubscriberClient subscriber) = 4; 69 in IVmsSubscriberClient subscriber, in removeVmsSubscriber() 70 in VmsLayer layer) = 5; in removeVmsSubscriber() 78 in IVmsSubscriberClient subscriber) = 6; [all …]
|
/packages/apps/Dialer/java/com/android/voicemail/impl/ |
D | Voicemail.java | 302 public Voicemail createFromParcel(Parcel in) { 303 return new Voicemail(in); 312 private Voicemail(Parcel in) { in Voicemail() argument 313 timestamp = in.readLong(); in Voicemail() 314 number = (String) readCharSequence(in); in Voicemail() 315 if (in.readInt() > 0) { in Voicemail() 316 phoneAccount = PhoneAccountHandle.CREATOR.createFromParcel(in); in Voicemail() 320 id = in.readLong(); in Voicemail() 321 duration = in.readLong(); in Voicemail() 322 source = (String) readCharSequence(in); in Voicemail() [all …]
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/ |
D | HostAuthCompat.java | 100 public HostAuthCompat(Parcel in) { in HostAuthCompat() argument 101 mProtocol = in.readString(); in HostAuthCompat() 102 mAddress = in.readString(); in HostAuthCompat() 103 mPort = in.readInt(); in HostAuthCompat() 104 mFlags = in.readInt(); in HostAuthCompat() 105 mLogin = in.readString(); in HostAuthCompat() 106 mPassword = in.readString(); in HostAuthCompat() 107 mDomain = in.readString(); in HostAuthCompat() 108 mClientCertAlias = in.readString(); in HostAuthCompat() 109 mServerCert = in.createByteArray(); in HostAuthCompat() [all …]
|
/packages/apps/Dialer/java/com/android/dialer/voicemail/model/ |
D | voicemail_entry.proto | 15 // Value in column AnnotatedCallLog._ID 18 // Value in column AnnotatedCallLog.TIMESTAMP 21 // Value in column AnnotatedCallLog.NUMBER 24 // Value in column AnnotatedCallLog.FORMATTED_NUMBER 27 // Value in column AnnotatedCallLog.GEOCODED_LOCATION 30 // Value in column AnnotatedCallLog.DURATION 33 // Value in column AnnotatedCallLog.TRANSCRIPTION 36 // Value in column AnnotatedCallLog.VOICEMAIL_URI 39 // Value in column AnnotatedCallLog.CALL_TYPE 42 // Value in column AnnotatedCallLog.IS_READ [all …]
|
/packages/services/BuiltInPrintService/jni/plugins/ |
D | wprint_scaler.c | 843 static inline void _scale_row_down(uint8 *in, uint8 *_RESTRICT_ out, uint32 in_row_ofs, in _scale_row_down() argument 875 _scale_row_down_2in(in, in + in_row_ofs, in _scale_row_down() 879 _scale_row_down_3in(in, in + in_row_ofs, in + 2 * in_row_ofs, in _scale_row_down() 883 _scale_row_down_4in(in, in + in_row_ofs, in + 2 * in_row_ofs, in + 3 * in_row_ofs, in _scale_row_down() 887 _scale_row_down_5in(in, in + in_row_ofs, in + 2 * in_row_ofs, in + 3 * in_row_ofs, in _scale_row_down() 888 in + 4 * in_row_ofs, in _scale_row_down() 893 _scale_row_down_6in(in, in + in_row_ofs, in + 2 * in_row_ofs, in + 3 * in_row_ofs, in _scale_row_down() 894 in + 4 * in_row_ofs, in + 5 * in_row_ofs, in _scale_row_down() 898 _scale_row_down_7in(in, in + in_row_ofs, in + 2 * in_row_ofs, in + 3 * in_row_ofs, in _scale_row_down() 899 in + 4 * in_row_ofs, in + 5 * in_row_ofs, in + 6 * in_row_ofs, in _scale_row_down() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
D | BluetoothOppReceiver.java | 95 Intent in = new Intent(context, BluetoothOppIncomingFileConfirmActivity.class); in onReceive() local 96 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onReceive() 97 in.setDataAndNormalize(uri); in onReceive() 98 context.startActivity(in); in onReceive() 145 Intent in = new Intent(context, BluetoothOppTransferActivity.class); in onReceive() local 146 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); in onReceive() 147 in.setDataAndNormalize(uri); in onReceive() 148 context.startActivity(in); in onReceive() 156 Intent in = new Intent(context, BluetoothOppTransferHistory.class); in onReceive() local 157 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); in onReceive() [all …]
|
/packages/apps/Dialer/java/com/android/dialer/phonelookup/ |
D | phone_lookup_info.proto | 24 // For a contact in the default directory: 26 // For a contact in other directories: 30 // For a contact in the default directory: 32 // For a contact in other directories: 36 // For a contact in the default directory: 38 // For a contact in other directories: 42 // For a contact in the default directory: 44 // For a contact in other directories: 48 // For a contact in the default directory: 50 // For a contact in other directories: [all …]
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
D | Policy.java | 458 public Policy createFromParcel(Parcel in) { 459 return new Policy(in); 502 public Policy(Parcel in) { in Policy() argument 504 mId = in.readLong(); in Policy() 505 mPasswordMode = in.readInt(); in Policy() 506 mPasswordMinLength = in.readInt(); in Policy() 507 mPasswordMaxFails = in.readInt(); in Policy() 508 mPasswordHistory = in.readInt(); in Policy() 509 mPasswordExpirationDays = in.readInt(); in Policy() 510 mPasswordComplexChars = in.readInt(); in Policy() [all …]
|
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/ |
D | CachedInputStream.java | 44 public CachedInputStream(InputStream in) { in CachedInputStream() argument 45 super(in); in CachedInputStream() 105 if (in!=null) { in close() 106 in.close(); in close() 107 in = null; in close() 134 if (in == null) { in read() 138 int reads = in.read(buffer, offset, count); in read() 158 int reads = in.read(buf, indexInBuf, toRead); in read() 167 reads = in.read(buffer, offset, count); in read() 206 if (in == null) { in available() [all …]
|