/external/conscrypt/openjdk-integ-tests/src/test/resources/crypto/ |
parse_records.py | 38 def format_records(record): 42 if 'key' in record and 'iv' in record and 'plaintext' in record and 'ciphertext' in record: 44 return ["{key},{iv},{plaintext},{ciphertext}".format(**record)] 45 elif 'key' in record and 'nonce' in record and 'plaintext' in record and 'ciphertext' in record 116 record = {} variable 122 record = {} variable [all...] |
/external/skia/tests/ |
RecordTest.cpp | 31 void apply(const SkRecord& record) { 32 for (int i = 0; i < record.count(); i++) { 33 record.visit(i, *this); 49 void apply(SkRecord* record) { 50 for (int i = 0; i < record->count(); i++) { 51 record->mutate(i, *this); 56 #define APPEND(record, type, ...) new (record.append<type>()) type{__VA_ARGS__} 59 DEF_TEST(Record, r) { 60 SkRecord record; local 82 SkRecord record; local 108 SkRecord record; local [all...] |
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...] |
/external/skqp/tests/ |
RecordTest.cpp | 31 void apply(const SkRecord& record) { 32 for (int i = 0; i < record.count(); i++) { 33 record.visit(i, *this); 49 void apply(SkRecord* record) { 50 for (int i = 0; i < record->count(); i++) { 51 record->mutate(i, *this); 56 #define APPEND(record, type, ...) new (record.append<type>()) type{__VA_ARGS__} 59 DEF_TEST(Record, r) { 60 SkRecord record; local 82 SkRecord record; local 108 SkRecord record; local [all...] |
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...] |
/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...] |
/build/make/core/ |
host_prebuilt.mk | 17 $(call record-module-type,HOST_PREBUILT)
|
host_static_test_lib.mk | 5 $(call record-module-type,HOST_STATIC_TEST_LIBRARY)
|
static_test_lib.mk | 5 $(call record-module-type,STATIC_TEST_LIBRARY)
|
target_test_config.mk | 21 $(call record-module-type,TARGET_TEST_CONFIG)
|
host_test_config.mk | 21 $(call record-module-type,HOST_TEST_CONFIG)
|
host_dalvik_static_java_library.mk | 16 $(call record-module-type,HOST_DALVIK_STATIC_JAVA_LIBRARY)
|
/external/skia/tools/ |
DumpRecord.h | 14 * Draw the record to the supplied canvas via SkRecords::Draw, while 20 void DumpRecord(const SkRecord& record,
|
/external/skqp/tools/ |
DumpRecord.h | 14 * Draw the record to the supplied canvas via SkRecords::Draw, while 20 void DumpRecord(const SkRecord& record,
|
/external/v8/tools/clang/blink_gc_plugin/ |
CollectVisitor.cpp | 22 bool CollectVisitor::VisitCXXRecordDecl(CXXRecordDecl* record) { 23 if (record->hasDefinition() && record->isCompleteDefinition()) 24 record_decls_.push_back(record);
|
/external/v8/tools/clang/plugins/ |
Util.h | 13 // specified record, if any. Unnamed namespaces will be identified as 15 std::string GetNamespace(const clang::Decl* record);
|
/external/skia/src/core/ |
SkRecordOpts.cpp | 24 // record, and [begin,end) span of the commands that matched. 26 static bool apply(Pass* pass, SkRecord* record) { 31 while (match.search(record, &begin, &end)) { 32 changed |= pass->onMatch(record, &match, begin, end); 39 static void multiple_set_matrices(SkRecord* record) { 46 bool onMatch(SkRecord* record, Match* pattern, int begin, int end) { 47 record->replace<NoOp>(begin); // first SetMatrix 51 while (apply(&pass, record)); 57 static void apply_matrix_to_draw_params(SkRecord* record) { 64 bool onMatch(SkRecord* record, Pattern* pattern, int begin, int end) [all...] |
/external/skqp/src/core/ |
SkRecordOpts.cpp | 24 // record, and [begin,end) span of the commands that matched. 26 static bool apply(Pass* pass, SkRecord* record) { 31 while (match.search(record, &begin, &end)) { 32 changed |= pass->onMatch(record, &match, begin, end); 39 static void multiple_set_matrices(SkRecord* record) { 46 bool onMatch(SkRecord* record, Match* pattern, int begin, int end) { 47 record->replace<NoOp>(begin); // first SetMatrix 51 while (apply(&pass, record)); 57 static void apply_matrix_to_draw_params(SkRecord* record) { 64 bool onMatch(SkRecord* record, Pattern* pattern, int begin, int end) [all...] |
/cts/tests/accessibility/src/android/view/accessibility/cts/ |
AccessibilityRecordTest.java | 69 static void assertAccessibilityRecordCleared(AccessibilityRecord record) { 70 TestCase.assertEquals("addedCount not properly recycled", -1, record.getAddedCount()); 71 TestCase.assertNull("beforeText not properly recycled", record.getBeforeText()); 72 TestCase.assertFalse("checked not properly recycled", record.isChecked()); 73 TestCase.assertNull("className not properly recycled", record.getClassName()); 75 record.getContentDescription()); 77 record.getCurrentItemIndex()); 78 TestCase.assertFalse("enabled not properly recycled", record.isEnabled()); 79 TestCase.assertEquals("fromIndex not properly recycled", -1, record.getFromIndex()); 80 TestCase.assertFalse("fullScreen not properly recycled", record.isFullScreen()) [all...] |
/external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/ |
SLF4JBridgeHandler.java | 197 protected Logger getSLF4JLogger(LogRecord record) { 198 String name = record.getLoggerName(); 205 protected void callLocationAwareLogger(LocationAwareLogger lal, LogRecord record) { 206 int julLevelValue = record.getLevel().intValue(); 220 String i18nMessage = getMessageI18N(record); 221 lal.log(null, FQCN, slf4jLevel, i18nMessage, null, record.getThrown()); 224 protected void callPlainSLF4JLogger(Logger slf4jLogger, LogRecord record) { 225 String i18nMessage = getMessageI18N(record); 226 int julLevelValue = record.getLevel().intValue(); 228 slf4jLogger.trace(i18nMessage, record.getThrown()) [all...] |
/external/v8/src/ |
locked-queue.h | 19 template <typename Record> 24 inline void Enqueue(const Record& record); 25 inline bool Dequeue(Record* record); 27 inline bool Peek(Record* record) const;
|
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/tlswire/record/ |
TlsProtocols.java | 17 package com.android.org.conscrypt.tlswire.record; 19 * Protocols that can run over the TLS Record Protocol from TLS 1.2 RFC 5246.
|
/external/conscrypt/testing/src/main/java/org/conscrypt/tlswire/record/ |
TlsProtocols.java | 16 package org.conscrypt.tlswire.record; 18 * Protocols that can run over the TLS Record Protocol from TLS 1.2 RFC 5246.
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkAllocationCallbackUtil.cpp | 132 AllocationCallbackRecord record; local 134 record.type = TYPE_ALLOCATION; 135 record.data.allocation.size = size; 136 record.data.allocation.alignment = alignment; 137 record.data.allocation.scope = scope; 138 record.data.allocation.returnedPtr = returnedPtr; 140 return record; 145 AllocationCallbackRecord record; local 147 record.type = TYPE_REALLOCATION; 148 record.data.reallocation.original = original 159 AllocationCallbackRecord record; local 169 AllocationCallbackRecord record; local 181 AllocationCallbackRecord record; local 334 AllocationCallbackRecord record; member in struct:vk::__anon18806::AllocationSlot 373 const AllocationCallbackRecord& record = *callbackIter; local 597 const AllocationCallbackRecord& record = results.liveAllocations[liveNdx]; local [all...] |
/external/toolchain-utils/automation/common/ |
logger.py | 85 def formatTime(self, record): 86 ct = self.converter(record.created) 88 return '%s.%02d' % (t, record.msecs / 10) 90 def formatLevelName(self, record): 91 if record.levelname in ['WARNING', 'CRITICAL']: 92 levelname = record.levelname[:4] 94 levelname = record.levelname 99 def formatMessagePrefix(self, record): 101 return ' %s%s:%s ' % (self._coder('black', 'bold'), record.prefix, 106 def format(self, record) [all...] |