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

12 3 4 5 6 7 8 91011>>

  /external/avahi/avahi-core/
response-sched.c 60 AvahiRecord *record; member in struct:AvahiResponseJob
77 static AvahiResponseJob* job_new(AvahiResponseScheduler *s, AvahiRecord *record, AvahiResponseJobState state) {
81 assert(record);
89 rj->record = avahi_record_ref(record);
118 avahi_record_unref(rj->record);
205 /* Try to add this record to the packet */
206 if (!avahi_dns_packet_append_record(p, rj->record, rj->flush_cache, 0))
209 /* Ok, this record will definitely be sent, so schedule the
211 avahi_server_enumerate_aux_records(s->interface->monitor->server, s->interface, rj->record, enumerate_aux_records_callback, rj)
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ZenModeFiltering.java 95 private static Bundle extras(NotificationRecord record) {
96 return record != null && record.sbn != null && record.sbn.getNotification() != null
97 ? record.sbn.getNotification().extras : null;
100 public boolean shouldIntercept(int zen, ZenModeConfig config, NotificationRecord record) {
101 if (isSystem(record)) {
107 ZenLog.traceIntercepted(record, "none");
110 if (isAlarm(record)) {
114 ZenLog.traceIntercepted(record, "alarmsOnly")
    [all...]
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 34 ASTWriter::RecordData &Record;
40 ASTStmtWriter(ASTWriter &Writer, ASTWriter::RecordData &Record)
41 : Writer(Writer), Record(Record) { }
54 Writer.AddSourceLocation(Args.getTemplateKeywordLoc(), Record);
55 Writer.AddSourceLocation(Args.LAngleLoc, Record);
56 Writer.AddSourceLocation(Args.RAngleLoc, Record);
58 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record);
66 Writer.AddSourceLocation(S->getSemiLoc(), Record);
67 Record.push_back(S->HasLeadingEmptyMacro)
    [all...]
  /external/clang/test/Preprocessor/
microsoft-import.c 3 #import "pp-record.h" // expected-error {{#import of type library is an unsupported Microsoft feature}}
6 #import "pp-record.h" no_namespace, auto_rename // expected-error {{#import of type library is an unsupported Microsoft feature}}
8 #import "pp-record.h" no_namespace \
  /development/samples/browseable/Camera2Video/
_index.jd 8 This sample demonstrates how to record video using Camera2 API.
  /external/llvm/test/Bitcode/
null-type.ll 4 ; CHECK: Invalid record
  /external/skia/src/pathops/
SkOpTAllocator.h 18 T* record = (T*) ptr; local
19 return record;
24 T* record = (T*) ptr; local
25 return record;
  /external/skia/tests/
FontNamesTest.cpp 18 SkOTTableName::Record nameRecord[R];
24 SkOTTableName::Record nameRecord[R];
40 /*Record*/ {
41 /*platformID*/ { SkOTTableName::Record::PlatformID::Windows },
42 /*encodingID*/ { SkOTTableName::Record::EncodingID::Windows::UnicodeBMPUCS2 },
43 /*languageID*/ { SkOTTableName::Record::LanguageID::Windows::English_UnitedStates },
44 /*nameID*/ { SkOTTableName::Record::NameID::Predefined::FontFamilyName },
60 /*Record*/ {
61 /*platformID*/ { SkOTTableName::Record::PlatformID::Windows },
62 /*encodingID*/ { SkOTTableName::Record::EncodingID::Windows::UnicodeBMPUCS2 }
115 SkOTTableName::Iterator::Record record; local
182 SkOTTableName::Iterator::Record record; local
    [all...]
RecordOptsTest.cpp 23 SkRecord record; local
24 SkRecorder recorder(&record, W, H);
30 record.replace<SkRecords::NoOp>(1); // NoOps should be allowed.
32 SkRecordNoopSaveRestores(&record);
34 REPORTER_ASSERT(r, 2 == count_instances_of_type<SkRecords::DrawRect>(record));
38 SkRecord record; local
39 SkRecorder recorder(&record, W, H);
45 SkRecordNoopSaveRestores(&record);
47 assert_type<SkRecords::NoOp>(r, record, i);
52 SkRecord record; local
75 SkRecord record; local
133 SkRecord record; local
213 SkRecord record; local
    [all...]
RecorderTest.cpp 32 void apply(const SkRecord& record) {
33 for (int i = 0; i < record.count(); i++) {
34 record.visit<void>(i, *this);
43 SkRecord record; local
44 SkRecorder recorder(&record, 1920, 1080);
49 tally.apply(record);
65 SkRecord record; local
66 SkRecorder recorder(&record, 1920, 1080);
82 SkRecord record; local
83 SkRecorder recorder(&record, 100, 100)
97 SkRecord record; local
    [all...]
  /external/snakeyaml/src/test/resources/pyyaml/
spec-02-16.data 4 home run record in 1998.
  /external/snakeyaml/src/test/resources/specification/
example2_16.yaml 4 home run record in 1998.
  /external/skia/src/core/
SkRecordOpts.cpp 23 // record, and [begin,end) span of the commands that matched.
25 static bool apply(Pass* pass, SkRecord* record) {
30 while (match.search(record, &begin, &end)) {
31 changed |= pass->onMatch(record, &match, begin, end);
38 static void multiple_set_matrices(SkRecord* record) {
45 bool onMatch(SkRecord* record, Match* pattern, int begin, int end) {
46 record->replace<NoOp>(begin); // first SetMatrix
50 while (apply(&pass, record));
56 static void apply_matrix_to_draw_params(SkRecord* record) {
63 bool onMatch(SkRecord* record, Pattern* pattern, int begin, int end)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
UserGridView.java 56 UserSwitcherController.UserRecord record = mAdapter.getItem(position);
57 if (record == null) {
61 if (record.isGuest || record.isAddUser) {
62 mUserSwitcherController.switchTo(record);
66 if (record.isCurrent) {
69 mPendingUserId = record.info.id;
70 mUserSwitcherController.switchTo(record);
79 UserSwitcherController.UserRecord record = mAdapter.getItem(position);
80 if (record == null || record.isAddUser)
142 UserSwitcherController.UserRecord record = getItem(position); local
146 nameView.setText(getName(getContext(), record)); local
154 iconView.setImageDrawable(getDrawable(getContext(), record)); local
    [all...]
  /frameworks/base/tools/preload/
Root.java 54 void indexClassOperation(Record record) {
55 Proc process = processes.get(record.pid);
59 if (record.processName.equals("dexopt")) {
63 String name = record.className;
67 switch (record.type) {
72 name, record.classLoader == 0);
84 o = process.endOperation(record.tid, record.className,
85 loadedClass, record.time)
    [all...]
  /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
326 AllocationCallbackRecord record; member in struct:vk::__anon9699::AllocationSlot
365 const AllocationCallbackRecord& record = *callbackIter; local
580 const AllocationCallbackRecord& record = results.liveAllocations[liveNdx]; local
    [all...]
  /cts/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityRecordTest.java 82 static void assertAccessibilityRecordCleared(AccessibilityRecord record) {
83 TestCase.assertEquals("addedCount not properly recycled", -1, record.getAddedCount());
84 TestCase.assertNull("beforeText not properly recycled", record.getBeforeText());
85 TestCase.assertFalse("checked not properly recycled", record.isChecked());
86 TestCase.assertNull("className not properly recycled", record.getClassName());
88 record.getContentDescription());
90 record.getCurrentItemIndex());
91 TestCase.assertFalse("enabled not properly recycled", record.isEnabled());
92 TestCase.assertEquals("fromIndex not properly recycled", -1, record.getFromIndex());
93 TestCase.assertFalse("fullScreen not properly recycled", record.isFullScreen())
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_NdefRecord.c 19 * \brief NFC Ndef Record component file.
32 * \name \name NDEF Record Tools Header
52 * Get a specific NDEF record from the data, provided by the caller. The data is a buffer holding
63 * \param[in] IsChunked This boolean tells the user that the record of a certain position within
64 * an array has the CHUNKED flag set (is a partial record). The number
67 * \param[in,out] NumberOfRawRecords Length of the Record pointer array. The caller has to provide
159 /* Check the First Record(MB = 0) for TNF = 0x06(Unchanged) */
170 /* First Record i.e., MB = 1, TNF != 0x05 and TypeLength = 0 */
191 /* For Each Record Check whether it contains the ME bit set and CF bit Set
228 short or normal record */
    [all...]
  /external/skia/include/private/
SkRecords.h 24 // A list of all the types of canvas calls we can record.
30 // types polymorphically. (See SkRecord::Record::{visit,mutate} for an example.)
71 // Defines SkRecords::Type, an enum of all record types.
145 // Using this, we guarantee the immutability of all bitmaps we record.
165 // Recording is a convenient time to cache these, or we can delay it to between record and playback.
185 #define RECORD(T, tags, ...) \
192 RECORD(NoOp, 0);
193 RECORD(Restore, 0,
196 RECORD(Save, 0);
198 RECORD(SaveLayer, 0
    [all...]
  /external/libnfc-nci/src/nfc/include/
ndef_utils.h 35 #define NDEF_SR_MASK 0x10 /* Short Record */
55 NDEF_REC_NOT_FOUND, /* 1 - No record matching the find criteria */
61 NDEF_MSG_INVALID_EMPTY_REC, /* 7 - Empty record with non-zero contents */
64 NDEF_MSG_INSUFFICIENT_MEM /* 10 - Insuffiecient memory to add record */
69 #define HR_REC_TYPE_LEN 2 /* Handover Request Record Type */
70 #define HS_REC_TYPE_LEN 2 /* Handover Select Record Type */
72 #define CR_REC_TYPE_LEN 2 /* Collision Resolution Record Type */
73 #define AC_REC_TYPE_LEN 2 /* Alternative Carrier Record Type */
74 #define ERR_REC_TYPE_LEN 3 /* Error Record Type */
110 ** Returns The record count, or 0 if the message is invalid
    [all...]
  /developers/build/prebuilts/gradle/Camera2Video/Application/src/main/res/values/
strings.xml 3 <string name="record">Record</string>
  /developers/samples/android/media/Camera2Video/Application/src/main/res/values/
strings.xml 3 <string name="record">Record</string>
  /development/samples/browseable/Camera2Video/res/values/
strings.xml 3 <string name="record">Record</string>
  /external/clang/test/Layout/
ms-x86-misalignedarray.cpp 1 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple i686-pc-win32 -fdump-record-layouts -fsyntax-only %s 2>&1 \
3 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple x86_64-pc-win32 -fdump-record-layouts -fsyntax-only %s 2>/dev/null \
10 // CHECK: *** Dumping AST Record Layout
11 // CHECK: *** Dumping AST Record Layout
12 // CHECK: *** Dumping AST Record Layout
18 // CHECK-X64: *** Dumping AST Record Layout
19 // CHECK-X64: *** Dumping AST Record Layout
20 // CHECK-X64: *** Dumping AST Record Layout
  /frameworks/support/v4/ics-mr1/android/support/v4/view/accessibility/
AccessibilityRecordCompatIcsMr1.java 26 public static int getMaxScrollX(Object record) {
27 return ((AccessibilityRecord) record).getMaxScrollX();
30 public static int getMaxScrollY(Object record) {
31 return ((AccessibilityRecord) record).getMaxScrollY();
33 public static void setMaxScrollX(Object record, int maxScrollX) {
34 ((AccessibilityRecord) record).setMaxScrollX(maxScrollX);
37 public static void setMaxScrollY(Object record, int maxScrollY) {
38 ((AccessibilityRecord) record).setMaxScrollY(maxScrollY);

Completed in 740 milliseconds

12 3 4 5 6 7 8 91011>>