/external/catch2/projects/SelfTest/UsageTests/ |
D | Tricky.tests.cpp | 209 struct is_true struct 218 REQUIRE( is_true<true>::value == true ); argument 219 REQUIRE( true == is_true<true>::value ); 223 REQUIRE( is_true<false>::value == false ); 224 REQUIRE( false == is_true<false>::value ); 229 REQUIRE( !is_true<false>::value ); 234 REQUIRE( !!is_true<true>::value ); 239 REQUIRE( is_true<true>::value ); 240 REQUIRE_FALSE( is_true<false>::value );
|
/external/adhd/scripts/audio_tuning/ |
D | conf2ini2.py | 77 def is_true(d, pattern): function 91 has_drc = is_true(d, 'global.enable_drc') and is_true(d, 'drc.*.enable') 92 has_eq = is_true(d, 'global.enable_eq') and is_true(d, 'eq.*.*.enable') 100 if is_true(d, 'global.enable_swap') and len(stages) >= 2:
|
/external/v8/src/compiler/ |
D | branch-elimination.h | 36 bool is_true; in NON_EXPORTED_BASE() member 40 is_true == other.is_true; in NON_EXPORTED_BASE() 50 bool LookupCondition(Node* condition, Node** branch, bool* is_true) const; in NON_EXPORTED_BASE() 51 void AddCondition(Zone* zone, Node* condition, Node* branch, bool is_true, in NON_EXPORTED_BASE()
|
D | branch-elimination.cc | 234 Zone* zone, Node* condition, Node* branch, bool is_true, in AddCondition() argument 237 PushFront({condition, branch, is_true}, zone, hint); in AddCondition() 241 Node* condition, Node** branch, bool* is_true) const { in LookupCondition() 244 *is_true = element.is_true; in LookupCondition()
|
D | js-graph.h | 71 Node* BooleanConstant(bool is_true) { in BooleanConstant() argument 72 return is_true ? TrueConstant() : FalseConstant(); in BooleanConstant()
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 468 int is_true; in future_init() local 499 is_true = PyObject_IsTrue(res); in future_init() 501 if (is_true < 0) { in future_init() 504 if (is_true && !_Py_IsFinalizing()) { in future_init() 1118 int is_true = PyObject_IsTrue(val); in FutureObj_set_blocking() local 1119 if (is_true < 0) { in FutureObj_set_blocking() 1122 fut->fut_blocking = is_true; in FutureObj_set_blocking() 1145 int is_true = PyObject_IsTrue(val); in FutureObj_set_log_traceback() local 1146 if (is_true < 0) { in FutureObj_set_log_traceback() 1149 if (is_true) { in FutureObj_set_log_traceback() [all …]
|
/external/tensorflow/tensorflow/python/profiler/ |
D | option_builder.py | 372 def account_displayed_op_only(self, is_true): argument 384 self._options['account_displayed_op_only'] = is_true
|
/external/python/cpython2/Python/ |
D | _warnings.c | 527 int is_true; in setup_context() local 531 is_true = PyObject_IsTrue(*filename); in setup_context() 532 if (is_true < 0) { in setup_context() 536 else if (!is_true) { in setup_context()
|
/external/python/cpython3/Python/ |
D | _warnings.c | 770 int is_true; in setup_context() local 774 is_true = PyObject_IsTrue(*filename); in setup_context() 775 if (is_true < 0) { in setup_context() 779 else if (!is_true) { in setup_context()
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.profiler.-profile-option-builder.pbtxt | 11 argspec: "args=[\'self\', \'is_true\'], varargs=None, keywords=None, defaults=None"
|
/external/python/cpython2/Lib/test/support/ |
D | __init__.py | 1498 is_true = guards.values()[0] 1499 assert guards.values() == [is_true] * len(guards) # all True or all False 1500 return (guards, not is_true)
|
/external/python/cpython3/Lib/test/support/ |
D | __init__.py | 1837 is_true = list(guards.values())[0] 1838 assert list(guards.values()) == [is_true] * len(guards) # all True or all False 1839 return (guards, not is_true)
|
/external/v8/src/wasm/ |
D | wasm-interpreter.cc | 2164 bool is_true = cond.to<uint32_t>() != 0; in Execute() local 2165 if (is_true) { in Execute() 2196 bool is_true = cond.to<uint32_t>() != 0; in Execute() local 2197 if (is_true) { in Execute()
|
/external/catch2/projects/SelfTest/Baselines/ |
D | compact.sw.approved.txt | 56 Tricky.tests.cpp:<line number>: passed: is_true<true>::value == true for: true == true 57 Tricky.tests.cpp:<line number>: passed: true == is_true<true>::value for: true == true 58 Tricky.tests.cpp:<line number>: passed: is_true<false>::value == false for: false == false 59 Tricky.tests.cpp:<line number>: passed: false == is_true<false>::value for: false == false 60 Tricky.tests.cpp:<line number>: passed: !is_true<false>::value for: true 61 Tricky.tests.cpp:<line number>: passed: !!is_true<true>::value for: true 62 Tricky.tests.cpp:<line number>: passed: is_true<true>::value for: true 63 Tricky.tests.cpp:<line number>: passed: !(is_true<false>::value) for: !false
|
D | console.sw.approved.txt | 414 REQUIRE( is_true<true>::value == true ) 419 REQUIRE( true == is_true<true>::value ) 431 REQUIRE( is_true<false>::value == false ) 436 REQUIRE( false == is_true<false>::value ) 448 REQUIRE( !is_true<false>::value ) 460 REQUIRE( !!is_true<true>::value ) 472 REQUIRE( is_true<true>::value ) 477 REQUIRE_FALSE( is_true<false>::value )
|
/external/flatbuffers/src/ |
D | idl_parser.cpp | 1464 auto is_true = attribute_ == "true"; in ParseSingleValue() local 1465 if (is_true || attribute_ == "false") { in ParseSingleValue() 1466 attribute_ = is_true ? "1" : "0"; in ParseSingleValue()
|