OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRecords
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/core/java/android/nfc/
NdefMessage.java
34
private final NdefRecord[]
mRecords
;
44
mRecords
= null; // stop compiler complaints about final field
54
mRecords
= new NdefRecord[records.length];
55
System.arraycopy(records, 0,
mRecords
, 0, records.length);
64
return
mRecords
.clone();
73
if ((
mRecords
== null) || (
mRecords
.length == 0))
78
for (int i = 0; i <
mRecords
.length; i++) {
79
byte[] record =
mRecords
[i].toByteArray();
90
if (i == (
mRecords
.length - 1))
[
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
70
// access should be inside synchronized (
mRecords
) for these two fields
72
private final ArrayList<Record>
mRecords
= new ArrayList<Record>();
145
synchronized (
mRecords
) {
150
final int N =
mRecords
.size();
152
r =
mRecords
.get(i);
161
mRecords
.add(r);
247
synchronized (
mRecords
) {
248
final int recordCount =
mRecords
.size();
250
if (
mRecords
.get(i).binder == binder) {
251
mRecords
.remove(i)
[
all
...]
/frameworks/base/core/java/android/view/accessibility/
AccessibilityEvent.java
581
private final ArrayList<AccessibilityRecord>
mRecords
= new ArrayList<AccessibilityRecord>();
611
List<AccessibilityRecord> records =
mRecords
;
629
List<AccessibilityRecord> records =
mRecords
;
643
return
mRecords
.size();
655
mRecords
.add(record);
665
return
mRecords
.get(index);
[
all
...]
/cts/tools/host/src/com/android/cts/
Selector.java
59
public List<String>
mRecords
;
68
mRecords
= records;
69
Collections.sort(
mRecords
);
199
for (String javaPkgName :
mRecords
) {
254
for (String suiteName :
mRecords
) {
306
for (String testCaseName :
mRecords
) {
349
for (String test :
mRecords
) {
Completed in 202 milliseconds