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

1 2

  /external/chromium_org/chrome_frame/
registry_list_preferences_holder.h 29 bool Valid() const { return valid_; }
  /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/chrome/browser/sync/engine/
get_commit_ids_command.h 55 if (Valid() && !ValidateMetahandleForCommit(*handle_iterator_))
61 DCHECK(Valid());
66 if (!Valid())
79 bool Valid() const {
  /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/chromium_org/third_party/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) {
143 if (!SkSurface_Raster::Valid(info, rowBytes)) {
154 if (!SkSurface_Raster::Valid(info)) {
  /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) {
143 if (!SkSurface_Raster::Valid(info, rowBytes)) {
154 if (!SkSurface_Raster::Valid(info)) {
  /external/chromium/base/win/
registry.h 51 // True while the key is valid.
52 bool Valid() const { return key_ != NULL; }
110 // True while the iterator is valid.
111 bool Valid() const;
150 // True while the iterator is valid.
151 bool Valid() const;
registry.cc 319 bool RegistryValueIterator::Valid() const {
330 if (Valid()) {
386 bool RegistryKeyIterator::Valid() const {
397 if (Valid()) {
  /external/chromium_org/base/win/
registry.h 67 // True while the key is valid.
68 bool Valid() const { return key_ != NULL; }
150 // True while the iterator is valid.
151 bool Valid() const;
191 // True while the iterator is valid.
192 bool Valid() const;
registry.cc 372 bool RegistryValueIterator::Valid() const {
382 if (Valid()) {
459 bool RegistryKeyIterator::Valid() const {
469 if (Valid()) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32toolhelp.h 55 if (!Valid()) {
90 bool Valid() {
  /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...]
  /external/chromium_org/tools/memory_watcher/
call_stack.h 61 bool Valid() const { return valid_; }
131 // Indicate is this is a valid stack.
  /external/chromium/base/allocator/
allocator_unittests.cc 36 static bool Valid(unsigned char* buffer, int n) {
362 EXPECT_TRUE(Valid(ptr, size));
423 EXPECT_TRUE(Valid(dst, min(src_size, dst_size)));
425 EXPECT_TRUE(Valid(dst, dst_size));
475 EXPECT_TRUE(Valid(dst, min(src_size, dst_size)));
477 EXPECT_TRUE(Valid(dst, dst_size));
  /external/chromium_org/base/allocator/
allocator_unittests.cc 35 static bool Valid(unsigned char* buffer, int n) {
361 EXPECT_TRUE(Valid(ptr, size));
422 EXPECT_TRUE(Valid(dst, min(src_size, dst_size)));
424 EXPECT_TRUE(Valid(dst, dst_size));
474 EXPECT_TRUE(Valid(dst, min(src_size, dst_size)));
476 EXPECT_TRUE(Valid(dst, dst_size));
493 EXPECT_TRUE(Valid(ptr, size));
505 EXPECT_TRUE(Valid(ptr2, size));
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 130 bool Valid = true;
138 Valid = false;
146 Valid = false;
152 Valid = false;
158 Valid = false;
161 assert(Valid && "Invalid use list");

Completed in 2498 milliseconds

1 2