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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkRecordPattern.h 106 // - search scans through the record to look for matches;
122 SK_ALWAYS_INLINE int match(SkRecord* record, int i) {
123 i = this->matchFirst(&fFirst, record, i);
124 return i > 0 ? fRest.match(record, i) : 0;
129 SK_ALWAYS_INLINE bool search(SkRecord* record, int* begin, int* end) {
130 for (*begin = *end; *begin < record->count(); ++(*begin)) {
131 *end = this->match(record, *begin);
148 int matchFirst(T* first, SkRecord* record, int i) {
149 if (i < record->count()) {
150 if (record->mutate<bool>(i, *first))
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaInformationRecords.java 22 public Object record; field in class:CdmaInformationRecords
25 * Record type identifier
44 record = new CdmaDisplayInfoRec(id, p.readString());
50 record = new CdmaNumberInfoRec(id, p.readString(), p.readInt(), p.readInt(),
55 record = new CdmaSignalInfoRec(p.readInt(), p.readInt(), p.readInt(), p.readInt());
59 record = new CdmaRedirectingNumberInfoRec(p.readString(), p.readInt(), p.readInt(),
64 record = new CdmaLineControlInfoRec(p.readInt(), p.readInt(), p.readInt(),
69 record = new CdmaT53ClirInfoRec(p.readInt());
73 record = new CdmaT53AudioControlInfoRec(p.readInt(), p.readInt());
79 throw new RuntimeException("RIL_UNSOL_CDMA_INFO_REC: unsupported record. Got
    [all...]
  /system/core/bootstat/
boot_event_record_store.cpp 35 // Given a boot even record file at |path|, extracts the event's relative time
36 // from the record into |uptime|.
49 // validity of the file mtime value, i.e., to check that the record file
89 // Writing the value as content in the record file is a debug measure to
90 // ensure the validity of the file mtime value, i.e., to check that the record
121 const std::string& event, BootEventRecord* record) const {
122 CHECK_NE(static_cast<BootEventRecord*>(nullptr), record); local
128 LOG(ERROR) << "Failed to parse boot time record: " << record_path;
132 *record = std::make_pair(event, uptime);
143 // so crash out if the record store doesn't exist
154 BootEventRecord record; local
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 24 #include "llvm/TableGen/Record.h"
38 /// The record from the .td files corresponding to this instruction
39 const Record* Rec;
40 /// The OpPrefix field from the record
42 /// The OpMap field from the record
44 /// The opcode field from the record; this is the opcode used in the Intel
47 /// The form field from the record
49 // The encoding field from the record
51 /// The OpSize field from the record
53 /// The AdSize field from the record
    [all...]
  /external/autotest/site_utils/rpm_control_system/
rpm_logging_config.py 44 def emit(self, record):
45 """Emit a log record.
47 This subclassed version only emits the log record if emails are not
50 @param record: Log record object we want to emit/record.
55 record.msg += ('\n\nTo disable these emails use rpm_client from your '
58 return super(SuspendableSMTPHandler, self).emit(record)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/kinesis/
test_kinesis.py 78 record = {
83 response = kinesis.put_records([record, record.copy()], 'test')
96 for record in response['Records']:
97 if 'Data' in record:
98 collected_records.append(record['Data'])
107 for record in collected_records:
108 self.assertEqual(data, record)
  /external/clang/test/CodeGen/
pointer-signext.c 10 #define CR(Record, TYPE, Field) \
11 ((TYPE *) ((unsigned char *) (Record) - (unsigned char *) &(((TYPE *) 0)->Field)))
  /external/libcap/doc/
cap_copy_ext.3 31 function in order to hold the capability data record created from
39 and returns the length of the resulting data record. The size parameter
40 represents the maximum size, in bytes, of the resulting data record. The
44 persistent data record. It is the responsibility of the user to
52 copies a capability state from a capability data record in user-managed
56 the capability state from the record pointed to by
63 Note that the record pointed to by
76 returns the length required to hold a capability data record on success,
  /external/skia/tools/VisualBench/
VisualLightweightBenchModule.h 34 struct Record {
38 SkTArray<Record> fRecords;
  /frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
AccessibilityRecordCompatJellyBean.java 27 public static void setSource(Object record, View root, int virtualDescendantId) {
28 ((AccessibilityRecord) record).setSource(root, virtualDescendantId);
  /libcore/support/src/test/java/libcore/tlswire/record/
TlsProtocols.java 17 package libcore.tlswire.record;
20 * Protocols that can run over the TLS Record Protocol from TLS 1.2 RFC 5246.
  /packages/apps/SoundRecorder/res/values-tl/
strings.xml 20 <string name="record_your_message" msgid="1583671906691662148">"I-record ang iyong mensahe"</string>
21 <string name="message_recorded" msgid="381539460921872233">"Na-record ang mensahe"</string>
23 <string name="recording" msgid="4426791467211376099">"Nagre-record"</string>
24 <string name="recording_stopped" msgid="1580278719585249612">"Itinigil ang pag-record"</string>
36 <string name="audio_db_artist_name" msgid="961640229118120080">"Iyong mga pag-record"</string>
37 <string name="audio_db_album_name" msgid="9072588113803264440">"Mga pag-record ng audio"</string>
38 <string name="audio_db_playlist_name" msgid="5592939050047058162">"Aking mga pag-record"</string>
42 <string name="error_mediadb_new_record" msgid="261714902333432462">"Hindi mai-save na-record na audio."</string>
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 14 #include "llvm/TableGen/Record.h"
28 typedef std::multimap<Record*, Record*> ChildMap;
32 Record Root;
44 // the record's name plus the base suffix, but if it is the root node and
46 std::string baseName(Record &R) {
53 std::pair<Record *, Record *> EmitNode (const ChildMap &Tree, raw_ostream& OS,
54 Record *Base);
72 std::pair<Record *, Record *> ClangASTNodesEmitter::EmitNode
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/csv/
reader.go 7 // A csv file contains zero or more records of one or more fields per record.
8 // Each record is separated by the newline character. The final record may
92 // If FieldsPerRecord is positive, Read requires each record to
94 // the number of fields in the first record, so that future records must
105 FieldsPerRecord int // number of expected fields per record
132 // Read reads one record from r. The record is a slice of strings with each
134 func (r *Reader) Read() (record []string, err error) {
136 record, err = r.parseRecord(
    [all...]
  /prebuilts/go/linux-x86/src/encoding/csv/
reader.go 7 // A csv file contains zero or more records of one or more fields per record.
8 // Each record is separated by the newline character. The final record may
92 // If FieldsPerRecord is positive, Read requires each record to
94 // the number of fields in the first record, so that future records must
105 FieldsPerRecord int // number of expected fields per record
132 // Read reads one record from r. The record is a slice of strings with each
134 func (r *Reader) Read() (record []string, err error) {
136 record, err = r.parseRecord(
    [all...]
  /art/test/513-array-deopt/src/
Main.java 22 // Up to this point, we record that the lower bound (inclusive) is 3.
23 // The next instruction will record that the lower bound is 5.
34 // Up to this point, we record that the lower bound (inclusive) is 3.
35 // The next instruction will record that the lower bound is 1.
  /development/samples/browseable/WearSpeakerSample/
_index.jd 8 A sample that shows how you can record voice using the microphone on a wearable and
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
record-event-listener.rb 19 def record( event_message, *interpolation_arguments ) method in class:ANTLR3.Debug.RecordEventListener
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
README.chromium 13 This contains webpagereplay used by telemetry for record & replay web requests &
  /external/clang/test/CodeGenCXX/
override-layout.cpp 1 // RUN: %clang_cc1 -w -fdump-record-layouts-simple %s > %t.layouts
2 // RUN: %clang_cc1 -w -fdump-record-layouts-simple %s > %t.before
3 // RUN: %clang_cc1 -w -DPACKED= -DALIGNED16= -fdump-record-layouts-simple -foverride-record-layout=%t.layouts %s > %t.after
  /external/google-breakpad/src/tools/python/
filter_syms.py 39 updating any references to the FILE records in the other record types.
50 """Unsupported Breakpad symbol record exception class."""
97 def _ParseRecord(self, record):
98 """Parses a single Breakpad symbol record - a single line from the symbol
105 record_type = record.partition(' ')[0]
107 return self._ParseFileRecord(record)
109 return self._ParseLineRecord(record)
111 # Simply pass the record through unaltered.
112 return record
134 The actual path to use when writing the FILE record
    [all...]
  /external/llvm/test/tools/gold/X86/
thinlto.ll 19 ; COMBINED-NEXT: <ENTRY {{.*}} record string = '{{.*}}/test/tools/gold/X86/Output/thinlto.ll.tmp{{.*}}.o'
20 ; COMBINED-NEXT: <ENTRY {{.*}} record string = '{{.*}}/test/tools/gold/X86/Output/thinlto.ll.tmp{{.*}}.o'
27 ; COMBINED-NEXT: <COMBINED_FNENTRY {{.*}} record string = '{{f|g}}'
28 ; COMBINED-NEXT: <COMBINED_FNENTRY {{.*}} record string = '{{f|g}}'
  /external/selinux/libsemanage/include/semanage/
booleans_policy.h 20 int (*handler) (const semanage_bool_t * record,
fcontexts_policy.h 22 record, void *varg),
interfaces_policy.h 22 record, void *varg),

Completed in 4625 milliseconds

1 2 3 4 5 6 7 8 91011>>