Searched defs:is_hit (Results 1 - 4 of 4) sorted by path

/external/chromium_org/chrome/browser/predictors/
H A Dautocomplete_action_predictor.cc382 const bool is_hit = (*url_it == opened_url); local
391 row.number_of_hits = is_hit ? 1 : 0;
392 row.number_of_misses = is_hit ? 0 : 1;
398 row.number_of_hits = it->second.number_of_hits + (is_hit ? 1 : 0);
399 row.number_of_misses = it->second.number_of_misses + (is_hit ? 0 : 1);
/external/chromium_org/components/nacl/browser/
H A Dnacl_host_message_filter.cc243 bool is_hit) {
251 Send(new NaClViewMsg_NexeTempFileReply(pp_instance, is_hit, fd));
240 AsyncReturnTemporaryFile( int pp_instance, const base::File& file, bool is_hit) argument
H A Dpnacl_host_unittest.cc70 void CallbackExpectMiss(const base::File& file, bool is_hit) { argument
71 EXPECT_FALSE(is_hit);
85 void CallbackExpectHit(const base::File& file, bool is_hit) { argument
86 EXPECT_TRUE(is_hit);
/external/chromium_org/components/nacl/renderer/
H A Dpnacl_translation_resource_host.cc114 bool is_hit,
131 base::Bind(it->second, status, is_hit, file_handle));
112 OnNexeTempFileReply( PP_Instance instance, bool is_hit, IPC::PlatformFileForTransit file) argument

Completed in 308 milliseconds