Lines Matching full:variable
76 self.line = line_number("main.cpp", "// Set break point at this line and check variable 'my_char'.")
96 # Get the SBValue for the global variable 'my_char'.
127 # Get the SBValue for the global variable 'my_cstring'.
144 # Get the SBValue for the global variable 'my_uint32'.
178 # Get the SBValue for the global variable 'my_char'.
182 # If the variable does not have a load address, there's no sense continuing.
186 # OK, let's get the hex location of the variable.
189 # The program logic makes the 'my_char' variable to have memory content as 'x'.
190 # But we want to use the WriteMemory() API to assign 'a' to the variable.
192 # Now use WriteMemory() API to write 'a' into the global variable.
229 # Get the SBValue for the global variable 'my_int'.
233 # If the variable does not have a load address, there's no sense continuing.
237 # OK, let's get the hex location of the variable.
256 # The program logic makes the 'my_int' variable to have int type and value of 0.
257 # But we want to use the WriteMemory() API to assign 256 to the variable.
259 # Now use WriteMemory() API to write 256 into the global variable.
272 # And for grins, get the SBValue for the global variable 'my_int' again, to make sure that also tracks the new value: