Home
last modified time | relevance | path

Searched refs:is_bool (Results 1 – 14 of 14) 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/v8/src/
Dflags.cc305 bool* is_bool) { in SplitArgument() argument
308 *is_bool = false; in SplitArgument()
324 *is_bool = true; in SplitArgument()
380 bool is_bool; in SetFlagsFromCommandLine() local
381 SplitArgument(arg, buffer, sizeof buffer, &name, &value, &is_bool); in SetFlagsFromCommandLine()
422 *flag->bool_variable() = !is_bool; in SetFlagsFromCommandLine()
425 *flag->maybe_bool_variable() = MaybeBoolFlag::Create(true, !is_bool); in SetFlagsFromCommandLine()
473 if ((is_bool_type && value != NULL) || (!is_bool_type && is_bool) || in SetFlagsFromCommandLine()
/external/vulkan-validation-layers/libs/glm/detail/
Dintrinsic_vector_relational.inl225 // detail::type<valType>::is_bool);
241 // detail::type<valType>::is_bool);
257 // detail::type<valType>::is_bool);
274 // detail::type<valType>::is_bool);
290 // detail::type<valType>::is_bool);
306 // detail::type<valType>::is_bool);
/external/tensorflow/tensorflow/tools/api/golden/
Dtensorflow.-d-type.pbtxt18 name: "is_bool"
/external/libchrome/base/
Dvalues.cc207 CHECK(is_bool()); in GetBool()
244 if (out_value && is_bool()) { in GetAsBoolean()
248 return is_bool(); in GetAsBoolean()
Dvalues.h118 bool is_bool() const { return type() == Type::BOOLEAN; } in is_bool() function
/external/libchrome/base/test/
Dtrace_event_analyzer.cc280 bool is_bool = GetAsDouble(event, &bool_value); in Evaluate() local
281 if (is_bool) in Evaluate()
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
Dir3_cp.c244 if (srcsrc && is_bool(srcsrc)) in combine_flags()
Dir3.h642 static inline bool is_bool(struct ir3_instruction *instr) in is_bool() function
/external/tensorflow/tensorflow/python/framework/
Ddtypes.py140 def is_bool(self): member in DType
/external/skia/src/sksl/
DSkSLSPIRVCodeGenerator.cpp168 static bool is_bool(const Context& context, const Type& type) { in is_bool() function
170 return is_bool(context, type.componentType()); in is_bool()
674 } else if (is_bool(fContext, type)) { in writeIntrinsicCall()
/external/skqp/src/sksl/
DSkSLSPIRVCodeGenerator.cpp168 static bool is_bool(const Context& context, const Type& type) { in is_bool() function
170 return is_bool(context, type.componentType()); in is_bool()
674 } else if (is_bool(fContext, type)) { in writeIntrinsicCall()
/external/tensorflow/tensorflow/python/ops/
Dvariable_scope.py847 elif dtype.is_integer or dtype.is_unsigned or dtype.is_bool: