HomeSort by relevance Sort by last modified time
    Searched refs:ValueType (Results 76 - 100 of 682) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseLongEncodedValue.java 36 import org.jf.dexlib2.ValueType;
66 public int getValueType() { return ValueType.LONG; }
BaseMethodEncodedValue.java 35 import org.jf.dexlib2.ValueType;
63 public int getValueType() { return ValueType.METHOD; }
BaseShortEncodedValue.java 36 import org.jf.dexlib2.ValueType;
64 public int getValueType() { return ValueType.SHORT; }
BaseStringEncodedValue.java 35 import org.jf.dexlib2.ValueType;
63 public int getValueType() { return ValueType.STRING; }
BaseTypeEncodedValue.java 35 import org.jf.dexlib2.ValueType;
63 public int getValueType() { return ValueType.TYPE; }
BaseAnnotationEncodedValue.java 35 import org.jf.dexlib2.ValueType;
71 return ValueType.ANNOTATION;
  /external/tensorflow/tensorflow/core/lib/monitoring/
collected_metrics.h 71 ValueType value_type;
88 ValueType value_type;
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/quantiles/
weighted_quantiles_summary.h 29 template <typename ValueType, typename WeightType,
30 typename CompareFn = std::less<ValueType>>
33 using Buffer = WeightedQuantilesBuffer<ValueType, WeightType, CompareFn>;
37 SummaryEntry(const ValueType& v, const WeightType& w, const WeightType& min,
76 ValueType value;
237 std::vector<ValueType> GenerateBoundaries(int64 num_boundaries) const {
239 WeightedQuantilesSummary<ValueType, WeightType, CompareFn>
249 std::vector<ValueType> output;
261 std::vector<ValueType> GenerateQuantiles(int64 num_quantiles) const {
262 std::vector<ValueType> output
    [all...]
weighted_quantiles_stream.h 61 template <typename ValueType, typename WeightType,
62 typename CompareFn = std::less<ValueType>>
65 using Buffer = WeightedQuantilesBuffer<ValueType, WeightType, CompareFn>;
67 using Summary = WeightedQuantilesSummary<ValueType, WeightType, CompareFn>;
84 void PushEntry(const ValueType& value, const WeightType& weight) {
142 std::vector<ValueType> GenerateQuantiles(int64 num_quantiles) const {
157 std::vector<ValueType> GenerateBoundaries(int64 num_boundaries) const {
286 template <typename ValueType, typename WeightType, typename CompareFn>
288 WeightedQuantilesStream<ValueType, WeightType, CompareFn>::GetQuantileSpecs(
  /external/tensorflow/tensorflow/core/util/
permutation_input_iterator.h 24 template <typename ValueType, typename InputIteratorT, typename IndexIteratorT,
32 typedef ValueType
34 typedef ValueType* pointer; ///< The type of a pointer to an element the
36 typedef ValueType reference; ///< The type of a reference to an element the
  /frameworks/compile/mclinker/include/mcld/LD/
LDSymbol.h 38 typedef uint64_t ValueType;
101 ValueType value() const { return m_Value; }
119 void setValue(ValueType pValue) { m_Value = pValue; }
138 ValueType m_Value;
Resolver.h 55 LDSymbol::ValueType pValue) const = 0;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseMethodParameter.java 34 import org.jf.dexlib2.ValueType;
64 if (encodedValue.getValueType() != ValueType.ARRAY) {
77 if (signatureValue.getValueType() != ValueType.STRING) {
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
iterator.h 27 // An ad hoc iterator class for std::vector<std::unique_ptr<|ValueType|>>. The
30 // std::vector<|ValueType|>.
31 template <typename ValueType, bool IsConst = false>
34 typename std::conditional<IsConst, const ValueType,
35 ValueType>::type> {
39 typename std::conditional<IsConst, const ValueType, ValueType>::type>;
46 using Uptr = std::unique_ptr<ValueType>;
125 template <typename ValueType,
126 class IteratorType = UptrVectorIterator<ValueType>>
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
std_set.i 39 typename ValueType = typename std::iterator_traits<InOutIterator>::value_type,
40 typename FromOper = from_oper<ValueType>,
41 typename AsvalOper = asval_oper<ValueType> >
48 typedef ValueType value_type;
50 typedef SetIteratorOpen_T<InOutIterator, ValueType, FromOper, AsvalOper> self_type;
77 typename ValueType = typename std::iterator_traits<InOutIterator>::value_type,
78 typename FromOper = from_oper<ValueType>,
79 typename AsvalOper = asval_oper<ValueType> >
86 typedef ValueType value_type;
88 typedef SetIteratorClosed_T<InOutIterator, ValueType, FromOper, AsvalOper> self_type
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
EncodedValueRewriter.java 34 import org.jf.dexlib2.ValueType;
54 case ValueType.TYPE:
56 case ValueType.FIELD:
58 case ValueType.METHOD:
60 case ValueType.ENUM:
62 case ValueType.ARRAY:
64 case ValueType.ANNOTATION:
  /external/google-breakpad/src/processor/
stackwalker_unittest_utils.h 86 template<typename ValueType>
87 bool GetMemoryLittleEndian(uint64_t address, ValueType *value) const {
89 address - base_address_ + sizeof(ValueType) > contents_.size())
91 ValueType v = 0;
94 for (size_t i = sizeof(ValueType) - 1; i < sizeof(ValueType); i--)
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFFormValue.h 38 struct ValueType {
39 ValueType() : data(nullptr) {
52 ValueType Value; // Contains all data for the form.
  /prebuilts/misc/common/swig/include/2.0.11/d/
std_vector.i 190 alias $typemap(dtype, CTYPE) ValueType;
192 this(ValueType[] values...) {
219 @property ValueType front() {
224 @property void front(ValueType value) {
234 void opIndexAssign(ValueType value, size_t i) {
240 void opIndexOpAssign(string op)(ValueType value, size_t i) {
263 @property ValueType front() {
268 @property void front(ValueType value) {
273 @property ValueType back() {
278 @property void back(ValueType value)
    [all...]
  /external/google-breakpad/src/google_breakpad/processor/
microdump.h 97 template<typename ValueType>
98 bool GetMemoryLittleEndian(uint64_t address, ValueType* value) const;
  /external/libcxx/benchmarks/
algorithms.bench.cpp 12 using ValueType = typename decltype(gen(0))::value_type;
14 std::vector<ValueType> inputs[5];
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 392 LDSymbol::ValueType pValue = 0x0,
438 LDSymbol::ValueType pValue = 0x0,
467 LDSymbol::ValueType pValue,
477 LDSymbol::ValueType pValue,
494 LDSymbol::ValueType pValue,
505 LDSymbol::ValueType pValue,
516 LDSymbol::ValueType pValue,
527 LDSymbol::ValueType pValue,
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/benchmarks/
algorithms.bench.cpp 12 using ValueType = typename decltype(gen(0))::value_type;
14 std::vector<ValueType> inputs[5];
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUISelLowering.h 65 EVT ValueType);
67 EVT ValueType);
69 EVT ValueType);
71 EVT ValueType);
73 EVT ValueType);
109 /// getSetCCResultType - Return the ValueType for ISD::SETCC
  /prebuilts/misc/common/swig/include/2.0.11/octave/
octiterators.swg 161 template <class ValueType>
164 typedef const ValueType& argument_type;
173 typename ValueType = typename std::iterator_traits<OutIterator>::value_type,
174 typename FromOper = from_oper<ValueType> >
180 typedef ValueType value_type;
182 typedef OctSwigIteratorOpen_T<OutIterator, ValueType, FromOper> self_type;
216 typename ValueType = typename std::iterator_traits<OutIterator>::value_type,
217 typename FromOper = from_oper<ValueType> >
223 typedef ValueType value_type;
225 typedef OctSwigIteratorClosed_T<OutIterator, ValueType, FromOper> self_type
    [all...]

Completed in 684 milliseconds

1 2 34 5 6 7 8 91011>>