HomeSort by relevance Sort by last modified time
    Searched refs:expected_type (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/chrome/utility/media_galleries/
pmp_column_reader.h 30 bool ReadFile(base::File* file, const PmpFieldType expected_type);
45 bool ParseData(const PmpFieldType expected_type);
pmp_column_reader.cc 31 const PmpFieldType expected_type) {
53 ParseData(expected_type);
118 bool PmpColumnReader::ParseData(const PmpFieldType expected_type) {
141 if (field_type_ != expected_type)
pmp_column_reader_unittest.cc 23 const PmpFieldType expected_type) {
41 return reader->ReadFile(&file, expected_type);
  /external/chromium_org/tools/gyp/test/mac/
gyptest-archs.py 27 expected_type = ['x86_64'] variable
29 expected_type = ['i386'] variable
30 TestMac.CheckFileType(test, result_file, expected_type)
  /external/chromium_org/chrome/browser/policy/cloud/
cloud_policy_manager_browsertest.cc 145 em::DeviceRegisterRequest::Type expected_type = local
153 TestRequestInterceptor::RegisterJob(expected_type, expect_reregister));
187 em::DeviceRegisterRequest::Type expected_type = local
195 TestRequestInterceptor::RegisterJob(expected_type, expect_reregister));
test_request_interceptor.h 60 // |expected_type| is the expected type in the register request.
64 enterprise_management::DeviceRegisterRequest::Type expected_type,
test_request_interceptor.cc 66 // request. The query string in the URL must contain the |expected_type| for
70 const std::string& expected_type,
75 if (spec.find("request=" + expected_type) == std::string::npos)
103 em::DeviceRegisterRequest::Type expected_type,
131 if (!register_request.has_type() || register_request.type() != expected_type)
271 em::DeviceRegisterRequest::Type expected_type,
273 return base::Bind(&RegisterJobCallback, expected_type, expect_reregister);
  /external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
TestSignatureMatching.py 18 def assertMatches(self, expected_type, arg_types, functions):
21 if expected_type is not None:
23 self.assertEqual(expected_type, match.type)
  /external/chromium_org/chrome/browser/chromeos/input_method/
textinput_test_helper.h 49 void WaitForTextInputStateChanged(ui::TextInputType expected_type);
textinput_test_helper.cc 120 ui::TextInputType expected_type) {
123 while (latest_text_input_type_ != expected_type)
  /external/chromium_org/chromeos/network/onc/
onc_certificate_importer_impl_unittest.cc 126 net::CertType expected_type,
134 if (expected_type == net::SERVER_CERT || expected_type == net::CA_CERT) {
136 EXPECT_EQ(expected_type, GetCertType(public_list_[0]->os_cert_handle()));
141 EXPECT_EQ(expected_type, GetCertType(private_list_[0]->os_cert_handle()));
  /external/chromium_org/net/dns/
dns_response.cc 285 uint16 expected_type = qtype(); local
286 DCHECK(expected_type == dns_protocol::kTypeA ||
287 expected_type == dns_protocol::kTypeAAAA);
289 size_t expected_size = (expected_type == dns_protocol::kTypeAAAA)
314 } else if (record.type == expected_type) {
  /external/chromium_org/content/child/webcrypto/
status.cc 42 const std::string& expected_type) {
45 "The JWK property \"" + property + "\" must be a " + expected_type);
status.h 60 // The property |property| was not of type |expected_type|.
62 const std::string& expected_type);
  /external/chromium_org/chrome/browser/extensions/
extension_management.h 142 // Load preference with name |pref_name| and expected type |expected_type|.
148 base::Value::Type expected_type);
extension_management.cc 371 base::Value::Type expected_type) {
377 if (value && value->IsType(expected_type))
  /external/chromium_org/base/mac/
foundation_util.h 341 CFStringRef key, const std::string& expected_type, CFTypeRef value);
351 std::string expected_type = TypeNameForCFType(value_specific); local
353 expected_type,
  /external/chromium_org/media/cdm/
json_web_key_unittest.cc 30 MediaKeys::SessionType expected_type) {
38 EXPECT_EQ(expected_type, session_type);
  /external/chromium_org/net/http/
http_content_disposition_unittest.cc 210 net::HttpContentDisposition::Type expected_type; member in struct:net::FileNameCDCase
508 EXPECT_EQ(tests[i].expected_type, header.type())
  /external/chromium_org/ppapi/tests/
test_input_event.cc 215 int32_t expected_type = input_event_interface_->GetType(expected); local
216 if (received_type != expected_type) {
218 if (expected_type != PP_INPUTEVENT_TYPE_KEYDOWN &&
test_ime_input_event.cc 241 int32_t expected_type = input_event_interface_->GetType(expected); local
242 if (received_type != expected_type)
  /external/chromium_org/components/json_schema/
json_schema_validator.h 227 // Validates that the JSON node |instance| has |expected_type|.
229 const std::string& expected_type,
json_schema_validator.cc 812 const std::string& expected_type,
815 if (expected_type == actual_type ||
816 (expected_type == schema::kNumber && actual_type == schema::kInteger)) {
818 } else if (expected_type == schema::kInteger &&
824 kInvalidType, expected_type, actual_type)));
  /external/chromium_org/media/formats/webm/
webm_cluster_parser_unittest.cc 134 StreamParserBuffer::Type expected_type = DemuxerStream::UNKNOWN; local
139 expected_type = DemuxerStream::AUDIO;
143 expected_type = DemuxerStream::VIDEO;
147 expected_type = DemuxerStream::TEXT;
165 EXPECT_EQ(expected_type, buffer->type());
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
device_status_collector_browsertest.cc 684 int expected_type; // proto enum type value, -1 for not present. member in struct:policy::FakeDeviceData
766 if (dev.expected_type == -1)
777 if (dev.expected_type == iface->type() &&

Completed in 1042 milliseconds

1 2