HomeSort by relevance Sort by last modified time
    Searched defs:GenericValue (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/ExecutionEngine/
GenericValue.h 1 //===-- GenericValue.h - Represent any type of LLVM value -------*- C++ -*-===//
10 // The GenericValue class is used to represent an LLVM value of arbitrary type.
26 struct GenericValue {
40 std::vector<GenericValue> AggregateVal;
42 // to make code faster, set GenericValue to zero could be omitted, but it is
43 // potentially can cause problems, since GenericValue to store garbage
45 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
46 explicit GenericValue(void *V) : PointerVal(V), IntVal(1,0) { }
49 inline GenericValue PTOGV(void *P) { return GenericValue(P);
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
document.h 47 \ref rapidjson::GenericValue with \c std::string are enabled, especially
70 class GenericValue;
77 This class was internal to GenericValue. It used to be a inner struct.
83 GenericValue<Encoding, Allocator> name; //!< name of member (must be a string)
84 GenericValue<Encoding, Allocator> value; //!< value of member.
99 of a GenericValue, see ISO/IEC 14882:2003(E) C++ standard, 24.1 [lib.iterator.requirements].
103 e.g. from GenericValue::FindMember.
109 \see GenericMember, GenericValue::MemberIterator, GenericValue::ConstMemberIterator
116 friend class GenericValue<Encoding,Allocator>;
    [all...]

Completed in 59 milliseconds