Lines Matching refs:record_type

207 static NDEFRecord* CreateUrlRecord(const String& record_type,  in CreateUrlRecord()  argument
226 device::mojom::blink::NDEFRecordTypeCategory::kStandardized, record_type, in CreateUrlRecord()
298 const String& record_type, in CreateExternalRecord() argument
309 device::mojom::blink::NDEFRecordTypeCategory::kExternal, record_type, in CreateExternalRecord()
319 device::mojom::blink::NDEFRecordTypeCategory::kExternal, record_type, in CreateExternalRecord()
330 const String& record_type, in CreateLocalRecord() argument
341 device::mojom::blink::NDEFRecordTypeCategory::kLocal, record_type, id, in CreateLocalRecord()
351 device::mojom::blink::NDEFRecordTypeCategory::kLocal, record_type, id, in CreateLocalRecord()
372 const String& record_type = init->recordType(); in Create() local
375 if (init->hasMediaType() && record_type != "mime") { in Create()
382 if (init->hasId() && record_type == "empty") { in Create()
388 if (record_type == "empty") { in Create()
392 record_type, init->id(), WTF::Vector<uint8_t>()); in Create()
393 } else if (record_type == "text") { in Create()
396 } else if (record_type == "url" || record_type == "absolute-url") { in Create()
397 return CreateUrlRecord(record_type, init->id(), init->data(), in Create()
399 } else if (record_type == "mime") { in Create()
402 } else if (record_type == "unknown") { in Create()
404 } else if (record_type == "smart-poster") { in Create()
407 } else if (IsValidExternalType(record_type)) { in Create()
408 return CreateExternalRecord(execution_context, record_type, init->id(), in Create()
410 } else if (IsValidLocalType(record_type)) { in Create()
417 return CreateLocalRecord(execution_context, record_type, init->id(), in Create()
426 const String& record_type, in NDEFRecord() argument
430 record_type_(record_type), in NDEFRecord()
441 const String& record_type, in NDEFRecord() argument
445 record_type_(record_type), in NDEFRecord()
490 record_type_(record.record_type), in NDEFRecord()