Home
last modified time | relevance | path

Searched refs:type_value (Results 1 – 11 of 11) sorted by relevance

/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dtoken.rb599 type_value = Constants::MIN_TOKEN_TYPE + i
600 register_name( type_value, name )
605 def register_name( type_value, name ) argument
607 if token_names.has_key?( type_value )
608 current_name = token_names[ type_value ]
611 if current_name == "T__#{ type_value }"
613 token_names[ type_value ] = name
614 elsif name == "T__#{ type_value }"
619 "attempted assignment of token type #{ type_value }" <<
625 token_names[ type_value ] = name.to_s.freeze
[all …]
/external/tensorflow/tensorflow/python/framework/
Ddtypes.py651 def as_dtype(type_value): argument
667 if isinstance(type_value, DType):
668 return type_value
671 return _INTERN_TABLE[type_value]
676 return _STRING_TO_TF[type_value]
680 if isinstance(type_value, np.dtype):
685 if type_value.type == np.string_ or type_value.type == np.unicode_:
690 if key == type_value:
693 raise TypeError("Cannot convert {} to a dtype. {}".format(type_value, e))
695 raise TypeError("Cannot convert value %r to a TensorFlow DType." % type_value)
/external/skqp/src/core/
DSkTraceEvent.h235 TraceValueUnion type_value; \
236 type_value.union_member = arg; \
238 *value = type_value.as_uint; \
/external/skia/src/core/
DSkTraceEvent.h235 TraceValueUnion type_value; \
236 type_value.union_member = arg; \
238 *value = type_value.as_uint; \
/external/webrtc/webrtc/base/
Dtrace_event.h765 TraceValueUnion type_value; \
766 type_value.union_member = arg; \
768 *value = type_value.as_uint; \
806 TraceValueUnion type_value; in INTERNAL_DECLARE_SET_TRACE_VALUE_INT() local
807 type_value.as_string = arg.c_str(); in INTERNAL_DECLARE_SET_TRACE_VALUE_INT()
809 *value = type_value.as_uint; in INTERNAL_DECLARE_SET_TRACE_VALUE_INT()
/external/libchrome/base/trace_event/
Dtrace_event.h602 TraceValueUnion type_value; \
603 type_value.union_member = arg_expression; \
605 *value = type_value.as_uint; \
645 TraceValueUnion type_value; in INTERNAL_DECLARE_SET_TRACE_VALUE_INT() local
646 type_value.as_string = arg.c_str(); in INTERNAL_DECLARE_SET_TRACE_VALUE_INT()
648 *value = type_value.as_uint; in INTERNAL_DECLARE_SET_TRACE_VALUE_INT()
/external/v8/src/tracing/
Dtrace-event.h443 TraceValueUnion type_value; \
444 type_value.union_member = arg; \
446 *value = type_value.as_uint; \
/external/vixl/src/aarch32/
Ddisasm-aarch32.h2637 DataTypeValue Dt_L_imm6_1_Decode(uint32_t value, uint32_t type_value);
2638 DataTypeValue Dt_L_imm6_2_Decode(uint32_t value, uint32_t type_value);
2641 DataTypeValue Dt_imm6_1_Decode(uint32_t value, uint32_t type_value);
2642 DataTypeValue Dt_imm6_2_Decode(uint32_t value, uint32_t type_value);
2644 DataTypeValue Dt_imm6_4_Decode(uint32_t value, uint32_t type_value);
2677 DataTypeValue Dt_size_9_Decode(uint32_t value, uint32_t type_value);
2679 DataTypeValue Dt_size_11_Decode(uint32_t value, uint32_t type_value);
2680 DataTypeValue Dt_size_12_Decode(uint32_t value, uint32_t type_value);
Ddisasm-aarch32.cc91 DataTypeValue Dt_L_imm6_1_Decode(uint32_t value, uint32_t type_value) { in Dt_L_imm6_1_Decode() argument
93 switch (type_value) { in Dt_L_imm6_1_Decode()
100 switch (type_value) { in Dt_L_imm6_1_Decode()
107 switch (type_value) { in Dt_L_imm6_1_Decode()
114 switch (type_value) { in Dt_L_imm6_1_Decode()
124 DataTypeValue Dt_L_imm6_2_Decode(uint32_t value, uint32_t type_value) { in Dt_L_imm6_2_Decode() argument
126 if (type_value == 0x1) return S8; in Dt_L_imm6_2_Decode()
128 if (type_value == 0x1) return S16; in Dt_L_imm6_2_Decode()
130 if (type_value == 0x1) return S32; in Dt_L_imm6_2_Decode()
132 if (type_value == 0x1) return S64; in Dt_L_imm6_2_Decode()
[all …]
/external/mesa3d/src/compiler/nir/
Dnir.h64 type_field, type_value) \ argument
68 assert(parent && parent->type_field == type_value); \
/external/tensorflow/tensorflow/tools/api/golden/
Dtensorflow.pbtxt625 argspec: "args=[\'type_value\'], varargs=None, keywords=None, defaults=None"