Home
last modified time | relevance | path

Searched refs:expect_var_path (Results 1 – 24 of 24) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string_view/
H A DTestDataFormatterLibcxxStringView.py59 self.expect_var_path('wempty',
62 self.expect_var_path('s',
65 self.expect_var_path('S',
68 self.expect_var_path('empty',
74 self.expect_var_path('q',
77 self.expect_var_path('Q',
104 self.expect_var_path('oops',
138 self.expect_var_path('s',
141 self.expect_var_path('S',
150 self.expect_var_path('q',
[all …]
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unique_ptr/
H A DTestDataFormatterLibcxxUniquePtr.py23 valobj = self.expect_var_path(
37 valobj = self.expect_var_path(
45 valobj = self.expect_var_path(
53 valobj = self.expect_var_path(
61 valobj = self.expect_var_path(
68 valobj = self.expect_var_path(
74 valobj = self.expect_var_path(
84 self.expect_var_path("up_user->id", type="int", value="30")
85 self.expect_var_path("up_user->name", type="std::string", summary='"steph"')
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/span/
H A DTestDataFormatterLibcxxSpan.py39 self.expect_var_path(f'{var_name}[0]', type='int', value='1')
40 self.expect_var_path(f'{var_name}[1]', type='int', value='12')
41 self.expect_var_path(f'{var_name}[2]', type='int', value='123')
42 self.expect_var_path(f'{var_name}[3]', type='int', value='1234')
43 self.expect_var_path(f'{var_name}[4]', type='int', value='12345')
77 self.expect_var_path('strings_span',
83 self.expect_var_path('strings_span', summary='item 0 is "smart"')
94 self.expect_var_path('strings_span', summary='span has 2 items')
96 self.expect_var_path('strings_span',
101 self.expect_var_path('strings_span[0]', summary='"smart"');
[all …]
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/shared_ptr/
H A DTestDataFormatterLibcxxSharedPtr.py23 valobj = self.expect_var_path(
37 valobj = self.expect_var_path(
45 valobj = self.expect_var_path(
53 valobj = self.expect_var_path(
61 valobj = self.expect_var_path(
68 valobj = self.expect_var_path("sp_user", type="std::shared_ptr<User>")
75 valobj = self.expect_var_path(
85 self.expect_var_path("sp_user->id", type="int", value="30")
86 self.expect_var_path("sp_user->name", type="std::string", summary='"steph"')
/llvm-project-15.0.7/lldb/test/API/commands/process/launch-with-shellexpand/
H A DTestLaunchWithShellExpand.py56 self.expect_var_path("argv[1]", summary='"file1.txt"')
57 self.expect_var_path("argv[2]", summary='"file2.txt"')
58 self.expect_var_path("argv[3]", summary='"file3.txt"')
59 self.expect_var_path("argv[4]", summary='"file4.txy"')
60 self.expect_var_path("argv[5]", summary='"()"')
61 self.expect_var_path("argv[6]", summary='">"')
62 self.expect_var_path("argv[7]", summary='"<"')
63 self.expect_var_path("argc", value='8')
/llvm-project-15.0.7/lldb/test/API/lang/cpp/wchar_t/
H A DTestCxxWCharT.py21 self.expect_var_path("foo_y", type="Foo<wchar_t>")
24 self.expect_var_path("foo_x", type="Foo<int>")
27 self.expect_var_path("foo_y.object", type="wchar_t")
30 self.expect_var_path("foo_x.object", type="int")
/llvm-project-15.0.7/lldb/test/API/lang/c/bitfields/
H A DTestBitfields.py36 self.expect_var_path("bits", type="Bits", children=bits_children)
50 self.expect_var_path("bits.b1", type="uint32_t:1", value="1")
51 self.expect_var_path("bits.b2", type="uint32_t:2", value="3")
52 self.expect_var_path("bits.b4", type="uint32_t", value="15")
53 self.expect_var_path("bits.b5", type="uint32_t:5", value="31")
54 self.expect_var_path("bits.b7", type="uint32_t:7", value="127")
65 self.expect_var_path("more_bits", type="MoreBits", children=more_bits_children)
93 …self.expect_var_path("many_single_bits", type="ManySingleBits", children=many_single_bits_children)
/llvm-project-15.0.7/lldb/test/API/lang/cpp/incomplete-types/members/
H A DTestCppIncompleteTypeMembers.py21 this = self.expect_var_path("this", type="A *")
25 self.expect_var_path("af.x", value='42')
31 self.expect_var_path("ag.a", value='47')
/llvm-project-15.0.7/lldb/test/API/lang/cpp/dereferencing_references/
H A DTestCPPDereferencingReferences.py16 lref_val = self.expect_var_path("l_ref", type="TTT &")
20 rref_val = self.expect_var_path("r_ref", type="TTT &&")
24 td_val = self.expect_var_path("td_to_ref_type", type="td_int_ref")
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/deque/
H A DTestDataFormatterGenericDeque.py42 self.expect_var_path("deque_200_small[%d]"%(i), children=[
47 self.expect_var_path("deque_200_small[%d]"%(i + 100), children=[
55 self.expect_var_path("deque_200_large[%d]"%(i), children=[
61 self.expect_var_path("deque_200_large[%d]"%(i + 100), children=[
/llvm-project-15.0.7/lldb/test/API/lang/cpp/diamond/
H A DTestCppDiamond.py65 self.expect_var_path("j1", type="Joiner1", children=children)
72 self.expect_var_path("j1.x", type="long", value="1")
82 self.expect_var_path("j1.m_value", type="int", value="12345")
/llvm-project-15.0.7/lldb/test/API/lang/c/flexible-array-members/
H A DTestCFlexibleArrayMembers.py18 self.expect_var_path("c->flexible", type="char[]", summary='"contents"')
20 self.expect_var_path("uc->flexible", type="unsigned char[]", summary='"contents"')
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/simulator/
H A DTestDataFormatterLibcxxStringSimulator.py23 self.expect_var_path("shortstring", summary='"short"')
24 self.expect_var_path("longstring", summary='"I am a very long string"')
/llvm-project-15.0.7/lldb/test/API/functionalities/archives/
H A DTestBSDArchives.py47 self.expect_var_path("__a_global", type="int", value="1")
60 self.expect_var_path("__b_global", type="int", value="2")
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-advanced/
H A DTestDataFormatterAdv.py247 self.expect_var_path("constInt", value='0x0000002a')
249 self.expect_var_path("volatileInt", value='0x0000002b')
251 self.expect_var_path("constVolatileInt", value='0x0000002c')
/llvm-project-15.0.7/lldb/test/API/lang/c/vla/
H A DTestVLA.py38 self.expect_var_path("vla"+name, type="int", value=value)
42 self.expect_var_path("vla", type="int[]", children=children)
/llvm-project-15.0.7/lldb/test/API/lang/cpp/bitfields/
H A DTestCppBitfields.py144 self.expect_var_path("base_with_vtable", children=base_with_vtable_children)
159 self.expect_var_path("with_vtable", children=with_vtable_children)
169 self.expect_var_path("with_vtable_and_unnamed",
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-objc/
H A DTestDataFormatterObjCCF.py80 self.expect_var_path(var_path, summary, None, type)
/llvm-project-15.0.7/lldb/test/API/lang/cpp/scratch-context-merging/structs/
H A DTestCppScratchContextMergingStructs.py32 self.expect_var_path(var, type=expected_type, children=expected_children)
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/bitset/
H A DTestDataFormatterGenericBitset.py48 self.expect_var_path(name,type=self.getBitsetVariant(size,variant),children=children)
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/set/
H A DTestDataFormatterGenericSet.py37 self.expect_var_path(var_name, type=self.getVariableType(var_name), children=children)
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/multiset/
H A DTestDataFormatterGenericMultiSet.py38 self.expect_var_path(var_name, type=self.getVariableType(var_name), children=children)
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/multimap/
H A DTestDataFormatterGenericMultiMap.py38 self.expect_var_path(var_name, type=self.getVariableType(var_name), children=children)
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbtest.py2433 def expect_var_path( member in TestBase