Searched refs:FindVariable (Results 1 - 25 of 49) sorted by relevance

12

/external/lldb/tools/lldb-perf/darwin/formatters/
H A Dformatters.cpp89 m_dump_nsarray_measurement(frame_zero.FindVariable("nsarray", lldb::eDynamicCanRunTarget));
90 m_dump_nsarray_measurement(frame_zero.FindVariable("nsmutablearray", lldb::eDynamicCanRunTarget));
92 m_dump_nsdictionary_measurement(frame_zero.FindVariable("nsdictionary", lldb::eDynamicCanRunTarget));
93 m_dump_nsdictionary_measurement(frame_zero.FindVariable("nsmutabledictionary", lldb::eDynamicCanRunTarget));
95 m_dump_nsstring_measurement(frame_zero.FindVariable("str0", lldb::eDynamicCanRunTarget));
96 m_dump_nsstring_measurement(frame_zero.FindVariable("str1", lldb::eDynamicCanRunTarget));
97 m_dump_nsstring_measurement(frame_zero.FindVariable("str2", lldb::eDynamicCanRunTarget));
98 m_dump_nsstring_measurement(frame_zero.FindVariable("str3", lldb::eDynamicCanRunTarget));
99 m_dump_nsstring_measurement(frame_zero.FindVariable("str4", lldb::eDynamicCanRunTarget));
101 m_dump_nsdate_measurement(frame_zero.FindVariable("m
[all...]
/external/lldb/test/python_api/rdar-12481949/
H A DTest-rdar-12481949.py57 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() == -1, "GetValueAsSigned() says -1")
58 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() != 0xFFFFFFFF, "GetValueAsSigned() does not say 0xFFFFFFFF")
59 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() != 0xFFFFFFFFFFFFFFFF, "GetValueAsSigned() does not say 0xFFFFFFFFFFFFFFFF")
61 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsUnsigned() != -1, "GetValueAsUnsigned() does not say -1")
62 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsUnsigned() == 0xFFFFFFFFFFFFFFFF, "GetValueAsUnsigned() says 0xFFFFFFFFFFFFFFFF")
63 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() != 0xFFFFFFFF, "GetValueAsUnsigned() does not say 0xFFFFFFFF")
/external/lldb/test/functionalities/type_completion/
H A DTestTypeCompletion.py61 p_vector = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable('p')
68 p_vector = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable('p')
77 p_vector = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable('p')
89 p_vector = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable('p')
108 p_vector = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable('p')
128 p_vector = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable('p')
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/
H A DTestDataFormatterLibccMap.py117 self.assertTrue(self.frame().FindVariable("ii").MightHaveChildren(), "ii.MightHaveChildren() says False for non empty!")
180 self.assertTrue(self.frame().FindVariable("si").MightHaveChildren(), "si.MightHaveChildren() says False for non empty!")
241 self.assertTrue(self.frame().FindVariable("is").MightHaveChildren(), "is.MightHaveChildren() says False for non empty!")
296 self.assertTrue(self.frame().FindVariable("ss").MightHaveChildren(), "ss.MightHaveChildren() says False for non empty!")
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/
H A DTestDataFormatterLibccMultiMap.py117 self.assertTrue(self.frame().FindVariable("ii").MightHaveChildren(), "ii.MightHaveChildren() says False for non empty!")
180 self.assertTrue(self.frame().FindVariable("si").MightHaveChildren(), "si.MightHaveChildren() says False for non empty!")
241 self.assertTrue(self.frame().FindVariable("is").MightHaveChildren(), "is.MightHaveChildren() says False for non empty!")
296 self.assertTrue(self.frame().FindVariable("ss").MightHaveChildren(), "ss.MightHaveChildren() says False for non empty!")
/external/lldb/test/functionalities/data-formatter/rdar-11086338/
H A DTestRdar11086338.py75 self.assertTrue(self.frame().FindVariable("arr").MightHaveChildren(), "arr says it does not have children!")
76 self.assertTrue(self.frame().FindVariable("other_arr").MightHaveChildren(), "arr says it does not have children!")
/external/lldb/test/functionalities/set-data/
H A DTestSetData.py38 x = frame.FindVariable("myFoo").GetChildMemberWithName("x")
52 x = frame.FindVariable("string")
/external/lldb/test/lang/cpp/dynamic-value/
H A DTestDynamicValue.py140 myB = frame.FindVariable ('myB', no_dynamic);
144 otherB = frame.FindVariable('otherB', no_dynamic)
156 # Get "this" using FindVariable:
158 this_static = frame.FindVariable ('this', no_dynamic)
159 this_dynamic = frame.FindVariable ('this', use_dynamic)
189 anotherA_static = frame.FindVariable ('anotherA', False)
193 anotherA_dynamic = frame.FindVariable ('anotherA', True)
216 reallyA_value = frame.FindVariable ('reallyA', False)
228 anotherA_value = frame.FindVariable ('anotherA', True)
/external/lldb/test/python_api/default-constructor/
H A Dsb_frame.py32 obj.FindVariable("my_var")
33 obj.FindVariable("my_var", lldb.eDynamicCanRunTarget)
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/
H A DTestDataFormatterStdMap.py127 self.assertTrue(self.frame().FindVariable("ii").MightHaveChildren(), "ii.MightHaveChildren() says False for non empty!")
201 self.assertTrue(self.frame().FindVariable("si").MightHaveChildren(), "si.MightHaveChildren() says False for non empty!")
261 self.assertTrue(self.frame().FindVariable("is").MightHaveChildren(), "is.MightHaveChildren() says False for non empty!")
320 self.assertTrue(self.frame().FindVariable("ss").MightHaveChildren(), "ss.MightHaveChildren() says False for non empty!")
/external/lldb/test/functionalities/data-formatter/rdar-11988289/
H A DTestRdar 11988289.py77 self.assertTrue(self.frame().FindVariable("dictionary").MightHaveChildren(), "dictionary says it does not have children!")
78 self.assertTrue(self.frame().FindVariable("mutabledict").MightHaveChildren(), "mutable says it does not have children!")
/external/lldb/test/functionalities/data-formatter/rdar-12437442/
H A DTestRdar12437442.py62 id_x = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable("x")
74 id_x = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable("x")
/external/lldb/test/lang/objc/objc-dynamic-value/
H A DTestObjCDynamicValue.py93 myObserver = frame.FindVariable('myObserver', lldb.eDynamicCanRunTarget)
102 myObserver_static = frame.FindVariable('myObserver', lldb.eNoDynamicValues)
144 # Get "object" using FindVariable:
149 object_static = frame.FindVariable ('object', noDynamic)
150 object_dynamic = frame.FindVariable ('object', useDynamic)
179 # Get "object" using FindVariable:
181 object_static = frame.FindVariable ('object', noDynamic)
182 object_dynamic = frame.FindVariable ('object', useDynamic)
/external/lldb/test/lang/c/array_types/
H A DTestArrayTypes.py156 variable = frame.FindVariable("strings")
170 variable = frame.FindVariable("char_16")
179 variable = frame.FindVariable("ushort_matrix")
193 variable = frame.FindVariable("long_6")
208 argc = frame.FindVariable("argc")
/external/lldb/test/python_api/value/linked_list/
H A DTestValueAPILinkedList.py66 task_head = frame0.FindVariable('task_head')
119 empty_task_head = frame0.FindVariable('empty_task_head')
133 task_evil = frame0.FindVariable('task_evil')
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DVariableInfo.cpp114 VarT *FindVariable(const TString &name, function in namespace:sh::__anon11543
160 var = FindVariable(symbolName, mVaryings);
172 var = FindVariable(symbolName, mAttribs);
175 var = FindVariable(symbolName, mOutputVariables);
182 InterfaceBlock *namedBlock = FindVariable(interfaceBlock->name(), mInterfaceBlocks);
184 var = FindVariable(symbolName, &namedBlock->fields);
192 var = FindVariable(symbolName, mUniforms);
411 InterfaceBlock *namedBlock = FindVariable(interfaceBlock->name(), mInterfaceBlocks);
/external/lldb/include/lldb/API/
H A DSBFrame.h168 FindVariable (const char *var_name);
171 FindVariable (const char *var_name, lldb::DynamicValueType use_dynamic);
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/
H A DTestDataFormatterLibcxxList.py146 self.assertTrue(self.frame().FindVariable("numbers_list").MightHaveChildren(), "numbers_list.MightHaveChildren() says False for non empty!")
159 self.assertTrue(self.frame().FindVariable("text_list").MightHaveChildren(), "text_list.MightHaveChildren() says False for non empty!")
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/
H A DTestDataFormatterStdList.py138 self.assertTrue(self.frame().FindVariable("numbers_list").MightHaveChildren(), "numbers_list.MightHaveChildren() says False for non empty!")
197 self.assertTrue(self.frame().FindVariable("text_list").MightHaveChildren(), "text_list.MightHaveChildren() says False for non empty!")
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/
H A DTestDataFormatterStdVector.py151 self.assertTrue(self.frame().FindVariable("numbers").MightHaveChildren(), "numbers.MightHaveChildren() says False for non empty!")
212 self.assertTrue(self.frame().FindVariable("strings").MightHaveChildren(), "strings.MightHaveChildren() says False for non empty!")
/external/lldb/test/python_api/formatters/
H A DTestFormattersSBAPI.py165 foo_var = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable('foo')
173 foo_var = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable('foo')
185 foo_var = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable('foo')
208 foo_var = self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame().FindVariable('foo')
284 foo_ptr = frame.FindVariable("foo_ptr")
330 int_vector = frame.FindVariable("int_vector")
337 int_vector = frame.FindVariable("int_vector")
344 int_vector = frame.FindVariable("int_vector")
/external/lldb/include/lldb/Symbol/
H A DVariableList.h51 FindVariable (const ConstString& name);
/external/lldb/test/functionalities/recursion/
H A DTestValueObjectRecursion.py56 root = self.frame().FindVariable("root")
/external/lldb/test/functionalities/return-value/
H A DTestReturnValue.py48 in_value = thread.GetFrameAtIndex(0).FindVariable ("value")
110 in_int = thread.GetFrameAtIndex(0).FindVariable ("value").GetValueAsSigned(error)
143 in_int = frame.FindVariable ("value").GetValueAsSigned(error)
171 in_value = frame.FindVariable ("value")
/external/lldb/scripts/Python/interface/
H A DSBFrame.i207 ") FindVariable;
209 FindVariable (const char *var_name);
212 FindVariable (const char *var_name, lldb::DynamicValueType use_dynamic);

Completed in 262 milliseconds

12