HomeSort by relevance Sort by last modified time
    Searched full:record (Results 76 - 100 of 6429) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/smack/src/org/xbill/DNS/
NSRecord.java 6 * Name Server Record - contains the name server serving the named zone
17 Record
23 * Creates a new NS Record with the given data
31 /** Gets the target of the NS Record */
PTRRecord.java 6 * Pointer Record - maps a domain name representing an Internet Address to
18 Record
24 * Creates a new PTR Record with the given data
32 /** Gets the target of the PTR Record */
UNKRecord.java 9 * class can only be initialized using static Record initializers.
14 public class UNKRecord extends Record {
22 Record
37 /** Converts this Record to the String "unknown format" */
43 /** Returns the contents of this record. */
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelinePresentationModel.js 44 * @type {!Map.<!WebInspector.TimelineModel.Record, !WebInspector.TimelinePresentationModel.Record>}
62 * @param {?WebInspector.TimelineModel.Record} record
63 * @return {?WebInspector.TimelinePresentationModel.Record}
65 toPresentationRecord: function(record)
67 return record ? this._recordToPresentationRecord.get(record) || null : null;
71 * @return {!WebInspector.TimelinePresentationModel.Record}
82 /** @type {!Object.<string, !WebInspector.TimelinePresentationModel.Record>} */
    [all...]
TimelineJSProfile.js 22 * @param {!WebInspector.TimelineModel.Record} record
24 function processRecord(record)
26 if (record.type() !== WebInspector.TimelineModel.RecordType.FunctionCall &&
27 record.type() !== WebInspector.TimelineModel.RecordType.EvaluateScript)
29 var recordStartTime = record.startTime();
30 var recordEndTime = record.endTime();
31 var originalChildren = record.children().splice(0);
49 record = new WebInspector.TimelineModel.RecordImpl(timelineModel, event, record);
    [all...]
TimelineUIUtilsImpl.js 16 * @param {!WebInspector.TimelineModel.Record} record
19 isBeginFrame: function(record)
21 return record.type() === WebInspector.TimelineModel.RecordType.BeginFrame;
24 * @param {!WebInspector.TimelineModel.Record} record
27 isProgram: function(record)
29 return record.type() === WebInspector.TimelineModel.RecordType.Program;
41 * @param {!WebInspector.TimelineModel.Record} record
    [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...]
Compile.java 27 * to measure and record the memory usage of each class.
41 List<Record> records = new ArrayList<Record>();
53 records.add(new Record(clipped, lineNumber));
61 for (Record record : records) {
62 root.indexProcess(record);
65 for (Record record : records) {
66 root.indexClassOperation(record);
    [all...]
  /cts/tests/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/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/chromium_org/tools/gn/
builder.cc 71 BuilderRecord* record = local
73 if (!record) {
79 if (record->item()) {
83 err.AppendSubErr(Err(record->item()->defined_from(),
89 record->set_item(item.Pass());
95 TargetDefined(record, &err);
98 ToolchainDefined(record, &err);
108 if (record->can_resolve()) {
109 if (!ResolveItem(record, &err)) {
117 const BuilderRecord* record = GetRecord(label) local
124 const BuilderRecord* record = GetRecord(label); local
269 BuilderRecord* record = GetRecord(label); local
302 BuilderRecord* record = GetRecord(label); local
453 BuilderRecord* record = GetResolvedRecordOfType( local
467 BuilderRecord* record = GetResolvedRecordOfType( local
509 BuilderRecord* record = GetResolvedRecordOfType( local
    [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/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...]
  /external/chromium-trace/trace-viewer/src/tracing/
record_selection_dialog.css 6 .record-selection-dialog {
11 .record-selection-dialog .default-enabled-categories {
15 .record-selection-dialog .default-disabled-categories {
21 .record-selection-dialog .categories {
26 .record-selection-dialog form {
34 .record-selection-dialog .options {
40 .record-selection-dialog td {
44 .record-selection-dialog .options label {
  /external/chromium_org/sync/util/
extensions_activity.cc 9 ExtensionsActivity::Record::Record()
12 ExtensionsActivity::Record::~Record() {}
34 Record& record = records_[extension_id]; local
35 record.extension_id = extension_id;
36 record.bookmark_write_count++;
  /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
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/attr/
test-record-C0 2 command = record
5 [event:base-record]
test-record-graph-dwarf 2 command = record
5 [event:base-record]
  /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);
  /packages/apps/Bluetooth/res/values-en-rGB/
test_strings.xml 6 <string name="insert_record" msgid="1450997173838378132">"Insert record"</string>
7 <string name="update_record" msgid="2480425402384910635">"Confirm record"</string>
8 <string name="ack_record" msgid="6716152390978472184">"Ack record"</string>
9 <string name="deleteAll_record" msgid="4383349788485210582">"Delete all record"</string>
11 <string name="delete_record" msgid="4645040331967533724">"Delete record"</string>
  /packages/apps/Bluetooth/res/values-en-rIN/
test_strings.xml 6 <string name="insert_record" msgid="1450997173838378132">"Insert record"</string>
7 <string name="update_record" msgid="2480425402384910635">"Confirm record"</string>
8 <string name="ack_record" msgid="6716152390978472184">"Ack record"</string>
9 <string name="deleteAll_record" msgid="4383349788485210582">"Delete all record"</string>
11 <string name="delete_record" msgid="4645040331967533724">"Delete record"</string>
  /packages/apps/Bluetooth/res/values-it/
test_strings.xml 6 <string name="insert_record" msgid="1450997173838378132">"Inserisci record"</string>
7 <string name="update_record" msgid="2480425402384910635">"Conferma record"</string>
8 <string name="ack_record" msgid="6716152390978472184">"Record ACK"</string>
9 <string name="deleteAll_record" msgid="4383349788485210582">"Elimina tutti i record"</string>
11 <string name="delete_record" msgid="4645040331967533724">"Elimina record"</string>
  /external/ltrace/testsuite/ltrace.minor/
Makefile.am 18 EXTRA_DIST = attach-process.exp count-record.c count-record.exp \
22 time-record.c time-record-T.exp time-record-tt.exp \
23 time-record-ttt.exp trace-clone.c trace-clone.exp \
28 count-record demangle print-instruction-pointer time-record-T \
29 time-record-tt time-record-ttt trace-clone trace-exec
    [all...]
  /external/chromium_org/device/nfc/
nfc_ndef_record.h 15 // NfcNdefRecord represents an NDEF (NFC Data Exchange Format) record. NDEF is
18 // messages. An NDEF record contains typed data, such as MIME-type media, a URI,
23 // NDEF record types that define the payload of the NDEF record.
34 // The following are strings that define a possible field of an NDEF record.
36 // Not all fields are always present in an NDEF record, where the presence
37 // of a field depends on the type of the record. While some fields are
38 // required for a specific record type, others can be optional and won't
69 // fields of a "URI" record, in addition to the following:
73 // contains the possible fields of a "Text" record. If the list contain
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 21 #include "llvm/TableGen/Record.h"
25 class Record;
45 /// ForeachLoop - Record the iteration state associated with a for loop.
69 // Record tracker
106 bool AddValue(Record *TheRec, SMLoc Loc, const RecordVal &RV);
107 bool SetValue(Record *TheRec, SMLoc Loc, Init *ValName,
109 bool SetValue(Record *TheRec, SMLoc Loc, const std::string &ValName,
113 bool AddSubClass(Record *Rec, SubClassReference &SubClass);
130 bool ProcessForeachDefs(Record *CurRec, SMLoc Loc);
131 bool ProcessForeachDefs(Record *CurRec, SMLoc Loc, IterSet &IterVals)
    [all...]

Completed in 1482 milliseconds

1 2 34 5 6 7 8 91011>>