Searched refs:mRecords (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/nfc/
H A DNdefMessage.java62 private final NdefRecord[] mRecords; field in class:NdefMessage
98 mRecords = NdefRecord.parse(buffer, false);
121 mRecords = new NdefRecord[1 + records.length];
122 mRecords[0] = record;
123 System.arraycopy(records, 0, mRecords, 1, records.length);
142 mRecords = records;
157 return mRecords;
175 for (NdefRecord r : mRecords) {
196 for (int i=0; i<mRecords.length; i++) {
198 boolean me = (i == mRecords
[all...]
/frameworks/base/services/java/com/android/server/
H A DTelephonyRegistry.java86 // access should be inside synchronized (mRecords) for these two fields
88 private final ArrayList<Record> mRecords = new ArrayList<Record>(); field in class:TelephonyRegistry
203 synchronized (mRecords) {
208 final int N = mRecords.size();
210 r = mRecords.get(i);
220 mRecords.add(r);
316 synchronized (mRecords) {
317 final int recordCount = mRecords.size();
319 if (mRecords.get(i).binder == binder) {
320 mRecords
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityEvent.java701 private final ArrayList<AccessibilityRecord> mRecords = new ArrayList<AccessibilityRecord>(); field in class:AccessibilityEvent
733 List<AccessibilityRecord> records = mRecords;
747 return mRecords.size();
759 mRecords.add(record);
769 return mRecords.get(index);
902 final int recordCount = event.mRecords.size();
904 AccessibilityRecord record = event.mRecords.get(i);
906 eventClone.mRecords.add(recordClone);
969 while (!mRecords.isEmpty()) {
970 AccessibilityRecord record = mRecords
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DGestureRecorder.java93 private LinkedList<Record> mRecords = new LinkedList<Record>(); field in class:GestureRecorder.Gesture
99 mRecords.add(new MotionEventRecord(ev.getEventTime(), ev));
115 mRecords.add(new TagRecord(when, tag, info));
125 for (Record r : mRecords) {

Completed in 225 milliseconds