/external/v8/tools/clang/plugins/ |
ChromeClassTester.h | 48 // Utility method to check whether the given record has any of the ignored 50 bool HasIgnoredBases(const clang::CXXRecordDecl* record); 66 clang::CXXRecordDecl* record) = 0;
|
ChromeClassTester.cpp | 57 if (CXXRecordDecl* record = dyn_cast<CXXRecordDecl>(tag)) { 61 std::string base_name = record->getNameAsString(); 70 CheckChromeClass(location_type, location, record); 126 bool ChromeClassTester::HasIgnoredBases(const CXXRecordDecl* record) { 127 for (const auto& base : record->bases()) {
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
MemoryHandlerTest.java | 138 LogRecord record = new LogRecord(Level.FINER, "MSG1"); local 139 assertFalse(handler.isLoggable(record)); 141 record = new LogRecord(Level.FINE, "MSG2"); 142 assertTrue(handler.isLoggable(record)); 144 record = new LogRecord(Level.CONFIG, "MSG3"); 145 assertTrue(handler.isLoggable(record)); 147 record = new LogRecord(Level.CONFIG, "false"); 148 assertFalse(handler.isLoggable(record)); 151 record = new LogRecord(Level.CONFIG, "false"); 152 assertTrue(handler.isLoggable(record)); [all...] |
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/ |
StatsRecorderImplTest.java | 98 statsRecorder.newMeasureMap().put(MEASURE_DOUBLE, 1.0).record(); 101 // record() should have used the default TagContext, so the tag value should be null. 122 statsRecorder.newMeasureMap().put(MEASURE_DOUBLE, 1.0).record(); 128 // record() should have used the given TagContext. 148 .record(new SimpleTagContext(Tag.create(KEY, VALUE))); 226 .record(context); 234 .record(context); 242 .record(context); 250 .record(context); 258 .record(context) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/ |
makeunicodedata.py | 112 record = unicode.table[char]
113 if record:
115 category = CATEGORY_NAMES.index(record[2])
116 combining = int(record[3])
117 bidirectional = BIDIRECTIONAL_NAMES.index(record[4])
118 mirrored = record[9] == "Y"
119 eastasianwidth = EASTASIANWIDTH_NAMES.index(record[15])
120 normalizationquickcheck = record[17]
144 record = unicode.table[char]
145 if record: [all...] |
/external/python/cpython2/Tools/unicode/ |
makeunicodedata.py | 112 record = unicode.table[char] 113 if record: 115 category = CATEGORY_NAMES.index(record[2]) 116 combining = int(record[3]) 117 bidirectional = BIDIRECTIONAL_NAMES.index(record[4]) 118 mirrored = record[9] == "Y" 119 eastasianwidth = EASTASIANWIDTH_NAMES.index(record[15]) 120 normalizationquickcheck = record[17] 144 record = unicode.table[char] 145 if record [all...] |
/external/python/cpython3/Tools/unicode/ |
makeunicodedata.py | 145 record = unicode.table[char] 146 if record: 148 category = CATEGORY_NAMES.index(record[2]) 149 combining = int(record[3]) 150 bidirectional = BIDIRECTIONAL_NAMES.index(record[4]) 151 mirrored = record[9] == "Y" 152 eastasianwidth = EASTASIANWIDTH_NAMES.index(record[15]) 153 normalizationquickcheck = record[17] 177 record = unicode.table[char] 178 if record [all...] |
/device/generic/goldfish/gatekeeper/ |
SoftGateKeeper.h | 111 virtual bool GetFailureRecord(uint32_t uid, secure_id_t user_id, failure_record_t *record, 119 memcpy(record, stored, sizeof(*record)); 131 virtual bool WriteFailureRecord(uint32_t uid, failure_record_t *record, bool /* secure */) { 132 failure_map_[uid] = *record;
|
/device/google/cuttlefish_common/guest/hals/gatekeeper/ |
SoftGateKeeper.h | 111 virtual bool GetFailureRecord(uint32_t uid, secure_id_t user_id, failure_record_t *record, 119 memcpy(record, stored, sizeof(*record)); 131 virtual bool WriteFailureRecord(uint32_t uid, failure_record_t *record, bool /* secure */) { 132 failure_map_[uid] = *record;
|
/external/autotest/site_utils/ |
log_socket_server.py | 28 This basically logs the record using whatever logging policy is 35 followed by the LogRecord in pickle format. Logs the record 47 record = logging.makeLogRecord(obj) 48 self.handle_log_record(record) 60 def handle_log_record(self, record): 61 """Process log record. 63 @param record: log record. 66 # implied by the record. 70 name = record.nam [all...] |
/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/python/cpython2/Lib/plat-os2emx/ |
pwd.py | 15 per record (line), separated by a colon: 46 getpwuid(uid) - return the record for user-id uid as a 7-tuple 48 getpwnam(name) - return the record for user 'name' as a 7-tuple 50 getpwall() - return a list of 7-tuples, each tuple being one record 106 def __get_field_sep(record): 110 if record.count(c) == 6: 118 # class to match the new record field name accessors. 177 record = Passwd(*fields) 179 uidx[fields[2]] = record 181 namx[fields[0]] = record [all...] |
/external/tensorflow/tensorflow/core/summary/ |
loader.cc | 56 Flag("events", &events, "TensorFlow record proto event log file"), 64 std::cerr << "The loader tool imports tf.Event record files, created by\n" 99 string record; local 102 Status s = reader.ReadRecord(&offset, &record); 105 if (!ParseProtoUnlimited(event.get(), record)) { 106 LOG(FATAL) << "Corrupt tf.Event record" 107 << " offset=" << (offset - record.size()) 108 << " size=" << static_cast<int>(record.size());
|
/external/xz-java/src/org/tukaani/xz/index/ |
IndexDecoder.java | 63 // Catch Record counts that obviously too high to be valid. 70 // If the Record count doesn't fit into an int, we cannot 85 int record = 0; local 89 // Get the next Record. 100 // Add the new Record. 101 unpadded[record] = blocksSum + unpaddedSize; 102 uncompressed[record] = uncompressedSum + uncompressedSize; 103 ++record; 105 assert record == recordCount;
|
/external/perfetto/src/trace_processor/ |
fuchsia_trace_tokenizer.cc | 35 // Record types 81 // 2) |leftover_bytes_| does not contain a complete record. 85 // there is a record that started in an earlier call, then a new buffer is 86 // created here to make the bytes in that record contiguous. 88 // Because some of the bytes in |data| might belong to the record starting in 89 // |leftover_bytes_|, we track the offset at which the following record will 93 // Look for a record starting with the leftover bytes. 96 // record, so just add the new bytes to |leftover_bytes_| and return. 102 // There is a record starting from leftover bytes. 113 // Read the record length from the header 168 TraceBlobView record = local 191 const uint64_t* record = reinterpret_cast<const uint64_t*>(tbv.data()); local [all...] |
/external/autotest/client/bin/ |
partition.py | 86 job.record('FAIL', None, wipe_cmd, error.format_error()) 89 job.record('GOOD', None, wipe_cmd) 292 p.unmount(record=False) 431 self.unmount(ignore_status=True, record=False) 534 def mkfs(self, fstype=None, args='', record=True): 540 @param record: if set, output result of mkfs operation to autotest 581 if record: 582 self.job.record('FAIL', None, mkfs_cmd, error.format_error()) 585 if record: 586 self.job.record('FAIL', None, mkfs_cmd, error.format_error() [all...] |
/external/libaom/libaom/av1/encoder/ |
level.c | 441 FrameRecord *const record = &buffer->buf[new_idx]; local 442 record->ts_start = ts_start; 443 record->ts_end = ts_end; 444 record->pic_size = pic_size; 445 record->frame_header_count = frame_header_count; 446 record->tiles = tiles; 447 record->show_frame = show_frame; 448 record->show_existing_frame = show_existing_frame; 467 const FrameRecord *const record = &buffer->buf[index]; local 468 if (!record->show_frame) continue 487 const FrameRecord *const record = &buffer->buf[index]; local [all...] |
/external/sfntly/cpp/src/sfntly/ |
font.cc | 131 for (HeaderTagSortedSet::iterator record = sorted_headers.begin(), 133 record != record_end; ++record) { 134 fos->WriteULong((*record)->tag()); 135 fos->WriteULong((int32_t)((*record)->checksum())); 136 fos->WriteULong((*record)->offset()); 137 fos->WriteULong((*record)->length()); 145 for (TableHeaderList::iterator record = table_headers->begin(), 147 record != end_of_headers; ++record) { [all...] |
/external/selinux/libsepol/src/ |
context.c | 142 * Create a context structure from the given record 147 const sepol_context_t * record) 156 char *user = strdup(sepol_context_get_user(record)); 157 char *role = strdup(sepol_context_get_role(record)); 158 char *type = strdup(sepol_context_get_type(record)); 159 const char *mls = sepol_context_get_mls(record); 241 * Create a record from the given context structure 246 sepol_context_t ** record) 279 *record = tmp_record; 283 ERR(handle, "could not create context record"); [all...] |
/external/tensorflow/tensorflow/python/tpu/ |
datasets_test.py | 92 record = compat.as_bytes('Record %d of file %d' % (j, i)) 93 writer.write(record) 94 all_contents.append(record) 119 record = compat.as_bytes('Record %d of file %d' % (j, i)) 120 writer.write(record) 121 all_contents.append(record) 151 record = MakeRecord(i, j) 152 f.write(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/clang/include/clang/CodeGen/ |
SwiftCallingConv.h | 66 void addTypedData(const RecordDecl *record, CharUnits begin); 67 void addTypedData(const RecordDecl *record, CharUnits begin, 150 /// Should a C++ record type be passed and returned indirectly? 152 const CXXRecordDecl *record);
|
/external/clang/unittests/Tooling/ |
RecursiveASTVisitorTest.cpp | 79 bool VisitCXXRecordDecl(CXXRecordDecl* record) { 80 if (record->isLambda() && !record->isImplicit())
|
/external/opencensus-java/api/src/test/java/io/opencensus/stats/ |
NoopStatsTest.java | 112 // The NoopStatsRecorder should do nothing, so this test just checks that record doesn't throw an 116 NoopStats.getNoopStatsRecorder().newMeasureMap().put(MEASURE, 5).record(tagContext); 119 // The NoopStatsRecorder should do nothing, so this test just checks that record doesn't throw an 123 NoopStats.getNoopStatsRecorder().newMeasureMap().put(MEASURE, 6).record(); 131 measureMap.record(null);
|
/external/python/setuptools/setuptools/command/ |
install.py | 42 if not self.root and not self.record: 44 "You must specify --record or --root when building system" 101 self.distribution, args="x", root=self.root, record=self.record,
|