Searched refs:kNotFound (Results 1 - 25 of 57) sorted by relevance

123

/external/chromium_org/third_party/re2/util/
H A Dsparse_array_test.cc12 static const string kNotFound = "NOT FOUND"; member in namespace:re2
92 EXPECT_EQ("r", FindWithDefault(str_map_, 3, kNotFound));
94 EXPECT_EQ("r", FindWithDefault(str_map_, 3, kNotFound));
101 EXPECT_EQ("a", FindWithDefault(str_map, 1, kNotFound));
102 EXPECT_EQ("b", FindWithDefault(str_map, 2, kNotFound));
104 EXPECT_EQ("NOT FOUND", FindWithDefault(str_map, 1, kNotFound));
105 EXPECT_EQ("b", FindWithDefault(str_map, 2, kNotFound));
135 EXPECT_EQ("hi", FindWithDefault(str_map_, 2, kNotFound));
/external/regex-re2/util/
H A Dsparse_array_test.cc12 static const string kNotFound = "NOT FOUND"; member in namespace:re2
92 EXPECT_EQ("r", FindWithDefault(str_map_, 3, kNotFound));
94 EXPECT_EQ("r", FindWithDefault(str_map_, 3, kNotFound));
101 EXPECT_EQ("a", FindWithDefault(str_map, 1, kNotFound));
102 EXPECT_EQ("b", FindWithDefault(str_map, 2, kNotFound));
104 EXPECT_EQ("NOT FOUND", FindWithDefault(str_map, 1, kNotFound));
105 EXPECT_EQ("b", FindWithDefault(str_map, 2, kNotFound));
135 EXPECT_EQ("hi", FindWithDefault(str_map_, 2, kNotFound));
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Dstatus.h36 return Status(kNotFound, msg, msg2);
55 bool IsNotFound() const { return code() == kNotFound; }
77 kNotFound = 1, enumerator in enum:leveldb::Status::Code
/external/v8/src/
H A Dscopeinfo.h45 // If absent, kNotFound is returned.
61 static const int kNotFound = -2; member in class:v8::internal::ContextSlotCache
68 values_[i] = kNotFound;
H A Dscopeinfo.cc307 if (result != ContextSlotCache::kNotFound) {
409 return result.index() + kNotFound;
411 return kNotFound;
421 ASSERT(slot_index > kNotFound);
428 values_[index] = Value(mode, init_flag, slot_index - kNotFound).raw();
457 ASSERT(result.index() + kNotFound == slot_index);
H A Delements.cc211 if (entry != SeededNumberDictionary::kNotFound) {
369 if (entry != SeededNumberDictionary::kNotFound) {
1074 if (entry != SeededNumberDictionary::kNotFound) {
1145 if (entry != SeededNumberDictionary::kNotFound) {
1165 SeededNumberDictionary::kNotFound;
/external/chromium_org/chrome/test/webdriver/
H A Dhttp_response.cc19 const int HttpResponse::kNotFound = 404; member in class:webdriver::HttpResponse
102 case kNotFound:
H A Dhttp_response.h26 static const int kNotFound; member in class:webdriver::HttpResponse
H A Dwebdriver_dispatch_unittest.cc65 ExpectHttpStatus(HttpResponse::kNotFound, command_response,
/external/chromium_org/v8/src/
H A Dtransitions.cc116 if (insertion_index == kNotFound) ++new_size;
126 if (insertion_index != kNotFound) {
H A Dtransitions.h144 static const int kNotFound = -1; member in class:v8::internal::TransitionArray
156 STATIC_ASSERT(kSimpleTransitionIndex != kNotFound);
H A Dscopeinfo.h45 // If absent, kNotFound is returned.
61 static const int kNotFound = -2; member in class:v8::internal::ContextSlotCache
68 values_[i] = kNotFound;
H A Dtransitions-inl.h61 return Search(GetHeap()->elements_transition_symbol()) != kNotFound;
175 return kNotFound;
H A Dscopeinfo.cc307 if (result != ContextSlotCache::kNotFound) {
435 return result.index() + kNotFound;
437 return kNotFound;
447 ASSERT(slot_index > kNotFound);
454 values_[index] = Value(mode, init_flag, slot_index - kNotFound).raw();
483 ASSERT(result.index() + kNotFound == slot_index);
H A Delements.cc234 if (entry != SeededNumberDictionary::kNotFound) {
478 if (entry != SeededNumberDictionary::kNotFound) {
1574 if (entry != SeededNumberDictionary::kNotFound) {
1633 if (entry != SeededNumberDictionary::kNotFound) {
1656 if (entry != SeededNumberDictionary::kNotFound) {
1669 if (entry != SeededNumberDictionary::kNotFound) {
1682 if (entry != SeededNumberDictionary::kNotFound &&
1695 SeededNumberDictionary::kNotFound;
/external/chromium_org/chrome/test/chromedriver/net/
H A Dtest_http_server.h30 kNotFound, enumerator in enum:TestHttpServer::WebSocketRequestAction
H A Dtest_http_server.cc91 case kNotFound:
H A Dwebsocket_unittest.cc156 server_.SetRequestAction(TestHttpServer::kNotFound);
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dstatus.cc46 case kNotFound:
/external/v8/test/cctest/
H A Dtest-dictionary.cc77 CHECK_NE(table->FindEntry(*key), ObjectHashTable::kNotFound);
87 CHECK_EQ(table->FindEntry(*key), ObjectHashTable::kNotFound);
/external/chromium_org/v8/test/cctest/
H A Dtest-dictionary.cc79 CHECK_NE(table->FindEntry(*key), ObjectHashTable::kNotFound);
89 CHECK_EQ(table->FindEntry(*key), ObjectHashTable::kNotFound);
/external/chromium_org/chrome/browser/renderer_host/
H A Dplugin_info_message_filter_unittest.cc180 EXPECT_EQ(ChromeViewHostMsg_GetPluginInfo_Status::kNotFound, status.value);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstatscollector_unittest.cc56 const char kNotFound[] = "NOT FOUND"; member in namespace:__anon11357
97 return kNotFound;
436 ASSERT_NE(kNotFound, transport_id);
/external/chromium_org/webkit/browser/fileapi/
H A Dsandbox_context.cc39 kNotFound, enumerator in enum:fileapi::__anon14795::FileSystemError
413 REPORT(kNotFound);
/external/chromium_org/chrome/renderer/plugins/
H A Dplugin_placeholder.cc399 if (status_->value == ChromeViewHostMsg_GetPluginInfo_Status::kNotFound)
411 status_->value == ChromeViewHostMsg_GetPluginInfo_Status::kNotFound;

Completed in 702 milliseconds

123