/frameworks/support/v4/ics/android/support/v4/view/accessibility/ |
AccessibilityRecordCompatIcs.java | 34 public static Object obtain(Object record) { 35 return AccessibilityRecord.obtain((AccessibilityRecord) record); 38 public static int getAddedCount(Object record) { 39 return ((AccessibilityRecord) record).getAddedCount(); 42 public static CharSequence getBeforeText(Object record) { 43 return ((AccessibilityRecord) record).getBeforeText(); 46 public static CharSequence getClassName(Object record) { 47 return ((AccessibilityRecord) record).getClassName(); 50 public static CharSequence getContentDescription(Object record) { 51 return ((AccessibilityRecord) record).getContentDescription() [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/attr/ |
test-record-basic | 2 command = record 5 [event:base-record]
|
test-record-branch-any | 2 command = record 5 [event:base-record]
|
test-record-freq | 2 command = record 5 [event:base-record]
|
test-record-graph-default | 2 command = record 5 [event:base-record]
|
test-record-graph-fp | 2 command = record 5 [event:base-record]
|
test-record-no-inherit | 2 command = record 5 [event:base-record]
|
test-record-no-samples | 2 command = record 5 [event:base-record]
|
test-record-period | 2 command = record 5 [event:base-record]
|
test-record-raw | 2 command = record 5 [event:base-record]
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/ |
event_analyzing_sample-record | 5 # the tracepoints, so no special record requirements, just record what 8 perf record $@
|
failed-syscalls-by-pid-record | 2 perf record -e raw_syscalls:sys_exit $@
|
futex-contention-record | 2 perf record -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex $@
|
net_dropmonitor-record | 2 perf record -e skb:kfree_skb $@
|
sctop-record | 2 perf record -e raw_syscalls:sys_enter $@
|
syscall-counts-by-pid-record | 2 perf record -e raw_syscalls:sys_enter $@
|
syscall-counts-record | 2 perf record -e raw_syscalls:sys_enter $@
|
/external/chromium_org/device/test/data/bluetooth/ |
medium_uuid.xml | 2 <record> 8 </record>
|
short_uuid.xml | 2 <record> 8 </record>
|
/external/chromium_org/v8/src/ |
unbound-queue-inl.h | 13 template<typename Record> 14 struct UnboundQueue<Record>::Node: public Malloced { 15 explicit Node(const Record& value) 19 Record value; 24 template<typename Record> 25 UnboundQueue<Record>::UnboundQueue() { 26 first_ = new Node(Record()); 31 template<typename Record> 32 UnboundQueue<Record>::~UnboundQueue() { 37 template<typename Record> [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/bin/ |
failed-syscalls-record | 2 perf record -e raw_syscalls:sys_exit $@
|
rw-by-file-record | 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_enter_write $@
|
wakeup-latency-record | 2 perf record -e sched:sched_switch -e sched:sched_wakeup $@
|
/external/chromium_org/device/nfc/ |
nfc_ndef_record_unittest.cc | 30 scoped_ptr<NfcNdefRecord> record(new NfcNdefRecord()); 33 EXPECT_FALSE(record->Populate(NfcNdefRecord::kTypeText, &data)); 34 EXPECT_FALSE(record->IsPopulated()); 38 EXPECT_FALSE(record->Populate(NfcNdefRecord::kTypeText, &data)); 39 EXPECT_FALSE(record->IsPopulated()); 44 EXPECT_FALSE(record->Populate(NfcNdefRecord::kTypeText, &data)); 45 EXPECT_FALSE(record->IsPopulated()); 47 // Populating a successfully populated record should fail. 48 EXPECT_FALSE(record->Populate(NfcNdefRecord::kTypeText, &data)); 52 EXPECT_FALSE(record->Populate(NfcNdefRecord::kTypeText, &data)) [all...] |
/external/smack/src/org/xbill/DNS/ |
Update.java | 31 Record soa = Record.newRecord(zone, Type.SOA, DClass.IN); 47 newPrereq(Record rec) { 52 newUpdate(Record rec) { 62 newPrereq(Record.newRecord(name, Type.ANY, DClass.ANY, 0)); 71 newPrereq(Record.newRecord(name, type, DClass.ANY, 0)); 75 * Parses a record from the string, and inserts a prerequisite that the 76 * record exists. Due to the way value-dependent prequisites work, the 80 * @throws IOException The record could not be parsed. 83 present(Name name, int type, String record) throws IOException [all...] |