HomeSort by relevance Sort by last modified time
    Searched defs:is_true (Results 1 - 11 of 11) sorted by null

  /external/adhd/scripts/audio_tuning/
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/
branch-elimination.h 36 bool is_true; member in struct:v8::internal::compiler::final::BranchCondition
40 is_true == other.is_true;
50 bool LookupCondition(Node* condition, Node** branch, bool* is_true) const;
51 void AddCondition(Zone* zone, Node* condition, Node* branch, bool is_true,
  /external/catch2/projects/SelfTest/UsageTests/
Tricky.tests.cpp 209 struct is_true struct in namespace:EnumBitFieldTests
218 REQUIRE( is_true<true>::value == true );
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 );
  /build/kati/
eval.cc 368 bool is_true; local
379 is_true = (v->String().empty() == (stmt->op == CondOp::IFNDEF));
386 is_true = ((lhs == rhs) == (stmt->op == CondOp::IFEQ));
395 if (is_true) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
_warnings.c 521 int is_true; local
525 is_true = PyObject_IsTrue(*filename);
526 if (is_true < 0) {
530 else if (!is_true) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
_warnings.c 520 int is_true; local
524 is_true = PyObject_IsTrue(*filename);
525 if (is_true < 0) {
529 else if (!is_true) {
  /external/python/cpython2/Python/
_warnings.c 527 int is_true; local
531 is_true = PyObject_IsTrue(*filename);
532 if (is_true < 0) {
536 else if (!is_true) {
  /external/python/cpython3/Python/
_warnings.c 770 int is_true; local
774 is_true = PyObject_IsTrue(*filename);
775 if (is_true < 0) {
779 else if (!is_true) {
    [all...]
  /external/flatbuffers/src/
idl_parser.cpp 1464 auto is_true = attribute_ == "true"; local
    [all...]
  /external/python/cpython3/Modules/
_asynciomodule.c 468 int is_true; local
499 is_true = PyObject_IsTrue(res);
501 if (is_true < 0) {
504 if (is_true && !_Py_IsFinalizing()) {
1118 int is_true = PyObject_IsTrue(val); local
1119 if (is_true < 0) {
1122 fut->fut_blocking = is_true;
1145 int is_true = PyObject_IsTrue(val); local
1146 if (is_true < 0) {
1149 if (is_true) {
2023 int is_true = PyObject_IsTrue(val); local
2196 int is_true; local
2677 int is_true; local
2773 int is_true; local
    [all...]
  /external/v8/src/wasm/
wasm-interpreter.cc 2164 bool is_true = cond.to<uint32_t>() != 0; local
2196 bool is_true = cond.to<uint32_t>() != 0; local
    [all...]

Completed in 717 milliseconds