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

123

/external/v8/src/inspector/
H A Dsearch-util.cc18 DCHECK(name.find("=") == String16::kNotFound);
27 if (pos == String16::kNotFound) return String16();
42 if (closingCommentPos == String16::kNotFound) return String16();
56 if (newLine != String16::kNotFound) match = match.substring(0, newLine);
90 if (lineEnd == String16::kNotFound) break;
H A Dstring-util.h41 static const size_t kNotFound = String::kNotFound; member in class:v8_inspector::protocol::StringUtil
H A Dstring-16.h21 static const size_t kNotFound = static_cast<size_t>(-1); member in class:v8_inspector::String16
H A Dv8-debugger-script.cc214 while (next_newline != String16::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/v8/src/ast/
H A Dcontext-slot-cache.cc40 return result.index() + kNotFound;
42 return kNotFound;
51 DCHECK(slot_index > kNotFound);
60 Value(mode, init_flag, maybe_assigned_flag, slot_index - kNotFound)
91 DCHECK(result.index() + kNotFound == slot_index);
H A Dcontext-slot-cache.h21 // If absent, kNotFound is returned.
34 static const int kNotFound = -2; member in class:v8::internal::ContextSlotCache
41 values_[i] = kNotFound;
/external/v8/src/
H A Dtransitions.cc66 int insertion_index = kNotFound;
84 if (index != kNotFound) {
124 insertion_index = kNotFound;
130 if (index == kNotFound) {
145 DCHECK_NE(kNotFound, insertion_index);
176 if (transition == kNotFound) return nullptr;
189 if (transition == kNotFound) return NULL;
513 DCHECK_NE(TransitionArray::kNotFound, new_target_index);
543 return kNotFound;
551 if (transition == kNotFound) retur
[all...]
H A Dlookup.cc111 number_ = DescriptorArray::kNotFound;
480 IsFound() ? static_cast<int>(number_) : DescriptorArray::kNotFound;
832 if (number == GlobalDictionary::kNotFound) return NOT_FOUND;
880 if (number == DescriptorArray::kNotFound) return NotFound(holder);
886 if (number == NameDictionary::kNotFound) return NotFound(holder);
H A Dlookup.h72 number_(DescriptorArray::kNotFound) {
95 number_(DescriptorArray::kNotFound) {
H A Dcontexts.cc208 *index = kNotFound;
697 return kNotFound;
703 return kNotFound;
715 return kNotFound;
H A Dtransitions.h203 static const int kNotFound = -1; member in class:v8::internal::TransitionArray
H A Dtype-info.cc39 if (entry != UnseededNumberDictionary::kNotFound) {
567 UnseededNumberDictionary::kNotFound);
H A Dapi-natives.cc274 if (entry == UnseededNumberDictionary::kNotFound) {
316 DCHECK(entry != UnseededNumberDictionary::kNotFound);
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dpacket_buffer.h29 kNotFound, enumerator in enum:webrtc::PacketBuffer::BufferReturnCodes
H A Dpacket_buffer.cc174 return kNotFound;
/external/skia/third_party/gif/
H A DSkGifImageReader.h152 static constexpr int kNotFound = -1; member in class:final
158 , m_transPixel(kNotFound)
203 , m_transparentPixel(SkGIFColorMap::kNotFound)
258 int m_transparentPixel; // Index of transparent pixel. Value is kNotFound if there is no transparent pixel.
H A DSkGifImageReader.cpp316 SkASSERT(transparentPixel == kNotFound || transparentPixel > m_table->count()
757 const int transPix = m_frames.empty() ? SkGIFColorMap::kNotFound
862 SkASSERT(SkGIFColorMap::kNotFound == transparentPixel);
/external/v8/src/compiler/
H A Daccess-info.h62 kNotFound, enumerator in enum:v8::internal::compiler::final::Kind
90 bool IsNotFound() const { return kind() == kNotFound; }
H A Daccess-info.cc113 : kind_(kNotFound),
180 case kNotFound:
288 if (number != DescriptorArray::kNotFound) {
/external/v8/src/snapshot/
H A Dserializer-common.h52 static const int kNotFound = -1; member in class:v8::internal::HotObjectsList
59 return kNotFound;
/external/webrtc/talk/app/webrtc/
H A Dstatscollector_unittest.cc77 const char kNotFound[] = "NOT FOUND"; member in namespace:webrtc
193 return kNotFound;
727 EXPECT_NE(kNotFound, local_certificate_id);
731 EXPECT_EQ(kNotFound, local_certificate_id);
740 EXPECT_NE(kNotFound, remote_certificate_id);
744 EXPECT_EQ(kNotFound, remote_certificate_id);
1083 ASSERT_NE(kNotFound, transport_id);
1316 EXPECT_EQ(kNotFound,
1397 ASSERT_EQ(kNotFound, local_certificate_id);
1404 ASSERT_EQ(kNotFound, remote_certificate_i
[all...]
/external/v8/src/runtime/
H A Druntime-internal.cc61 if (index == Context::kNotFound) {
64 CHECK(index != Context::kNotFound);
H A Druntime-scopes.cc296 if (index != Context::kNotFound) {
856 if (index != Context::kNotFound) {
956 if (index != Context::kNotFound) {
/external/v8/src/ic/x64/
H A Dhandler-compiler-x64.cc387 NameDictionary::kNotFound);

Completed in 624 milliseconds

123