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

1 2 3

  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
move.fail.cpp 24 constexpr S() : v_(0) {}
25 S(int v) : v_(v) {}
26 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable
27 constexpr S(const S &&rhs) : v_(rhs.v_) {} // not trivially moveable
28 int v_; member in struct:S
copy.fail.cpp 24 constexpr S() : v_(0) {}
25 S(int v) : v_(v) {}
26 S(const S &rhs) : v_(rhs.v_) {} // make it not trivially copyable
27 int v_; member in struct:S
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/optional/optional.object/optional.object.ctor/
move.fail.cpp 24 constexpr S() : v_(0) {}
25 S(int v) : v_(v) {}
26 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable
27 constexpr S(const S &&rhs) : v_(rhs.v_) {} // not trivially moveable
28 int v_; member in struct:S
copy.fail.cpp 24 constexpr S() : v_(0) {}
25 S(int v) : v_(v) {}
26 S(const S &rhs) : v_(rhs.v_) {} // make it not trivially copyable
27 int v_; member in struct:S
  /external/tensorflow/tensorflow/contrib/nearest_neighbor/kernels/
heap.h 48 *key = v_[0].key;
49 *data = v_[0].data;
51 v_[0] = v_[num_elements_];
62 if (v_.size() == static_cast<size_t>(num_elements_)) {
63 v_.push_back(Item(key, data));
65 v_[num_elements_].key = key;
66 v_[num_elements_].data = data;
72 if (v_.size() == static_cast<size_t>(num_elements_)) {
73 v_.push_back(Item(key, data))
142 std::vector<Item> v_; member in class:tensorflow::nearest_neighbor::HeapBase
    [all...]
  /external/libchrome/base/memory/
scoped_vector.h 47 reference operator[](size_t index) { return v_[index]; }
48 const_reference operator[](size_t index) const { return v_[index]; }
50 bool empty() const { return v_.empty(); }
51 size_t size() const { return v_.size(); }
53 reverse_iterator rbegin() { return v_.rbegin(); }
54 const_reverse_iterator rbegin() const { return v_.rbegin(); }
55 reverse_iterator rend() { return v_.rend(); }
56 const_reverse_iterator rend() const { return v_.rend(); }
58 iterator begin() { return v_.begin(); }
59 const_iterator begin() const { return v_.begin();
148 std::vector<T*> v_; member in class:ScopedVector
    [all...]
  /external/webrtc/webrtc/system_wrappers/include/
scoped_vector.h 49 std::swap(v_, other.v_); // The arguments are std::vectors, so std::swap
66 reference operator[](size_t index) { return v_[index]; }
67 const_reference operator[](size_t index) const { return v_[index]; }
69 bool empty() const { return v_.empty(); }
70 size_t size() const { return v_.size(); }
72 reverse_iterator rbegin() { return v_.rbegin(); }
73 const_reverse_iterator rbegin() const { return v_.rbegin(); }
74 reverse_iterator rend() { return v_.rend(); }
75 const_reverse_iterator rend() const { return v_.rend();
155 std::vector<T*> v_; member in class:webrtc::ScopedVector
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
Error.h 31 _ v_; member in struct:llvm::object::object_error
33 object_error(_ v) : v_(v) {}
34 explicit object_error(int v) : v_(_(v)) {}
35 operator int() const {return v_;}
  /external/libcxx/test/support/
nasty_containers.hpp 38 nasty_vector() : v_() {}
39 explicit nasty_vector(size_type n) : v_(n) {}
40 nasty_vector(size_type n, const value_type& value) : v_(n, value) {}
41 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {}
43 nasty_vector(std::initializer_list<value_type> il) : v_(il) {}
48 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); }
49 void assign(size_type n, const value_type& u) { v_.assign(n, u); }
51 void assign(std::initializer_list<value_type> il) { v_.assign(il); }
54 iterator begin() TEST_NOEXCEPT { return v_.begin(); }
55 const_iterator begin() const TEST_NOEXCEPT { return v_.begin();
134 nested_container v_; member in class:nasty_vector
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
nasty_containers.hpp 38 nasty_vector() : v_() {}
39 explicit nasty_vector(size_type n) : v_(n) {}
40 nasty_vector(size_type n, const value_type& value) : v_(n, value) {}
41 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {}
43 nasty_vector(std::initializer_list<value_type> il) : v_(il) {}
48 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); }
49 void assign(size_type n, const value_type& u) { v_.assign(n, u); }
51 void assign(std::initializer_list<value_type> il) { v_.assign(il); }
54 iterator begin() TEST_NOEXCEPT { return v_.begin(); }
55 const_iterator begin() const TEST_NOEXCEPT { return v_.begin();
134 nested_container v_; member in class:nasty_vector
    [all...]
  /external/compiler-rt/test/asan/TestCases/Windows/
demangled_names.cc 30 A(T v) { v_ = v; }
32 char *v_; member in struct:A
38 baz<char*, true>(v_);
  /external/pdfium/third_party/agg23/
agg_color_gray.h 46 gray8(unsigned v_, unsigned a_ = base_mask) :
47 v(int8u(v_)), a(int8u(a_)) {}
  /build/kati/
symtab.h 33 explicit Symbol(IsUninitialized) : v_(-1) {}
35 const string& str() const { return *((*g_symbols)[v_]); }
39 bool empty() const { return !v_; }
41 int val() const { return v_; }
50 bool IsValid() const { return v_ >= 0; }
61 int v_; member in class:Symbol
var.h 118 string* mutable_value() { return &v_; }
121 string v_; member in class:SimpleVar
141 Value* v_; member in class:RecursiveVar
165 RuleVar(Var* v, AssignOp op) : v_(v), op_(op) {}
166 virtual ~RuleVar() { delete v_; }
168 virtual const char* Flavor() const override { return v_->Flavor(); }
169 virtual VarOrigin Origin() const override { return v_->Origin(); }
170 virtual bool IsDefined() const override { return v_->IsDefined(); }
172 v_->Eval(ev, s);
175 v_->AppendVar(ev, v)
184 Var* v_; member in class:RuleVar
    [all...]
symtab.cc 44 Symbol::Symbol(int v) : v_(v) {}
47 if (static_cast<size_t>(v_) >= g_symbol_data.size()) {
50 return g_symbol_data[v_].gv;
54 if (static_cast<size_t>(v_) >= g_symbol_data.size()) {
55 g_symbol_data.resize(v_ + 1);
57 Var* v = g_symbol_data[v_].gv;
66 if (static_cast<size_t>(v_) >= g_symbol_data.size()) {
67 g_symbol_data.resize(v_ + 1);
69 Var* orig = g_symbol_data[v_].gv;
92 g_symbol_data[v_].gv = v
    [all...]
var.cc 60 : v_(v), origin_(origin) {}
64 *s += v_;
70 v_.push_back(' ');
71 v_ += buf;
75 return v_;
79 return v_;
83 : v_(v), origin_(origin), orig_(orig) {}
87 v_->Eval(ev, s);
92 v_ = NewExpr3(v_, NewLiteral(" "), v)
    [all...]
  /external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
erase_iter.pass.cpp 23 Throws() : v_(0) {}
24 Throws(int v) : v_(v) {}
25 Throws(const Throws &rhs) : v_(rhs.v_) { if (sThrows) throw 1; }
26 Throws( Throws &&rhs) : v_(rhs.v_) { if (sThrows) throw 1; }
27 Throws& operator=(const Throws &rhs) { v_ = rhs.v_; return *this; }
28 Throws& operator=( Throws &&rhs) { v_ = rhs.v_; return *this;
29 int v_; member in struct:Throws
    [all...]
erase_iter_iter.pass.cpp 23 Throws() : v_(0) {}
24 Throws(int v) : v_(v) {}
25 Throws(const Throws &rhs) : v_(rhs.v_) { if (sThrows) throw 1; }
26 Throws( Throws &&rhs) : v_(rhs.v_) { if (sThrows) throw 1; }
27 Throws& operator=(const Throws &rhs) { v_ = rhs.v_; return *this; }
28 Throws& operator=( Throws &&rhs) { v_ = rhs.v_; return *this;
29 int v_; member in struct:Throws
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.modifiers/
erase_iter.pass.cpp 23 Throws() : v_(0) {}
24 Throws(int v) : v_(v) {}
25 Throws(const Throws &rhs) : v_(rhs.v_) { if (sThrows) throw 1; }
26 Throws( Throws &&rhs) : v_(rhs.v_) { if (sThrows) throw 1; }
27 Throws& operator=(const Throws &rhs) { v_ = rhs.v_; return *this; }
28 Throws& operator=( Throws &&rhs) { v_ = rhs.v_; return *this;
29 int v_; member in struct:Throws
    [all...]
erase_iter_iter.pass.cpp 23 Throws() : v_(0) {}
24 Throws(int v) : v_(v) {}
25 Throws(const Throws &rhs) : v_(rhs.v_) { if (sThrows) throw 1; }
26 Throws( Throws &&rhs) : v_(rhs.v_) { if (sThrows) throw 1; }
27 Throws& operator=(const Throws &rhs) { v_ = rhs.v_; return *this; }
28 Throws& operator=( Throws &&rhs) { v_ = rhs.v_; return *this;
29 int v_; member in struct:Throws
    [all...]
  /bionic/tests/headers/posix/
header_checks.h 31 #define MACRO_VALUE(m_, v_) _Static_assert((m_)==(v_),#m_)
  /external/clang/test/SemaCXX/
access.cpp 53 int v_; member in struct:PR15209::alias_templates::U
55 U() : v_(A::x) { } // expected-error {{'x' is a private member of 'PR15209::alias_templates::A'}}
60 int v_; member in struct:PR15209::alias_templates::U
61 U() : v_(A::y) { } // expected-error {{'y' is a private member of 'PR15209::alias_templates::A'}}
  /external/clang/test/Analysis/
cxx11-crashes.cpp 43 T & v_; member in struct:addr_impl_ref
44 inline addr_impl_ref( T & v ): v_( v ) {
46 inline operator T& () const {return v_;}
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
FileSystem.h 59 file_type(_ v) : v_(v) {}
60 explicit file_type(int v) : v_(_(v)) {}
61 operator int() const {return v_;}
64 int v_; member in struct:llvm::sys::fs::file_type
75 copy_option(_ v) : v_(v) {}
76 explicit copy_option(int v) : v_(_(v)) {}
77 operator int() const {return v_;}
80 int v_; member in struct:llvm::sys::fs::copy_option
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tm-preds.h 201 #define CONST_OK_FOR_CONSTRAINT_P(v_,c_,s_) \
202 insn_const_int_ok_for_constraint (v_, lookup_constraint (s_))
204 #define CONST_DOUBLE_OK_FOR_CONSTRAINT_P(v_,c_,s_) \
205 constraint_satisfied_p (v_, lookup_constraint (s_))
207 #define EXTRA_CONSTRAINT_STR(v_,c_,s_) \
208 constraint_satisfied_p (v_, lookup_constraint (s_))

Completed in 231 milliseconds

1 2 3