HomeSort by relevance Sort by last modified time
    Searched defs:Value (Results 51 - 75 of 2048) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/v8/tools/clang/value_cleanup/tests/
values.h 15 class Value {};
18 class FundamentalValue : public Value {
25 class StringValue : public Value {
34 // Stub base::ListValue class that supports Append(Value*).
35 class ListValue : public Value {
39 // Appends a Value to the end of the list.
40 void Append(std::unique_ptr<Value> in_value);
43 void Append(Value* in_value);
  /external/webrtc/webrtc/system_wrappers/include/
atomic32.h 26 // align the 32 bit value correctly (on a 32 bit boundary), so as long as you're
38 int32_t operator+=(int32_t value);
39 int32_t operator-=(int32_t value);
41 // Sets the value atomically to new_value if the value equals compare value.
44 int32_t Value() {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 19 /// RelocAddrEntry contains relocated value and section index.
23 uint64_t Value;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 19 /// RelocAddrEntry contains relocated value and section index.
23 uint64_t Value;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Tooling/Refactoring/
RefactoringOptions.h 23 /// A refactoring option that stores a value of type \c T.
25 traits::IsValidOptionType<T>::value>::type>
29 Visitor.visit(*this, Value);
36 const ValueType &getValue() const { return Value; }
39 Optional<T> Value;
42 /// A required refactoring option that stores a value of type \c T.
44 traits::IsValidOptionType<T>::value>::type>
50 return *OptionalRefactoringOption<T>::Value;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Tooling/Refactoring/
RefactoringOptions.h 23 /// A refactoring option that stores a value of type \c T.
25 traits::IsValidOptionType<T>::value>::type>
29 Visitor.visit(*this, Value);
36 const ValueType &getValue() const { return Value; }
39 Optional<T> Value;
42 /// A required refactoring option that stores a value of type \c T.
44 traits::IsValidOptionType<T>::value>::type>
50 return *OptionalRefactoringOption<T>::Value;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Tooling/Refactoring/
RefactoringOptions.h 23 /// A refactoring option that stores a value of type \c T.
25 traits::IsValidOptionType<T>::value>::type>
29 Visitor.visit(*this, Value);
36 const ValueType &getValue() const { return Value; }
39 Optional<T> Value;
42 /// A required refactoring option that stores a value of type \c T.
44 traits::IsValidOptionType<T>::value>::type>
50 return *OptionalRefactoringOption<T>::Value;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Tooling/Refactoring/
RefactoringOptions.h 23 /// A refactoring option that stores a value of type \c T.
25 traits::IsValidOptionType<T>::value>::type>
29 Visitor.visit(*this, Value);
36 const ValueType &getValue() const { return Value; }
39 Optional<T> Value;
42 /// A required refactoring option that stores a value of type \c T.
44 traits::IsValidOptionType<T>::value>::type>
50 return *OptionalRefactoringOption<T>::Value;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 19 /// RelocAddrEntry contains relocated value and section index.
23 uint64_t Value;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 19 /// RelocAddrEntry contains relocated value and section index.
23 uint64_t Value;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Tooling/Refactoring/
RefactoringOptions.h 23 /// A refactoring option that stores a value of type \c T.
25 traits::IsValidOptionType<T>::value>::type>
29 Visitor.visit(*this, Value);
36 const ValueType &getValue() const { return Value; }
39 Optional<T> Value;
42 /// A required refactoring option that stores a value of type \c T.
44 traits::IsValidOptionType<T>::value>::type>
50 return *OptionalRefactoringOption<T>::Value;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Tooling/Refactoring/
RefactoringOptions.h 23 /// A refactoring option that stores a value of type \c T.
25 traits::IsValidOptionType<T>::value>::type>
29 Visitor.visit(*this, Value);
36 const ValueType &getValue() const { return Value; }
39 Optional<T> Value;
42 /// A required refactoring option that stores a value of type \c T.
44 traits::IsValidOptionType<T>::value>::type>
50 return *OptionalRefactoringOption<T>::Value;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Tooling/Refactoring/
RefactoringOptions.h 23 /// A refactoring option that stores a value of type \c T.
25 traits::IsValidOptionType<T>::value>::type>
29 Visitor.visit(*this, Value);
36 const ValueType &getValue() const { return Value; }
39 Optional<T> Value;
42 /// A required refactoring option that stores a value of type \c T.
44 traits::IsValidOptionType<T>::value>::type>
50 return *OptionalRefactoringOption<T>::Value;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Tooling/Refactoring/
RefactoringOptions.h 23 /// A refactoring option that stores a value of type \c T.
25 traits::IsValidOptionType<T>::value>::type>
29 Visitor.visit(*this, Value);
36 const ValueType &getValue() const { return Value; }
39 Optional<T> Value;
42 /// A required refactoring option that stores a value of type \c T.
44 traits::IsValidOptionType<T>::value>::type>
50 return *OptionalRefactoringOption<T>::Value;
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_array_in_pointer.py 13 class Value(Structure):
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_array_in_pointer.py 13 class Value(Structure):
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
  /prebuilts/go/darwin-x86/src/sync/atomic/
value.go 11 // A Value provides an atomic load and store of a consistently typed value.
12 // The zero value for a Value returns nil from Load.
13 // Once Store has been called, a Value must not be copied.
15 // A Value must not be copied after first use.
16 type Value struct {
26 // Load returns the value set by the most recent Store.
27 // It returns nil if there has been no call to Store for this Value.
28 func (v *Value) Load() (x interface{})
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug329.go 9 type Value struct {
20 func (Value) Complex(x complex128) {
31 func (Value) Struct(x Struct) {
43 var v Value
  /prebuilts/go/linux-x86/src/sync/atomic/
value.go 11 // A Value provides an atomic load and store of a consistently typed value.
12 // The zero value for a Value returns nil from Load.
13 // Once Store has been called, a Value must not be copied.
15 // A Value must not be copied after first use.
16 type Value struct {
26 // Load returns the value set by the most recent Store.
27 // It returns nil if there has been no call to Store for this Value.
28 func (v *Value) Load() (x interface{})
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug329.go 9 type Value struct {
20 func (Value) Complex(x complex128) {
31 func (Value) Struct(x Struct) {
43 var v Value
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_array_in_pointer.py 13 class Value(Structure):
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_array_in_pointer.py 13 class Value(Structure):
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
  /external/skia/tests/
LRUCacheTest.cpp 11 struct Value {
12 Value(int value, int* counter)
13 : fValue(value)
18 ~Value() {
30 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
33 test.insert(i, std::unique_ptr<Value>(new Value(i * i, &instances)));
54 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
58 test.insert(k, std::unique_ptr<Value>(new Value(k, &instances)))
    [all...]
  /external/skqp/tests/
LRUCacheTest.cpp 11 struct Value {
12 Value(int value, int* counter)
13 : fValue(value)
18 ~Value() {
30 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
33 test.insert(i, std::unique_ptr<Value>(new Value(i * i, &instances)));
54 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
58 test.insert(k, std::unique_ptr<Value>(new Value(k, &instances)))
    [all...]
  /system/chre/util/tests/
unique_ptr_test.cc 11 struct Value {
12 Value(int value) : value(value) {
16 ~Value() {
20 Value& operator=(Value&& other) {
21 value = other.value;
25 int value; member in struct:Value
58 Value *value = myInt.get(); local
    [all...]

Completed in 423 milliseconds

1 23 4 5 6 7 8 91011>>