HomeSort by relevance Sort by last modified time
    Searched defs:Valid (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/chrome/browser/chromeos/geolocation/
geoposition.cc 27 bool Geoposition::Valid() const {
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
realloc_unittest.cc 55 static bool Valid(unsigned char* buffer, int n) {
95 CHECK(Valid(dst, min(src_size, dst_size)));
97 CHECK(Valid(dst, dst_size));
memalign_unittest.cc 120 static bool Valid(const void* p, int n, char seed) {
139 CHECK(Valid(ptr, s, 'x'));
146 CHECK(Valid(ptr, s, 'y'));
163 CHECK(Valid(p1, 1<<19, 'a'));
164 CHECK(Valid(p2, 1<<19, 'b'));
165 CHECK(Valid(p3, 1<<19, 'c'));
201 CHECK(Valid(p, s, 'v'));
213 CHECK(Valid(p, alloc_needed, 'x'));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
realloc_unittest.cc 55 static bool Valid(unsigned char* buffer, int n) {
95 CHECK(Valid(dst, min(src_size, dst_size)));
97 CHECK(Valid(dst, dst_size));
memalign_unittest.cc 120 static bool Valid(const void* p, int n, char seed) {
139 CHECK(Valid(ptr, s, 'x'));
146 CHECK(Valid(ptr, s, 'y'));
163 CHECK(Valid(p1, 1<<19, 'a'));
164 CHECK(Valid(p2, 1<<19, 'b'));
165 CHECK(Valid(p3, 1<<19, 'c'));
201 CHECK(Valid(p, s, 'v'));
213 CHECK(Valid(p, alloc_needed, 'x'));
  /external/chromium_org/third_party/leveldatabase/src/table/
iterator.cc 45 virtual bool Valid() const { return false; }
iterator_wrapper.h 11 // caches the valid() and key() results for an underlying iterator.
37 bool Valid() const { return valid_; }
38 Slice key() const { assert(Valid()); return key_; }
39 Slice value() const { assert(Valid()); return iter_->value(); }
50 valid_ = iter_->Valid();
merger.cc 31 virtual bool Valid() const {
60 assert(Valid());
72 if (child->Valid() &&
86 assert(Valid());
98 if (child->Valid()) {
115 assert(Valid());
120 assert(Valid());
159 if (child->Valid()) {
174 if (child->Valid()) {
two_level_iterator.cc 34 virtual bool Valid() const {
35 return data_iter_.Valid();
38 assert(Valid());
42 assert(Valid());
113 assert(Valid());
119 assert(Valid());
126 while (data_iter_.iter() == NULL || !data_iter_.Valid()) {
128 if (!index_iter_.Valid()) {
139 while (data_iter_.iter() == NULL || !data_iter_.Valid()) {
141 if (!index_iter_.Valid()) {
    [all...]
block.cc 83 // current_ is offset in data_ of current entry. >= restarts_ if !Valid
128 virtual bool Valid() const { return current_ < restarts_; }
131 assert(Valid());
135 assert(Valid());
140 assert(Valid());
145 assert(Valid());
  /external/skia/src/image/
SkSurface_Raster.cpp 18 static bool Valid(const SkImageInfo&, size_t rb = kIgnoreRowBytesValue);
39 bool SkSurface_Raster::Valid(const SkImageInfo& info, size_t rowBytes) {
140 if (!SkSurface_Raster::Valid(info, rowBytes)) {
151 if (!SkSurface_Raster::Valid(info)) {
  /external/chromium_org/base/win/
registry.h 67 // True while the key is valid.
68 bool Valid() const { return key_ != NULL; }
166 // True while the iterator is valid.
167 bool Valid() const;
207 // True while the iterator is valid.
208 bool Valid() const;
registry.cc 527 bool RegistryValueIterator::Valid() const {
537 if (Valid()) {
614 bool RegistryKeyIterator::Valid() const {
624 if (Valid()) {
  /external/chromium_org/third_party/skia/src/image/
SkSurface_Raster.cpp 18 static bool Valid(const SkImageInfo&, size_t rb = kIgnoreRowBytesValue);
41 bool SkSurface_Raster::Valid(const SkImageInfo& info, size_t rowBytes) {
149 if (!SkSurface_Raster::Valid(info, rb)) {
165 if (!SkSurface_Raster::Valid(info)) {
  /external/chromium_org/third_party/webrtc/base/
win32toolhelp.h 61 if (!Valid()) {
96 bool Valid() {
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
leveldb_wrapper.cc 28 bool LevelDBWrapper::Iterator::Valid() {
30 db_iterator_->Valid();
52 if (db_iterator_->Valid())
57 if (db_iterator_->Valid()) {
71 DCHECK(Valid());
87 DCHECK(Valid());
89 if (!db_iterator_->Valid())
100 DCHECK(Valid());
102 if (!db_iterator_->Valid())
117 // Iterator is valid iff any of below holds
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
db_iter.cc 21 for (iter->SeekToFirst(); iter->Valid(); iter->Next()) {
65 virtual bool Valid() const { return valid_; }
154 if (!iter_->Valid()) {
159 if (!iter_->Valid()) {
175 assert(iter_->Valid());
200 } while (iter_->Valid());
211 assert(iter_->Valid()); // Otherwise valid_ would have been false
215 if (!iter_->Valid()) {
236 if (iter_->Valid()) {
260 } while (iter_->Valid());
    [all...]
memtable.cc 55 virtual bool Valid() const { return iter_.Valid(); }
112 if (iter.Valid()) {
skiplist.h 59 // The returned iterator is not valid.
62 // Returns true iff the iterator is positioned at a valid node.
63 bool Valid() const;
66 // REQUIRES: Valid()
70 // REQUIRES: Valid()
74 // REQUIRES: Valid()
81 // Final state of iterator is Valid() iff list is not empty.
85 // Final state of iterator is Valid() iff list is not empty.
194 inline bool SkipList<Key,Comparator>::Iterator::Valid() const {
200 assert(Valid());
    [all...]
  /art/compiler/dex/
reg_storage.h 53 * Physical register number of the high register (valid only for register pair).
58 * 1 -> Valid
101 // TODO: deprecate use of kInvalidRegVal and speed up GetReg(). Rely on valid bit instead.
141 constexpr bool Valid() const {
167 DCHECK_CONSTEXPR(Valid(), , false)
173 DCHECK_CONSTEXPR(Valid(), , false)
179 DCHECK_CONSTEXPR(Valid(), , false)
210 return Valid() ? (reg_ & kRegValMask) : kInvalidRegVal;
215 DCHECK(Valid());
  /external/chromium_org/base/allocator/
allocator_unittest.cc 36 static bool Valid(unsigned char* buffer, int n) {
371 EXPECT_TRUE(Valid(ptr, size));
432 EXPECT_TRUE(Valid(dst, min(src_size, dst_size)));
434 EXPECT_TRUE(Valid(dst, dst_size));
484 EXPECT_TRUE(Valid(dst, min(src_size, dst_size)));
486 EXPECT_TRUE(Valid(dst, dst_size));
503 EXPECT_TRUE(Valid(ptr, size));
515 EXPECT_TRUE(Valid(ptr2, size));
  /external/lldb/include/lldb/Symbol/
ClangASTImporter.h 145 return origin.Valid();
231 Valid ()
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 128 bool Valid = true;
136 Valid = false;
144 Valid = false;
150 Valid = false;
156 Valid = false;
159 assert(Valid && "Invalid use list");
  /external/llvm/lib/Support/
Triple.cpp 435 // component movement when a component parses as (eg) both a valid arch and a
436 // valid os.
462 // positions by seeing if they parse as a valid architecture, and if so moving
473 // Does this component parse as valid for the target position?
474 bool Valid = false;
480 Valid = Arch != UnknownArch;
484 Valid = Vendor != UnknownVendor;
488 Valid = OS != UnknownOS;
492 Valid = Environment != UnknownEnvironment;
493 if (!Valid) {
    [all...]
  /external/aac/libAACdec/src/
channelinfo.h 159 UCHAR Valid;
378 return pIcsInfo->Valid;

Completed in 758 milliseconds

1 2