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

1 2 3

  /external/v8/src/inspector/
search-util.cc 18 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;
string-util.h 41 static const size_t kNotFound = String::kNotFound;
string-16.h 21 static const size_t kNotFound = static_cast<size_t>(-1);
  /system/nvram/core/include/nvram/core/
storage.h 32 kNotFound, // The element to be read could not be found.
48 // system, this function must return Status::kNotFound. For all other error
80 // index should return Status::kNotFound.
88 // medium. Status::kNotFound should be returned in case the space data
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compiled_cpu_function.cc 72 constexpr int kNotFound = -1;
74 return kNotFound;
81 return kNotFound;
  /external/v8/src/ast/
context-slot-cache.cc 40 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);
context-slot-cache.h 21 // If absent, kNotFound is returned.
34 static const int kNotFound = -2;
41 values_[i] = kNotFound;
  /system/nvram/hal/
memory_storage.cpp 32 return Status::kNotFound;
91 return slot ? slot->Load(blob) : Status::kNotFound;
fake_nvram_storage.cpp 68 return nvram::storage::Status::kNotFound;
83 return nvram::storage::Status::kNotFound;
121 return nvram::storage::Status::kNotFound;
  /frameworks/minikin/libs/minikin/
SparseBitSet.cpp 23 const uint32_t SparseBitSet::kNotFound;
109 return kNotFound;
138 return kNotFound;
  /system/nvram/core/tests/
fake_storage.cpp 37 return Status::kNotFound;
145 return slot ? slot->Load(blob) : Status::kNotFound;
155 return slot ? slot->Delete() : Status::kNotFound;
  /external/v8/src/
transitions.cc 66 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) return kNotFound
    [all...]
lookup.cc 111 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);
    [all...]
lookup.h 72 number_(DescriptorArray::kNotFound) {
95 number_(DescriptorArray::kNotFound) {
contexts.cc 208 *index = kNotFound;
697 return kNotFound;
703 return kNotFound;
715 return kNotFound;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
packet_buffer.h 29 kNotFound,
  /frameworks/minikin/include/minikin/
SparseBitSet.h 59 // The next set bit starting at fromIndex, inclusive, or kNotFound
63 static const uint32_t kNotFound = ~0u;
  /frameworks/av/drm/mediadrm/plugins/mock/
MockDrmCryptoPlugin.cpp 103 if (index == kNotFound) {
126 if (index == kNotFound) {
193 if (index == kNotFound) {
223 if (index == kNotFound) {
240 if (index == kNotFound) {
246 if (index == kNotFound) {
261 if (index == kNotFound) {
521 if (index == kNotFound) {
541 if (index == kNotFound) {
566 if (index == kNotFound) {
    [all...]
  /external/v8/src/snapshot/
serializer-common.h 52 static const int kNotFound = -1;
59 return kNotFound;
  /system/nvram/core/
nvram_manager.cpp 97 case storage::Status::kNotFound:
98 return storage::Status::kNotFound;
356 case storage::Status::kNotFound:
558 case storage::Status::kNotFound:
660 case storage::Status::kNotFound:
695 case storage::Status::kNotFound:
752 case storage::Status::kNotFound:
802 case storage::Status::kNotFound:
  /external/skia/third_party/gif/
SkGifImageReader.h 151 static constexpr int kNotFound = -1;
157 , m_transPixel(kNotFound)
201 , m_transparentPixel(SkGIFColorMap::kNotFound)
250 int m_transparentPixel; // Index of transparent pixel. Value is kNotFound if there is no transparent pixel.
  /external/skqp/third_party/gif/
SkGifImageReader.h 151 static constexpr int kNotFound = -1;
157 , m_transPixel(kNotFound)
201 , m_transparentPixel(SkGIFColorMap::kNotFound)
250 int m_transparentPixel; // Index of transparent pixel. Value is kNotFound if there is no transparent pixel.
  /external/v8/src/compiler/
access-info.h 62 kNotFound,
90 bool IsNotFound() const { return kind() == kNotFound; }
access-info.cc 113 : kind_(kNotFound),
180 case kNotFound:
288 if (number != DescriptorArray::kNotFound) {
  /external/webrtc/talk/app/webrtc/
statscollector_unittest.cc 77 const char kNotFound[] = "NOT FOUND";
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);
    [all...]

Completed in 2436 milliseconds

1 2 3