HomeSort by relevance Sort by last modified time
    Searched refs:vec_ (Results 1 - 8 of 8) sorted by null

  /external/libmojo/mojo/public/cpp/bindings/
wtf_array.h 38 explicit WTFArray(size_t size) : vec_(size), is_null_(false) {}
42 WTFArray(WTF::Vector<T>&& other) : vec_(std::move(other)), is_null_(false) {}
46 vec_ = std::move(other);
57 vec_.clear();
80 // When the array is set to null, the underlying storage |vec_| shouldn't
82 DCHECK(!is_null_ || vec_.isEmpty());
87 bool empty() const { return vec_.isEmpty() && !is_null_; }
91 const T& front() const { return vec_.first(); }
92 T& front() { return vec_.first(); }
95 size_t size() const { return vec_.size();
189 WTF::Vector<T> vec_; member in class:mojo::WTFArray
    [all...]
array.h 46 explicit Array(size_t size) : vec_(size), is_null_(false) {}
50 Array(const std::vector<T>& other) : vec_(other), is_null_(false) {}
53 Array(std::vector<T>&& other) : vec_(std::move(other)), is_null_(false) {}
57 vec_ = std::move(other);
68 vec_.clear();
93 bool empty() const { return vec_.empty() && !is_null_; }
97 ConstRefType front() const { return vec_.front(); }
98 RefType front() { return vec_.front(); }
100 iterator begin() { return vec_.begin(); }
101 const_iterator begin() const { return vec_.begin();
204 std::vector<T> vec_; member in class:mojo::Array
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
vec.h 424 v.vec_ = space;
425 register_stack_vec (static_cast<void *> (v.vec_));
426 v.vec_->embedded_init (nelems, 0);
452 /* Move VEC_ to the heap. */
    [all...]
  /external/flatbuffers/include/flatbuffers/
reflection.h 333 vec_(vec) {}
337 reinterpret_cast<uint8_t *>(vec_.data()) + offset_);
345 std::vector<U> &vec_; member in class:flatbuffers::pointer_inside_vector
  /toolchain/binutils/binutils-2.25/gold/
object.h     [all...]
  /external/mesa3d/include/CL/
cl.hpp 569 vector<T,N> vec_; member in class:cl::vector::iterator
591 i.vec_ = vec;
603 i.vec_ = vec;
610 return ((vec_ == i.vec_) &&
642 return vec_[index_];
    [all...]
  /prebuilts/go/darwin-x86/src/internal/pprof/profile/
legacy_profile.go 1226 `__builtin_(vec_)?delete`,
1227 `__builtin_(vec_)?new`,
  /prebuilts/go/linux-x86/src/internal/pprof/profile/
legacy_profile.go 1226 `__builtin_(vec_)?delete`,
1227 `__builtin_(vec_)?new`,

Completed in 5022 milliseconds