Home
last modified time | relevance | path

Searched refs:Record (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp107 static bool ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx, in ConvertToString() argument
109 if (Idx > Record.size()) in ConvertToString()
112 for (unsigned i = Idx, e = Record.size(); i != e; ++i) in ConvertToString()
113 Result += (char)Record[i]; in ConvertToString()
476 SmallVector<uint64_t, 64> Record; in ParseAttributeBlock() local
490 case BitstreamEntry::Record: in ParseAttributeBlock()
496 Record.clear(); in ParseAttributeBlock()
497 switch (Stream.readRecord(Entry.ID, Record)) { in ParseAttributeBlock()
501 if (Record.size() & 1) in ParseAttributeBlock()
504 for (unsigned i = 0, e = Record.size(); i != e; i += 2) { in ParseAttributeBlock()
[all …]
DBitcodeReader.h279 bool getValueTypePair(SmallVector<uint64_t, 64> &Record, unsigned &Slot, in getValueTypePair() argument
281 if (Slot == Record.size()) return true; in getValueTypePair()
282 unsigned ValNo = (unsigned)Record[Slot++]; in getValueTypePair()
288 } else if (Slot == Record.size()) { in getValueTypePair()
292 unsigned TypeNo = (unsigned)Record[Slot++]; in getValueTypePair()
296 bool getValue(SmallVector<uint64_t, 64> &Record, unsigned &Slot, in getValue() argument
298 if (Slot == Record.size()) return true; in getValue()
299 unsigned ValNo = (unsigned)Record[Slot++]; in getValue()
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp348 static bool ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx, in ConvertToString() argument
350 if (Idx > Record.size()) in ConvertToString()
353 for (unsigned i = Idx, e = Record.size(); i != e; ++i) in ConvertToString()
354 Result += (char)Record[i]; in ConvertToString()
755 SmallVector<uint64_t, 64> Record; in ParseAttributeBlock() local
769 case BitstreamEntry::Record: in ParseAttributeBlock()
775 Record.clear(); in ParseAttributeBlock()
776 switch (Stream.readRecord(Entry.ID, Record)) { in ParseAttributeBlock()
781 if (Record.size() & 1) in ParseAttributeBlock()
784 for (unsigned i = 0, e = Record.size(); i != e; i += 2) { in ParseAttributeBlock()
[all …]
DBitcodeReader.h274 bool getValueTypePair(SmallVector<uint64_t, 64> &Record, unsigned &Slot, in getValueTypePair() argument
276 if (Slot == Record.size()) return true; in getValueTypePair()
277 unsigned ValNo = (unsigned)Record[Slot++]; in getValueTypePair()
283 } else if (Slot == Record.size()) { in getValueTypePair()
287 unsigned TypeNo = (unsigned)Record[Slot++]; in getValueTypePair()
291 bool getValue(SmallVector<uint64_t, 64> &Record, unsigned &Slot, in getValue() argument
293 if (Slot == Record.size()) return true; in getValue()
294 unsigned ValNo = (unsigned)Record[Slot++]; in getValue()
/frameworks/compile/slang/BitWriter_2_9/
DBitcodeWriter.cpp143 SmallVector<uint64_t, 64> Record; in WriteAttributeTable() local
147 Record.push_back(A.getSlotIndex(i)); in WriteAttributeTable()
148 Record.push_back(encodeLLVMAttributesForBitcode(A, A.getSlotIndex(i))); in WriteAttributeTable()
152 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY_OLD, Record); in WriteAttributeTable()
153 Record.clear(); in WriteAttributeTable()
584 SmallVector<uint64_t, 64> &Record) { in WriteMDNode() argument
587 Record.push_back(VE.getTypeID(N->getOperand(i)->getType())); in WriteMDNode()
588 Record.push_back(VE.getValueID(N->getOperand(i))); in WriteMDNode()
590 Record.push_back(VE.getTypeID(Type::getVoidTy(N->getContext()))); in WriteMDNode()
591 Record.push_back(0); in WriteMDNode()
[all …]
/frameworks/compile/slang/BitWriter_2_9_func/
DBitcodeWriter.cpp166 SmallVector<uint64_t, 64> Record; in WriteAttributeTable() local
170 Record.push_back(A.getSlotIndex(i)); in WriteAttributeTable()
171 Record.push_back(encodeLLVMAttributesForBitcode(A, A.getSlotIndex(i))); in WriteAttributeTable()
175 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY_OLD, Record); in WriteAttributeTable()
176 Record.clear(); in WriteAttributeTable()
538 SmallVector<uint64_t, 64> &Record) { in WriteMDNode() argument
541 Record.push_back(VE.getTypeID(N->getOperand(i)->getType())); in WriteMDNode()
542 Record.push_back(VE.getValueID(N->getOperand(i))); in WriteMDNode()
544 Record.push_back(VE.getTypeID(Type::getVoidTy(N->getContext()))); in WriteMDNode()
545 Record.push_back(0); in WriteMDNode()
[all …]
/frameworks/compile/slang/BitWriter_3_2/
DBitcodeWriter.cpp171 SmallVector<uint64_t, 64> Record; in WriteAttributeTable() local
175 Record.push_back(A.getSlotIndex(i)); in WriteAttributeTable()
176 Record.push_back(encodeLLVMAttributesForBitcode(A, A.getSlotIndex(i))); in WriteAttributeTable()
180 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY_OLD, Record); in WriteAttributeTable()
181 Record.clear(); in WriteAttributeTable()
572 SmallVector<uint64_t, 64> &Record) { in WriteMDNode() argument
575 Record.push_back(VE.getTypeID(N->getOperand(i)->getType())); in WriteMDNode()
576 Record.push_back(VE.getValueID(N->getOperand(i))); in WriteMDNode()
578 Record.push_back(VE.getTypeID(Type::getVoidTy(N->getContext()))); in WriteMDNode()
579 Record.push_back(0); in WriteMDNode()
[all …]
/frameworks/base/tools/preload/
DCompile.java41 List<Record> records = new ArrayList<Record>(); in main()
53 records.add(new Record(clipped, lineNumber)); in main()
61 for (Record record : records) { in main()
65 for (Record record : records) { in main()
DRecord.java20 class Record { class
109 Record(String line, int lineNum) { in Record() method in Record
DRoot.java54 void indexClassOperation(Record record) { in indexClassOperation()
115 void indexProcess(Record record) { in indexProcess()
DAndroid.mk15 Record.java \
/frameworks/compile/mclinker/include/mcld/LD/
DEhFrame.h68 class Record : public RegionFragment
71 Record(llvm::StringRef pRegion);
72 virtual ~Record();
79 Record(const Record&); // DO NOT IMPLEMENT
80 Record& operator=(const Record&); // DO NOT IMPLEMENT
87 class CIE : public Record
137 class FDE : public Record
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DGestureRecorder.java41 public abstract class Record { class in GestureRecorder.Gesture
45 public class MotionEventRecord extends Record {
78 public class TagRecord extends Record {
93 private LinkedList<Record> mRecords = new LinkedList<Record>();
125 for (Record r : mRecords) { in toJson()
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java86 private static class Record { class in TelephonyRegistry
124 private final ArrayList<Record> mRecords = new ArrayList<Record>();
228 for (Record r : mRecords) {
353 Record r = null; in addOnSubscriptionsChangedListener()
366 r = new Record(); in addOnSubscriptionsChangedListener()
418 for (Record r : mRecords) { in notifySubscriptionInfoChanged()
462 Record r = null; in listen()
472 r = new Record(); in listen()
624 Record r = mRecords.get(i); in remove()
645 for (Record r : mRecords) { in notifyCallState()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSPanel.java75 private Record mDetailRecord;
216 Record r = new Record(); in showDetailAdapter()
221 private void showDetail(boolean show, Record r) { in showDetail()
333 private void handleShowDetail(Record r, boolean show) { in handleShowDetail()
353 private void handleShowDetailImpl(Record r, boolean show, int x, int y) { in handleShowDetailImpl()
516 private void setDetailRecord(Record r) { in setDetailRecord()
530 handleShowDetail((Record)msg.obj, msg.arg1 != 0); in handleMessage()
537 private static class Record { class in QSPanel
542 private static final class TileRecord extends Record {
/frameworks/compile/mclinker/lib/LD/
DEhFrame.cpp32 EhFrame::Record::Record(llvm::StringRef pRegion) in Record() function in EhFrame::Record
36 EhFrame::Record::~Record() in ~Record()
45 : EhFrame::Record(pRegion), in CIE()
57 : EhFrame::Record(pRegion), m_pCIE(&pCIE) { in FDE()
/frameworks/compile/slang/
Dslang_rs_export_type.cpp261 case clang::Type::Record: { in TypeExportableHelper()
464 case clang::Type::Record: { in ValidateTypeHelper()
695 case clang::Type::Record: { in GetTypeName()
773 case clang::Type::Record: { in Create()
938 if ((T == NULL) || (T->getTypeClass() != clang::Type::Record)) in GetRSSpecificType()
1049 case clang::Type::Record: { in GetDataType()
1276 slangAssert((RT != NULL) && (RT->getTypeClass() == clang::Type::Record)); in Create()
1402 slangAssert(RT != NULL && RT->getTypeClass() == clang::Type::Record); in Create()
Dslang_rs_context.cpp150 case clang::Decl::Record: { in processExportType()
/frameworks/base/services/core/java/com/android/server/am/
DEventLogTags.logtags66 30030 am_create_service (User|1|5),(Service Record|1|5),(Name|3),(UID|1|5),(PID|1|5)
68 30031 am_destroy_service (User|1|5),(Service Record|1|5),(PID|1|5)
/frameworks/base/docs/html/training/camera/
Dvideobasics.jd20 <li><a href="#TaskCaptureIntent">Record a Video with a Camera App</a>
73 <h2 id="TaskCaptureIntent">Record a Video with a Camera App</h2>
/frameworks/base/docs/html/guide/topics/media/
Daudio-capture.jd72 <h3 id="example">Example: Record audio and play the recorded audio</h3>
/frameworks/base/docs/html/guide/topics/connectivity/nfc/
Dnfc.jd134 this field to specify the Record Type Definition (RTD). Valid RTD values are described in <a
203 <td>MIME type or URI depending on the Record Type Definition (RTD), which you set in the
214 <th>Record Type Definition (RTD)</th>
697 Introduced in Android 4.0 (API level 14), an Android Application Record (AAR) provides a stronger
885 * The Android Application Record (AAR) is commented out. When a device
/frameworks/base/docs/html/training/location/
Dgeofencing.jd1114 // Record the type of removal request
1286 // Record the type of removal request
/frameworks/base/docs/html/tools/debugging/
Ddebugging-studio.jd399 <li>Click <strong>Screen Record</strong> <img src="{@docRoot}images/tools/as-record.png"
/frameworks/base/docs/html/about/versions/
Dandroid-4.1.jd28 <li><a href="#AudioCue">Record audio on cue</a></li>
353 <h3 id="AudioCue">Record audio on cue</h3>

12