Home
last modified time | relevance | path

Searched refs:is_bool (Results 1 – 22 of 22) sorted by relevance

/external/webrtc/webrtc/base/
Dflags.cc142 bool* is_bool) { in SplitArgument() argument
145 *is_bool = false; in SplitArgument()
154 *is_bool = true; in SplitArgument()
188 bool is_bool; in SetFlagsFromCommandLine() local
189 SplitArgument(arg, buffer, sizeof buffer, &name, &value, &is_bool); in SetFlagsFromCommandLine()
215 *flag->bool_variable() = !is_bool; in SetFlagsFromCommandLine()
230 (flag->type() != Flag::BOOL && is_bool) || in SetFlagsFromCommandLine()
Dflags.h212 bool* is_bool);
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.dtypes.-d-type.pbtxt18 name: "is_bool"
Dtensorflow.-d-type.pbtxt18 name: "is_bool"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.dtypes.-d-type.pbtxt18 name: "is_bool"
Dtensorflow.-d-type.pbtxt18 name: "is_bool"
/external/libchrome/base/json/
Djson_reader_unittest.cc37 EXPECT_TRUE(root->is_bool()); in TEST()
49 EXPECT_TRUE(root->is_bool()); in TEST()
304 EXPECT_TRUE(tmp_value->is_bool()); in TEST()
/external/flatbuffers/src/
Didl_gen_lua.cpp197 auto is_bool = field.value.type.base_type == BASE_TYPE_BOOL; in GetScalarFieldOfTable() local
198 if (is_bool) { in GetScalarFieldOfTable()
204 if (is_bool) { in GetScalarFieldOfTable()
Didl_gen_python.cpp195 auto is_bool = IsBool(field.value.type.base_type); in GetScalarFieldOfTable() local
196 if (is_bool) { in GetScalarFieldOfTable()
201 if (is_bool) { in GetScalarFieldOfTable()
/external/tensorflow/tensorflow/python/eager/
Dbackprop.py617 if dtypes.as_dtype(dtype).is_bool:
634 if as_dtype.is_bool:
/external/libchrome/base/
Dvalues.cc226 CHECK(is_bool()); in GetBool()
445 if (out_value && is_bool()) { in GetAsBoolean()
449 return is_bool(); in GetAsBoolean()
Dvalues.h154 bool is_bool() const { return type() == Type::BOOLEAN; } in is_bool() function
Dvalues_unittest.cc1053 EXPECT_TRUE(removed_item->is_bool()); in TEST()
1098 ASSERT_TRUE(copy_bool->is_bool()); in TEST()
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
Dir3_cp.c258 if (srcsrc && is_bool(srcsrc)) in combine_flags()
Dir3.h713 static inline bool is_bool(struct ir3_instruction *instr) in is_bool() function
/external/tensorflow/tensorflow/python/framework/
Ddtypes.py137 def is_bool(self): member in DType
/external/tensorflow/tensorflow/python/ops/distributions/
Ddistribution.py136 (preferred_dtype.is_integer or preferred_dtype.is_bool)):
/external/tensorflow/tensorflow/python/keras/engine/
Dbase_layer.py355 elif dtype.is_integer or dtype.is_unsigned or dtype.is_bool:
/external/skia/src/sksl/
DSkSLSPIRVCodeGenerator.cpp169 static bool is_bool(const Context& context, const Type& type) { in is_bool() function
171 return is_bool(context, type.componentType()); in is_bool()
688 } else if (is_bool(fContext, type)) { in writeIntrinsicCall()
/external/skqp/src/sksl/
DSkSLSPIRVCodeGenerator.cpp170 static bool is_bool(const Context& context, const Type& type) { in is_bool() function
172 return is_bool(context, type.componentType()); in is_bool()
682 } else if (is_bool(fContext, type)) { in writeIntrinsicCall()
/external/tensorflow/tensorflow/python/ops/
Dvariable_scope.py990 elif (dtype.is_integer or dtype.is_unsigned or dtype.is_bool
/external/tensorflow/tensorflow/python/kernel_tests/
Darray_ops_test.py499 if tensor_type.is_bool: