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

<<11121314151617181920>>

  /frameworks/base/obex/javax/obex/
SessionNotifier.java 65 * The following checks are done to verify that the service record provided
70 * attributes for a <code>btgoep</code> service record, must be present in
78 * with this notifier is a completely valid service record. It is the
79 * responsibility of the application to ensure that the service record
81 * record correctness.
102 * The following checks are done to verify that the service record provided
107 * attributes for a <code>btgoep</code> service record, must be present in
115 * with this notifier is a completely valid service record. It is the
116 * responsibility of the application to ensure that the service record
118 * record correctness
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMELFAttributeData.h 208 // record their attribute values in the associated variables as follows and
211 // Record the value of input Tag_CPU_arch.
214 // Record the value of input Tag_CPU_name.
217 // Record the value of input Tag_CPU_raw_name.
220 // Record the value of input Tag_FP_arch.
223 // Record the value of input Tag_ABI_HardFP_use.
226 // Record the value of input Tag_also_compatible_with.
229 // Record the value of input Tag_ABI_VFP_args.
232 // Record the value of input Tag_MPextension_use and
236 // Record the value of input Tag_DIV_use
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioRecordTest.java 445 final AudioRecord record = new AudioRecord.Builder() local
448 record.release();
475 AudioRecord record = null; local
484 record = new AudioRecord.Builder()
511 record.startRecording();
521 int ret = record.read(shortData, 0, amount);
527 record.getTimestamp(startTs, AudioTimestamp.TIMEBASE_MONOTONIC)
532 record.stop();
542 record.getTimestamp(stopTs, AudioTimestamp.TIMEBASE_MONOTONIC));
544 record.getTimestamp(stopTsBoot, AudioTimestamp.TIMEBASE_BOOTTIME))
571 AudioRecord record = null; local
705 final AudioRecord record; local
760 final AudioRecord record; local
    [all...]
  /external/clang/test/Layout/
ms-x86-basic-layout.cpp 1 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple i686-pc-win32 -fms-extensions -fdump-record-layouts -fsyntax-only %s 2>/dev/null \
3 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple x86_64-pc-win32 -fms-extensions -fdump-record-layouts -fsyntax-only %s 2>/dev/null \
40 // CHECK: *** Dumping AST Record Layout
41 // CHECK: *** Dumping AST Record Layout
42 // CHECK: *** Dumping AST Record Layout
52 // CHECK-X64: *** Dumping AST Record Layout
53 // CHECK-X64: *** Dumping AST Record Layout
54 // CHECK-X64: *** Dumping AST Record Layout
70 // CHECK: *** Dumping AST Record Layout
71 // CHECK: *** Dumping AST Record Layou
    [all...]
ms-x86-primary-bases.cpp 1 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple i686-pc-win32 -fdump-record-layouts -fsyntax-only %s 2>/dev/null \
3 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple x86_64-pc-win32 -fdump-record-layouts -fsyntax-only %s 2>/dev/null \
18 // CHECK: *** Dumping AST Record Layout
19 // CHECK: *** Dumping AST Record Layout
27 // CHECK-X64: *** Dumping AST Record Layout
28 // CHECK-X64: *** Dumping AST Record Layout
41 // CHECK: *** Dumping AST Record Layout
49 // CHECK-X64: *** Dumping AST Record Layout
62 // CHECK: *** Dumping AST Record Layout
71 // CHECK-X64: *** Dumping AST Record Layou
    [all...]
  /external/libchrome/base/trace_event/
trace_config_unittest.cc 24 "\"record_mode\":\"record-until-full\""
30 TraceConfig config("", "record-until-full");
35 EXPECT_STREQ("record-until-full", config.ToTraceOptionsString().c_str());
37 config = TraceConfig("", "record-continuously");
42 EXPECT_STREQ("record-continuously", config.ToTraceOptionsString().c_str());
51 config = TraceConfig("", "record-as-much-as-possible");
56 EXPECT_STREQ("record-as-much-as-possible",
59 config = TraceConfig("", "record-until-full, enable-sampling");
64 EXPECT_STREQ("record-until-full,enable-sampling",
67 config = TraceConfig("", "enable-systrace, record-continuously")
    [all...]
  /external/llvm/docs/
BitCodeFormat.rst 36 format, then describes the record structure used by LLVM IR files.
158 unabbreviated record.
161 `abbreviated record encoding`_.
183 stream, and is set every time a block record is entered. The block entry
206 record. The ``blockid`` value is encoded as an 8-bit VBR identifier, and
220 The ``END_BLOCK`` abbreviation ID specifies the end of the current block record.
229 Data records consist of a record code and a number of (up to) 64-bit integer
232 unabbrev record, or with an abbreviation. In the LLVM IR format, for example,
233 there is a record which encodes the target triple of a module. The code is
234 ``MODULE_CODE_TRIPLE``, and the values of the record are the ASCII codes for th
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 1 //===- Record.cpp - Record implementation ---------------------------------===//
10 // Implement the tablegen record classes.
14 #include "llvm/TableGen/Record.h"
154 RecordRecTy *RecordRecTy::get(Record *R) {
170 for (Record *SC : RTy->getRecord()->getSuperClasses())
186 // If one is a Record type, check superclasses
189 for (Record *SuperRec1 : RecTy1->getRecord()->getSuperClasses()) {
198 for (Record *SuperRec2 : RecTy2->getRecord()->getSuperClasses()) {
349 Init *BitsInit::resolveReferences(Record &R, const RecordVal *RV) const
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 26 #include "llvm/TableGen/Record.h"
43 std::map<const Record*, std::vector<Record*> > Mapping;
46 std::vector<Record*> DiagGroups
49 std::vector<Record*> SubGroups =
56 const std::vector<Record*> &getParents(const Record *Group) {
63 getCategoryFromDiagGroup(const Record *Group,
71 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
81 static std::string getDiagnosticCategory(const Record *R
    [all...]
ClangCommentCommandInfoEmitter.cpp 15 #include "llvm/TableGen/Record.h"
29 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command");
31 Record &Tag = *Tags[i];
65 Record &Tag = *Tags[i];
117 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command");
119 Record &Tag = *Tags[i];
  /external/clang/include/clang/Serialization/
ASTWriter.h 269 /// just after the stmt record.
298 /// record) to the macro IDs.
347 /// record containing modifications to them.
360 /// separate record for these declarations, which are provided to the AST
365 /// record.
545 void WriteAttributes(ArrayRef<const Attr*> Attrs, RecordDataImpl &Record);
576 void AddFunctionDefinition(const FunctionDecl *FD, RecordData &Record);
616 void AddToken(const Token &Tok, RecordDataImpl &Record);
619 void AddSourceLocation(SourceLocation Loc, RecordDataImpl &Record);
622 void AddSourceRange(SourceRange Range, RecordDataImpl &Record);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
naming.py 29 because a bucket name can appear in a DNS record as part of a CNAME
103 3. Adding a DNS TXT record to a domain's DNS configuration.
106 are probably adequate for most situations. DNS TXT record verification is
109 a site creates a DNS TXT record to verify ownership of a domain, it takes
112 "example.com." If they complete the DNS TXT record verification, only they
123 nobody has used the DNS TXT record method to verify domain ownership of a
126 As an example, assume that nobody has used the DNS TXT record method to verify
140 use the DNS TXT record verification method to verify that you own or control a
146 their domain ownership by using the DNS TXT record verification method.
148 For example, if you use the DNS TXT record verification method to verify you
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DeletedContacts.java 69 for (String[] record : records) {
70 if (Long.parseLong(record[0]) == ids.mContactId) {
72 assertTrue(Long.parseLong(record[1]) > start);
122 for (String[] record : records) {
124 long contactId = Long.parseLong(record[0]);
129 assertTrue(Long.parseLong(record[1]) > start);
  /external/avahi/avahi-core/
browse-service.c 51 AvahiRecord *record,
63 if (record) {
66 assert(record->key->type == AVAHI_DNS_TYPE_PTR);
68 if (event == AVAHI_BROWSER_NEW && avahi_server_is_service_local(b->server, interface, protocol, record->data.ptr.name))
71 if (avahi_service_name_split(record->data.ptr.name, service, sizeof(service), type, sizeof(type), domain, sizeof(domain)) < 0) {
72 avahi_log_warn("Failed to split '%s'", record->key->name);
rrlist.c 37 AvahiRecord *record; member in struct:AvahiRecordListItem
82 avahi_record_unref(i->record);
106 r = avahi_record_ref(i->record);
129 if (avahi_record_equal_no_ttl(i->record, r))
133 if (avahi_record_equal_no_ttl(i->record, r))
156 i->record = avahi_record_ref(r);
  /external/avahi/avahi-daemon/
dbus-record-browser.c 101 AvahiRecord *record,
127 assert(record);
133 DBUS_TYPE_STRING, &record->key->name,
134 DBUS_TYPE_UINT16, &record->key->clazz,
135 DBUS_TYPE_UINT16, &record->key->type,
139 if ((size = avahi_rdata_serialize(record, rdata, sizeof(rdata))) == (size_t) -1 ||
  /external/libavc/encoder/
ih264e_rc_mem_interface.h 126 * @brief This function fills memory record attributes
129 * This function fills memory record attributes
135 * size of the record
156 * @brief This function fills memory record attributes
159 * This function fills memory record attributes
165 * handle to the memory record storage space
irc_mem_req_and_acq.h 126 * @brief This function fills memory record attributes
129 * This function fills memory record attributes
135 * size of the record
156 * @brief This function fills memory record attributes
159 * This function fills memory record attributes
165 * handle to the memory record storage space
  /external/llvm/include/llvm/TableGen/
Record.h 1 //===- llvm/TableGen/Record.h - Classes for Table Records -------*- C++ -*-===//
32 class Record;
193 Record *Rec;
194 explicit RecordRecTy(Record *R) : RecTy(RecordRecTyKind), Rec(R) {}
195 friend class Record;
202 static RecordRecTy *get(Record *R);
204 Record *getRecord() const { return Rec; }
317 /// they are of record type.
327 virtual Init *getFieldInit(Record &R, const RecordVal *RV,
337 virtual Init *resolveReferences(Record &R, const RecordVal *RV) const
    [all...]
  /packages/apps/Nfc/tests/src/com/android/nfc/snep/
SnepValidationServerTests.java 112 NdefRecord record = msg.getRecords()[0]; local
113 ByteArrayWrapper id = (record.getId().length > 0) ?
114 new ByteArrayWrapper(record.getId()) : DEFAULT_NDEF;
122 NdefRecord record = msg.getRecords()[0]; local
123 ByteArrayWrapper id = (record.getId().length > 0) ?
124 new ByteArrayWrapper(record.getId()) : DEFAULT_NDEF;
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityRecord.java 26 * Represents a record in an {@link AccessibilityEvent} and contains information
29 * constructed event. The parent may optionally append a record for itself
36 * Once the accessibility event containing a record is dispatched the record is
721 * given record.
725 public static AccessibilityRecord obtain(AccessibilityRecord record) {
727 clone.init(record);
740 AccessibilityRecord record = sPool; local
743 record.mNext = null;
744 record.mIsInPool = false
    [all...]
  /packages/services/Car/service/src/com/android/car/
CarSensorService.java 168 SensorRecord record = new SensorRecord(); local
169 record.lastEvent = event;
170 mSensorRecords.put(type,record);
238 SensorRecord record = mSensorRecords.get(event.sensorType); local
239 if (record != null) {
240 if (record.lastEvent == null) {
241 record.lastEvent = event;
242 } else if (record.lastEvent.timeStampNs < event.timeStampNs) {
243 record.lastEvent = event;
328 SensorRecord record = mSensorRecords.get(sensorType) local
457 SensorRecord record = null; local
564 SensorRecord record = null; local
610 SensorRecord record = new SensorRecord(); local
949 SensorRecord record = mSensorRecords.get(sensor); local
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
ihex.c 31 DATA RECORD
34 4..5 High byte of the record load address
35 6..7 Low byte of the record load address
36 8..9 Record type, must be "00"
42 END RECORD
47 8..9 Record type, must be "01"
55 DATA RECORD
57 2..3 The byte count of this record, hex notation
58 4..5 High byte of the record load address
59 6..7 Low byte of the record load addres
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixGrabber.java 28 * Record the current modelView and projection matrix state.
38 * Record the current modelView matrix state. Has the side effect of
47 * Record the current projection matrix state. Has the side effect of
  /external/autotest/client/site_tests/hardware_PerfCounterVerification/
control 27 "stat" and "record -b" (for branch record).
38 perf_cmd='record -b', events=('br_inst_retired.all_branches',),

Completed in 3057 milliseconds

<<11121314151617181920>>