Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/lang/cpp/incomplete-types/
H A DTestCppIncompleteTypes.py20 value_a = frame.EvaluateExpression("a")
22 value_a.IsValid(),
24 self.assertSuccess(value_a.GetError(), "'expr a' is successful")
39 value_a = frame.EvaluateExpression("a")
41 value_a.IsValid(),
43 self.assertSuccess(value_a.GetError(), "'expr a' is successful")
/llvm-project-15.0.7/clang/test/Sema/
H A 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()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DSymtab.cpp584 addr_t value_a = addr_cache[index_a]; in operator ()() local
585 if (value_a == LLDB_INVALID_ADDRESS) { in operator ()()
586 value_a = symbols[index_a].GetAddressRef().GetFileAddress(); in operator ()()
587 addr_cache[index_a] = value_a; in operator ()()
596 if (value_a == value_b) { in operator ()()
605 } else if (value_a < value_b) in operator ()()
/llvm-project-15.0.7/libc/src/string/memory_utils/
H A Delements.h214 const auto value_a = ElementA::load(src);
217 ElementA::store(dst, value_a);