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

1 2 3

  /external/chromium_org/third_party/re2/util/
sparse_array_test.cc 12 static const string kNotFound = "NOT FOUND";
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/
sparse_array_test.cc 12 static const string kNotFound = "NOT FOUND";
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/
status.h 36 return Status(kNotFound, msg, msg2);
55 bool IsNotFound() const { return code() == kNotFound; }
77 kNotFound = 1,
  /external/chromium_org/chrome/test/webdriver/
http_response.h 26 static const int kNotFound;
http_response.cc 19 const int HttpResponse::kNotFound = 404;
102 case kNotFound:
webdriver_dispatch_unittest.cc 65 ExpectHttpStatus(HttpResponse::kNotFound, command_response,
  /external/v8/src/
scopeinfo.h 45 // If absent, kNotFound is returned.
61 static const int kNotFound = -2;
68 values_[i] = kNotFound;
scopeinfo.cc 307 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);
elements.cc 211 if (entry != SeededNumberDictionary::kNotFound) {
369 if (entry != SeededNumberDictionary::kNotFound) {
    [all...]
  /frameworks/av/drm/mediadrm/plugins/mock/
MockDrmCryptoPlugin.cpp 101 if (index == kNotFound) {
123 if (index == kNotFound) {
179 if (index == kNotFound) {
209 if (index == kNotFound) {
226 if (index == kNotFound) {
232 if (index == kNotFound) {
247 if (index == kNotFound) {
420 if (index == kNotFound) {
440 if (index == kNotFound) {
465 if (index == kNotFound) {
    [all...]
MockDrmCryptoPlugin.h 133 static const ssize_t kNotFound = -1;
  /external/chromium_org/v8/src/
transitions.cc 116 if (insertion_index == kNotFound) ++new_size;
126 if (insertion_index != kNotFound) {
transitions.h 144 static const int kNotFound = -1;
156 STATIC_ASSERT(kSimpleTransitionIndex != kNotFound);
scopeinfo.h 45 // If absent, kNotFound is returned.
61 static const int kNotFound = -2;
68 values_[i] = kNotFound;
transitions-inl.h 61 return Search(GetHeap()->elements_transition_symbol()) != kNotFound;
175 return kNotFound;
scopeinfo.cc 307 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);
  /external/chromium_org/chrome/test/chromedriver/net/
test_http_server.h 30 kNotFound,
test_http_server.cc 91 case kNotFound:
websocket_unittest.cc 156 server_.SetRequestAction(TestHttpServer::kNotFound);
  /external/chromium_org/third_party/leveldatabase/src/util/
status.cc 46 case kNotFound:
  /external/v8/test/cctest/
test-dictionary.cc 77 CHECK_NE(table->FindEntry(*key), ObjectHashTable::kNotFound);
87 CHECK_EQ(table->FindEntry(*key), ObjectHashTable::kNotFound);
  /external/chromium_org/v8/test/cctest/
test-dictionary.cc 79 CHECK_NE(table->FindEntry(*key), ObjectHashTable::kNotFound);
89 CHECK_EQ(table->FindEntry(*key), ObjectHashTable::kNotFound);
  /external/chromium_org/chrome/browser/renderer_host/
plugin_info_message_filter_unittest.cc 180 EXPECT_EQ(ChromeViewHostMsg_GetPluginInfo_Status::kNotFound, status.value);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
statscollector_unittest.cc 56 const char kNotFound[] = "NOT FOUND";
97 return kNotFound;
436 ASSERT_NE(kNotFound, transport_id);
  /external/chromium_org/webkit/browser/fileapi/
sandbox_context.cc 39 kNotFound,
413 REPORT(kNotFound);

Completed in 1735 milliseconds

1 2 3