Searched refs:expected_type (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/chrome/utility/media_galleries/
H A Dpmp_column_reader.h30 bool ReadFile(base::File* file, const PmpFieldType expected_type);
45 bool ParseData(const PmpFieldType expected_type);
H A Dpmp_column_reader.cc31 const PmpFieldType expected_type) {
53 ParseData(expected_type);
118 bool PmpColumnReader::ParseData(const PmpFieldType expected_type) { argument
141 if (field_type_ != expected_type)
30 ReadFile(base::File* file, const PmpFieldType expected_type) argument
H A Dpmp_column_reader_unittest.cc23 const PmpFieldType expected_type) {
41 return reader->ReadFile(&file, expected_type);
20 InitColumnReaderFromBytes( PmpColumnReader* const reader, const std::vector<char>& data, const PmpFieldType expected_type) argument
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-archs.py27 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/
H A Dcloud_policy_manager_browsertest.cc145 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));
H A Dtest_request_interceptor.h60 // |expected_type| is the expected type in the register request.
64 enterprise_management::DeviceRegisterRequest::Type expected_type,
H A Dtest_request_interceptor.cc66 // 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);
69 ValidRequest(net::URLRequest* request, const std::string& expected_type, em::DeviceManagementRequest* request_msg) argument
102 RegisterJobCallback( em::DeviceRegisterRequest::Type expected_type, bool expect_reregister, net::URLRequest* request, net::NetworkDelegate* network_delegate) argument
270 RegisterJob( em::DeviceRegisterRequest::Type expected_type, bool expect_reregister) argument
/external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
H A DTestSignatureMatching.py18 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/chromeos/network/onc/
H A Donc_certificate_importer_impl_unittest.cc126 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()));
125 AddCertificateFromFile(std::string filename, net::CertType expected_type, std::string* guid) argument
/external/chromium_org/net/dns/
H A Ddns_response.cc285 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/
H A Dstatus.cc42 const std::string& expected_type) {
45 "The JWK property \"" + property + "\" must be a " + expected_type);
41 ErrorJwkPropertyWrongType(const std::string& property, const std::string& expected_type) argument
H A Dstatus.h60 // The property |property| was not of type |expected_type|.
62 const std::string& expected_type);
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dtextinput_test_helper.h49 void WaitForTextInputStateChanged(ui::TextInputType expected_type);
H A Dtextinput_test_helper.cc120 ui::TextInputType expected_type) {
123 while (latest_text_input_type_ != expected_type)
119 WaitForTextInputStateChanged( ui::TextInputType expected_type) argument
/external/chromium_org/base/mac/
H A Dfoundation_util.h341 CFStringRef key, const std::string& expected_type, CFTypeRef value);
351 std::string expected_type = TypeNameForCFType(value_specific); local
353 expected_type,
/external/chromium_org/ppapi/tests/
H A Dtest_input_event.cc215 int32_t expected_type = input_event_interface_->GetType(expected); local
216 if (received_type != expected_type) {
218 if (expected_type != PP_INPUTEVENT_TYPE_KEYDOWN &&
H A Dtest_ime_input_event.cc241 int32_t expected_type = input_event_interface_->GetType(expected); local
242 if (received_type != expected_type)
/external/chromium_org/chrome/browser/extensions/
H A Dextension_management.h142 // Load preference with name |pref_name| and expected type |expected_type|.
148 base::Value::Type expected_type);
H A Dextension_management.cc371 base::Value::Type expected_type) {
377 if (value && value->IsType(expected_type))
368 LoadPreference( const char* pref_name, bool force_managed, base::Value::Type expected_type) argument
/external/chromium_org/media/cdm/
H A Djson_web_key_unittest.cc30 MediaKeys::SessionType expected_type) {
38 EXPECT_EQ(expected_type, session_type);
28 ExtractSessionTypeAndExpect(const std::string& jwk, bool expected_result, MediaKeys::SessionType expected_type) argument
/external/chromium_org/net/http/
H A Dhttp_content_disposition_unittest.cc210 net::HttpContentDisposition::Type expected_type; member in struct:net::FileNameCDCase
508 EXPECT_EQ(tests[i].expected_type, header.type())
/external/chromium_org/components/json_schema/
H A Djson_schema_validator.h227 // Validates that the JSON node |instance| has |expected_type|.
229 const std::string& expected_type,
H A Djson_schema_validator.cc812 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)));
811 ValidateType(const base::Value* instance, const std::string& expected_type, const std::string& path) argument
/external/chromium_org/media/formats/webm/
H A Dwebm_cluster_parser_unittest.cc134 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());
/external/chromium_org/chrome/browser/chromeos/policy/
H A Ddevice_status_collector_browsertest.cc684 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 3952 milliseconds

12