Home
last modified time | relevance | path

Searched refs:value_a (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/test/API/lang/cpp/incomplete-types/
DTestCppIncompleteTypes.py22 value_a = frame.EvaluateExpression("a")
24 value_a.IsValid(),
26 self.assertTrue(value_a.GetError().Success(), "'expr a' is successful")
41 value_a = frame.EvaluateExpression("a")
43 value_a.IsValid(),
45 self.assertTrue(value_a.GetError().Success(), "'expr a' is successful")
/external/clang/test/Sema/
Dconversion.c395 void test_8559831(enum E8559831b value_a, E8559831c value_c) { in test_8559831() argument
396 …test_8559831_a(value_a); // expected-warning{{implicit conversion from enumeration type 'enum E855… in test_8559831()
397 …enum E8559831a a1 = value_a; // expected-warning{{implicit conversion from enumeration type 'enum … in test_8559831()
398 …a1 = value_a; // expected-warning{{implicit conversion from enumeration type 'enum E8559831b' to d… in test_8559831()
/external/llvm-project/clang/test/Sema/
Dconversion.c395 void test_8559831(enum E8559831b value_a, E8559831c value_c) { in test_8559831() argument
396 …test_8559831_a(value_a); // expected-warning{{implicit conversion from enumeration type 'enum E855… in test_8559831()
397 …enum E8559831a a1 = value_a; // expected-warning{{implicit conversion from enumeration type 'enum … in test_8559831()
398 …a1 = value_a; // expected-warning{{implicit conversion from enumeration type 'enum E8559831b' to d… in test_8559831()
/external/tensorflow/tensorflow/compiler/xla/service/
Dcopy_insertion.cc506 for (const HloValue* value_a : buffer.values()) { in CopyRemover() local
507 if (value_a->shape().IsToken()) { in CopyRemover()
512 if (value_a != value_b) { in CopyRemover()
513 DCHECK(ordering_.LiveRangeStrictlyBefore(*value_a, *value_b, in CopyRemover()
515 ordering_.LiveRangeStrictlyBefore(*value_b, *value_a, in CopyRemover()
517 << value_a->ToShortString() << " and " in CopyRemover()
Dhlo_alias_analysis_test.cc96 for (const HloValue* value_a : buffer.values()) { in AnyValuesInSameBufferInterfere() local
98 if (*value_a != *value_b && in AnyValuesInSameBufferInterfere()
99 ordering.MayInterfere(*value_a, *value_b, in AnyValuesInSameBufferInterfere()
101 VLOG(1) << *value_a << " interferes with " << *value_b in AnyValuesInSameBufferInterfere()
/external/llvm-project/lldb/source/Symbol/
DSymtab.cpp537 addr_t value_a = addr_cache[index_a]; in operator ()() local
538 if (value_a == LLDB_INVALID_ADDRESS) { in operator ()()
539 value_a = symbols[index_a].GetAddressRef().GetFileAddress(); in operator ()()
540 addr_cache[index_a] = value_a; in operator ()()
549 if (value_a == value_b) { in operator ()()
558 } else if (value_a < value_b) in operator ()()
/external/libtextclassifier/native/actions/
Dlua-ranker_test.cc253 if action.type == "test" and action.test == "value_a" then in TEST()
/external/mesa3d/src/compiler/glsl/
Dast_to_hir.cpp347 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, in arithmetic_result_type() argument
351 const glsl_type *type_a = value_a->type; in arithmetic_result_type()
372 && !apply_implicit_conversion(type_b, value_a, state)) { in arithmetic_result_type()
378 type_a = value_a->type; in arithmetic_result_type()
518 bit_logic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, in bit_logic_result_type() argument
522 const glsl_type *type_a = value_a->type; in bit_logic_result_type()
559 && !apply_implicit_conversion(type_b, value_a, state)) { in bit_logic_result_type()
572 type_a = value_a->type; in bit_logic_result_type()
606 modulus_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, in modulus_result_type() argument
609 const glsl_type *type_a = value_a->type; in modulus_result_type()
[all …]