OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRecords
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/android/nfc/
NdefMessage.java
62
private final NdefRecord[]
mRecords
;
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
.length - 1); // last recor
[
all
...]
/packages/apps/Tag/src/com/android/apps/tag/message/
ParsedNdefMessage.java
35
private List<ParsedNdefRecord>
mRecords
;
38
mRecords
= ImmutableList.copyOf(records);
45
return
mRecords
;
53
if (
mRecords
.isEmpty()) {
57
ParsedNdefRecord record =
mRecords
.get(0);
64
final int size =
mRecords
.size();
67
ParsedNdefRecord r =
mRecords
.get(i);
76
record =
mRecords
.get(smartPosterRecord);
/frameworks/base/services/java/com/android/server/
TelephonyRegistry.java
86
// access should be inside synchronized (
mRecords
) for these two fields
88
private final ArrayList<Record>
mRecords
= new ArrayList<Record>();
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
.remove(i)
[
all
...]
/frameworks/base/core/java/android/view/accessibility/
AccessibilityEvent.java
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccPhoneBookInterfaceManager.java
47
protected List<AdnRecord>
mRecords
;
87
mRecords
= (List<AdnRecord>) ar.result;
90
if (
mRecords
!= null) {
91
mRecords
.clear();
289
return
mRecords
;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
GestureRecorder.java
93
private LinkedList<Record>
mRecords
= new LinkedList<Record>();
99
mRecords
.add(new MotionEventRecord(ev.getEventTime(), ev));
115
mRecords
.add(new TagRecord(when, tag, info));
125
for (Record r :
mRecords
) {
Completed in 3349 milliseconds