HomeSort by relevance Sort by last modified time
    Searched full:record (Results 1 - 25 of 7466) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
LanguageData.java 21 public static class Record
26 public Record(String tag, String name)
57 private Record[] languages =
59 new Record("", "null"),
60 new Record("ARA", "Arabic"),
61 new Record("ASM", "Assamese"),
62 new Record("BEN", "Bengali"),
63 new Record("FAR", "Farsi"),
64 new Record("GUJ", "Gujarati"),
65 new Record("HIN", "Hindi")
    [all...]
  /external/v8/src/
locked-queue-inl.h 14 template <typename Record>
15 struct LockedQueue<Record>::Node : Malloced {
17 Record value;
22 template <typename Record>
23 inline LockedQueue<Record>::LockedQueue() {
30 template <typename Record>
31 inline LockedQueue<Record>::~LockedQueue() {
43 template <typename Record>
44 inline void LockedQueue<Record>::Enqueue(const Record& record)
    [all...]
  /external/v8/src/profiler/
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...]
  /art/test/577-profile-foreign-dex/
info.txt 1 Check that we record the use of foreign dex files when profiles are enabled.
  /tools/test/connectivity/acts/framework/tests/
acts_records_test.py 32 def verify_record(self, record, result, details, extras):
34 self.assertEqual(record.test_name, self.tn)
35 self.assertEqual(record.result, result)
36 self.assertEqual(record.details, details)
37 self.assertEqual(record.extras, extras)
38 self.assertTrue(record.begin_time, "begin time should not be empty.")
39 self.assertTrue(record.end_time, "end time should not be empty.")
41 self.assertIsNone(record.uid)
48 d[records.TestResultEnums.RECORD_BEGIN_TIME] = record.begin_time
49 d[records.TestResultEnums.RECORD_END_TIME] = record.end_tim
    [all...]
  /external/skia/tests/
RecordPatternTest.cpp 24 SkRecord record; local
25 REPORTER_ASSERT(r, !pattern.match(&record, 0));
27 SkRecorder recorder(&record, 1920, 1200);
31 REPORTER_ASSERT(r, !pattern.match(&record, 0));
34 REPORTER_ASSERT(r, !pattern.match(&record, 0));
37 REPORTER_ASSERT(r, pattern.match(&record, 0));
46 SkRecord record; local
47 SkRecorder recorder(&record, 1920, 1200);
59 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3);
61 REPORTER_ASSERT(r, !pattern.match(&record, i))
69 SkRecord record; local
83 SkRecord record; local
107 SkRecord record; local
147 SkRecord record; local
    [all...]
RecordTest.cpp 30 void apply(const SkRecord& record) {
31 for (int i = 0; i < record.count(); i++) {
32 record.visit<void>(i, *this);
48 void apply(SkRecord* record) {
49 for (int i = 0; i < record->count(); i++) {
50 record->mutate<void>(i, *this);
55 #define APPEND(record, type, ...) new (record.append<type>()) type{__VA_ARGS__}
58 DEF_TEST(Record, r) {
59 SkRecord record; local
81 SkRecord record; local
107 SkRecord record; local
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSListener.java 11 * DNSListener. Listener for record updates.
18 * Update a DNS record.
21 * record cache
24 * @param record
25 * DNS record
27 void updateRecord(DNSCache dnsCache, long now, DNSEntry record);
  /external/autotest/tko/
retrieve_jobs 10 for record in db.select('* from tko_jobs ' + arg):
11 print record
  /external/nist-sip/java/javax/sip/header/
RecordRouteHeader.java 4 String NAME = "Record-Route";
  /external/wpa_supplicant_8/src/wps/
ndef.c 36 struct ndef_record *record)
42 record->type_length = *pos++;
46 record->payload_length = *pos++;
55 record->payload_length = len;
62 record->id_length = *pos++;
64 record->id_length = 0;
66 record->type = record->type_length == 0 ? NULL : pos;
67 pos += record->type_length;
69 record->id = record->id_length == 0 ? NULL : pos
86 struct ndef_record record; local
111 struct wpabuf *record; local
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/message/
NdefMessageParser.java 19 import com.android.apps.tag.record.ImageRecord;
20 import com.android.apps.tag.record.MimeRecord;
21 import com.android.apps.tag.record.ParsedNdefRecord;
22 import com.android.apps.tag.record.SmartPoster;
23 import com.android.apps.tag.record.TextRecord;
24 import com.android.apps.tag.record.UnknownRecord;
25 import com.android.apps.tag.record.UriRecord;
26 import com.android.apps.tag.record.VCardRecord;
53 for (NdefRecord record : records) {
54 if (SmartPoster.isPoster(record)) {
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
AccessibilityRecordCompat.java 35 public Object obtain(Object record);
36 public void setSource(Object record, View source);
37 public void setSource(Object record, View root, int virtualDescendantId);
38 public AccessibilityNodeInfoCompat getSource(Object record);
39 public int getWindowId(Object record);
40 public boolean isChecked(Object record);
41 public void setChecked(Object record, boolean isChecked);
42 public boolean isEnabled(Object record);
43 public void setEnabled(Object record, boolean isEnabled);
44 public boolean isPassword(Object record);
    [all...]
  /packages/apps/Bluetooth/res/values/
test_strings.xml 5 <string name="insert_record">Insert record</string>
6 <string name="update_record">Confirm record</string>
7 <string name="ack_record">Ack record</string>
8 <string name="deleteAll_record">Delete all record</string>
10 <string name="delete_record">Delete record</string>
  /system/bt/main/
bte_conf.c 50 tBTA_DI_RECORD record; local
51 record.vendor = config_get_int(config, section_name, "vendorId", LMP_COMPID_BROADCOM);
52 record.vendor_id_source = config_get_int(config, section_name, "vendorIdSource", DI_VENDOR_ID_SOURCE_BTSIG);
53 record.product = config_get_int(config, section_name, "productId", 0);
54 record.version = config_get_int(config, section_name, "version", 0);
55 record.primary_record = config_get_bool(config, section_name, "primaryRecord", false);
56 strlcpy(record.client_executable_url, config_get_string(config, section_name, "clientExecutableURL", ""), sizeof(record.client_executable_url));
57 strlcpy(record.service_description, config_get_string(config, section_name, "serviceDescription", ""), sizeof(record.service_description))
    [all...]
  /external/v8/test/cctest/
test-circular-queue.cc 39 typedef v8::base::AtomicWord Record;
41 SamplingCircularQueue<Record, kMaxRecordsInQueue> scq;
46 for (Record i = 1; i < 1 + kMaxRecordsInQueue; ++i) {
47 Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue());
59 Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue());
65 for (Record i = 1; i < 1 + kMaxRecordsInQueue; ++i) {
66 Record* rec = reinterpret_cast<Record*>(scq.Peek())
    [all...]
  /external/clang/include/clang/Serialization/
ASTBitCodes.h 156 /// preprocessing record.
218 /// \brief The block containing the detailed preprocessing record.
249 /// \brief Record types that occur within the control block.
255 /// \brief Record code for the list of other AST files imported by
259 /// \brief Record code for the original file that was used to
267 /// \brief Record code for file ID of the file or buffer that was used to
275 /// \brief Record code for the module name.
278 /// \brief Record code for the module map file that was used to build this
282 /// \brief Record code for the signature that identifiers this AST file.
285 /// \brief Record code for the module build directory
    [all...]
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_sdp.cpp 59 int record_size, bluetooth_sdp_record* record);
104 /* generic SDP record (raw data)*/
109 /* MAS SDP record*/
113 /* MNS SDP record*/
117 /* PBAP PSE record */
121 /* OPP Server record */
125 /* SAP Server record */
176 bluetooth_sdp_record* record; local
192 ALOGD("%s: Status is: %d, Record count: %d", __FUNCTION__, status, count);
197 record = &records[i]
313 bluetooth_sdp_record record = {}; \/\/ Must be zero initialized local
355 bluetooth_sdp_record record = {}; \/\/ Must be zero initialized local
395 bluetooth_sdp_record record = {}; \/\/ Must be zero initialized local
436 bluetooth_sdp_record record = {}; \/\/ Must be zero initialized local
487 bluetooth_sdp_record record = {}; \/\/ Must be zero initialized local
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp 87 ASTWriter::RecordDataImpl &Record;
90 /// \brief Type code that corresponds to the record generated.
92 /// \brief Abbreviation to use for the record, if any.
95 ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
96 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { }
113 Writer.AddTypeRef(T->getElementType(), Record);
118 Writer.AddTypeRef(T->getPointeeType(), Record);
123 Writer.AddTypeRef(T->getOriginalType(), Record);
128 Writer.AddTypeRef(T->getOriginalType(), Record);
    [all...]
ASTReaderStmt.cpp 34 const ASTReader::RecordData &Record;
83 const ASTReader::RecordData &Record, unsigned &Idx)
84 : Reader(Reader), F(F), DeclsCursor(Cursor), Record(Record), Idx(Idx) { }
86 /// \brief The number of record fields required for the Stmt class
90 /// \brief The number of record fields required for the Expr class
111 SourceLocation TemplateKWLoc = ReadSourceLocation(Record, Idx);
113 ArgInfo.setLAngleLoc(ReadSourceLocation(Record, Idx));
114 ArgInfo.setRAngleLoc(ReadSourceLocation(Record, Idx));
117 Reader.ReadTemplateArgumentLoc(F, Record, Idx))
    [all...]
  /toolchain/binutils/binutils-2.25/include/vms/
eobjrec.h 26 #define EOBJ__C_EMH 8 /* EVAX mdule header record. */
27 #define EOBJ__C_EEOM 9 /* EVAX ed of module record. */
28 #define EOBJ__C_EGSD 10 /* EVAX gobal symbol definition record. */
29 #define EOBJ__C_ETIR 11 /* EVAX txt information record. */
30 #define EOBJ__C_EDBG 12 /* EVAX Dbugger information record. */
31 #define EOBJ__C_ETBT 13 /* EVAX Taceback information record. */
32 #define EOBJ__C_MAXRECTYP 13 /* EVAX Lst assigned record type. */
36 /* Record type. */
39 /* Record size. */
43 /* Record subtype. *
    [all...]
  /external/autotest/client/site_tests/touch_MouseScroll/
README 6 up_slow - Scroll the mouse wheel up slowly to record multiple scrolls.
7 up_fast - Scroll the mouse wheel up fast to record multiple scrolls.
8 up_1 - Scroll the mouse wheel up (one gear up) to record single scroll.
9 down_slow - Scroll the mouse wheel down slowly to record scrolls.
10 down_fast - Scroll the mouse wheel down fast to record multiple scrolls.
11 down_1 - Scroll the mouse wheel down (one gear down) to record single scroll.
13 To record horizontal scrolls, please emulate a mouse which has this feature and
16 right_slow - Scroll the mouse ball right slowly to record multiple scrolls.
17 right_fast - Scroll the mouse ball right fast to record multiple scrolls.
18 right_1 - Scroll the mouse ball right (one gear right) to record single scroll
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticReader.cpp 70 Record = 1,
101 // We found a record.
103 return Cursor::Record;
124 case Cursor::Record:
135 SmallVector<uint64_t, 1> Record;
136 unsigned RecordID = Stream.readRecord(BlockOrCode, Record);
139 if (Record.size() < 1)
141 if (Record[0] > VersionNumber)
157 SmallVector<uint64_t, 16> Record;
177 case Cursor::Record
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
ViewInfoStore.java 68 InfoRecord record = mLayoutHolderMap.get(holder); local
69 if (record == null) {
70 record = InfoRecord.obtain();
71 mLayoutHolderMap.put(holder, record);
73 record.preInfo = info;
74 record.flags |= FLAG_PRE;
78 final InfoRecord record = mLayoutHolderMap.get(holder); local
79 return record != null && ((record.flags & FLAG_DISAPPEARED) != 0);
109 final InfoRecord record = mLayoutHolderMap.valueAt(index) local
149 InfoRecord record = mLayoutHolderMap.get(holder); local
165 final InfoRecord record = mLayoutHolderMap.get(viewHolder); local
186 InfoRecord record = mLayoutHolderMap.get(holder); local
202 InfoRecord record = mLayoutHolderMap.get(holder); local
215 InfoRecord record = mLayoutHolderMap.get(holder); local
225 final InfoRecord record = mLayoutHolderMap.removeAt(index); local
315 InfoRecord record = sPool.acquire(); local
    [all...]

Completed in 492 milliseconds

1 2 3 4 5 6 7 8 91011>>