HomeSort by relevance Sort by last modified time
    Searched refs:records (Results 26 - 50 of 90) sorted by null

12 3 4

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
NdefTagTester.java 81 NdefRecord[] records = message.getRecords(); local
83 if (records.length > 0) {
84 NdefRecord record = records[0];
  /external/icu4c/layout/
PairPositioningSubtables.cpp 127 const PairValueRecord *PairPositioningFormat1Subtable::findPairValueRecord(TTGlyphID glyphID, const PairValueRecord *records, le_uint16 recordCount, le_uint16 recordSize) const
133 const PairValueRecord *record = records;
147 const PairValueRecord *record = records;
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskBackService.java 128 final int records = event.getRecordCount(); local
129 for (int i = 0; i < records; i++) {
  /packages/apps/Nfc/src/com/android/nfc/
P2pLinkManager.java 642 NdefRecord records[] = msg.getRecords(); local
643 if (records == null || records.length == 0) {
646 return records[0].getTnf();
653 NdefRecord records[] = msg.getRecords(); local
654 if (records == null || records.length == 0) {
657 NdefRecord record = records[0];
675 NdefRecord records[] = msg.getRecords(); local
676 if (records == null)
    [all...]
  /frameworks/av/media/libmediaplayerservice/
StagefrightPlayer.h 63 const media::Metadata::Filter& ids, Parcel *records);
StagefrightPlayer.cpp 190 const media::Metadata::Filter& ids, Parcel *records) {
195 Metadata metadata(records);
  /external/mtpd/
mtpd.c 268 struct addrinfo *records; local
274 error = getaddrinfo(server, port, &hints, &records);
281 for (r = records; r; r = r->ai_next) {
291 freeaddrinfo(records);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 60 const media::Metadata::Filter& ids, Parcel *records);
  /external/chromium/chrome/browser/sync/engine/
build_commit_command.cc 41 // Return the records to the activity monitor.
46 const ExtensionsActivityMonitor::Records& records = local
48 for (ExtensionsActivityMonitor::Records::const_iterator it = records.begin();
49 it != records.end(); ++it) {
process_commit_response_command_unittest.cc 392 // happens to the extensions activity records. Commits could fail or succeed,
412 ExtensionsActivityMonitor::Records* records = local
414 (*records)["ABC"].extension_id = "ABC";
415 (*records)["ABC"].bookmark_write_count = 2049U;
416 (*records)["xyz"].extension_id = "xyz";
417 (*records)["xyz"].bookmark_write_count = 4U;
421 ExtensionsActivityMonitor::Records final_monitor_records;
426 << "Should restore records after unsuccessful bookmark commit.";
433 << "Should not restore records after successful bookmark commit."
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
UsimPhoneBookManager.java 36 * This class implements reading and parsing USIM records.
159 // So we read the IAP file and then read the email records.
199 // The number of records in the IAP file is same as the number of records in ADN file.
231 // records are empty. So we read both type 1 and type 2 file
232 // email records, just to be sure.
235 // Type 1 file, the number of records is the same as the number of
236 // records in the ADN file.
325 private void createPbrFile(ArrayList<byte[]> records) {
326 if (records == null)
    [all...]
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 992 ArrayList<UpdateRecord> records = mRecordsByProvider.get(provider); local
1028 ArrayList<UpdateRecord> records = mRecordsByProvider.get(provider); local
1071 ArrayList<UpdateRecord> records = mRecordsByProvider.get(provider); local
1086 ArrayList<UpdateRecord> records = mRecordsByProvider.get(this.mProvider); local
1142 ArrayList<UpdateRecord> records = mRecordsByProvider.get(provider); local
1846 ArrayList<UpdateRecord> records = mRecordsByProvider.get(provider); local
    [all...]
  /frameworks/base/core/java/android/nfc/
NdefRecord.java 38 * NDEF defines messages and records. An NDEF Record contains
41 * one or more NDEF Records.
43 * This class represents logical (complete) NDEF Records, and can not be
44 * used to represent chunked (partial) NDEF Records. However
46 * containing chunked records, and will return a message with unchunked
47 * (complete) records.
60 * NDEF Records with correctly set tnf, type, id and payload fields, please
66 * to create records that do not confirm to the strict NFC Forum
71 * NDEF records, and to pack optional fields. This class does not expose
120 * When creating new records prefer {@link #createUri}
743 List<NdefRecord> records = new ArrayList<NdefRecord>(); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
TestActivity.java 206 * "query " + contentUri1 +" get " + c.getCount()+" records");
259 Integer records = null;
261 records = Integer.parseInt(mInsertView.getText().toString().trim());
262 Log.v(Constants.TAG, "parseInt " + records);
264 if (records == null) {
265 records = 1;
267 for (int i = 0; i < records; i++) {
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 33 RecordKeeper &Records;
36 DiagGroupParentMap(RecordKeeper &records) : Records(records) {
38 = Records.getAllDerivedDefinitions("DiagGroup");
88 RecordKeeper &Records;
92 DiagCategoryIDMap(RecordKeeper &records) : Records(records) {
93 DiagGroupParentMap ParentInfo(Records);
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 69 RecordKeeper &Records;
84 TGParser(SourceMgr &SrcMgr, RecordKeeper &records) :
85 Lex(SrcMgr), CurMultiClass(0), Records(records) {}
  /external/bluetooth/bluez/plugins/
service.c 75 GSList *records; member in struct:service_adapter
281 for (list = serv_adapter->records; list; list = list->next) {
325 serv_adapter->records = g_slist_remove(serv_adapter->records,
373 serv_adapter->records = g_slist_append(serv_adapter->records,
715 for (l = serv_adapter->records; l != NULL; l = next) {
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityEvent.java 39 * explore all records in an accessibility event to obtain more information about the
679 List<AccessibilityRecord> records = mRecords; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
trace-event-listener.rb 8 A listener that simply records text representations of the events.
  /external/bluetooth/bluez/src/
device.c 101 sdp_list_t *records; member in struct:browse_req
163 if (req->records)
164 sdp_list_free(req->records, (sdp_free_func_t) sdp_record_free);
1252 sdp_list_t *records; local
1258 records = read_records(&src, &device->bdaddr);
1288 rec = find_record_in_list(records, list->data);
1294 records = sdp_list_remove(records, rec);
1299 if (records)
1300 sdp_list_free(records, (sdp_free_func_t) sdp_record_free)
    [all...]
  /frameworks/av/include/media/
MediaPlayerInterface.h 178 // @param[inout] records Parcel where the player appends its metadata.
181 Parcel *records) {
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPlayer.h 123 const media::Metadata::Filter& ids, Parcel *records);
  /frameworks/av/media/libaah_rtp/
aah_tx_player.h 63 Parcel* records);
  /external/guava/guava-tests/test/com/google/common/io/
CharStreamsTest.java 222 int records = logHandler.getStoredLogRecords().size(); local
224 return records;
  /gdk/build/core/
add-toolchain.mk 65 # NKD_ABI.<abi>.toolchains records the list of toolchains that support

Completed in 499 milliseconds

12 3 4