Lines Matching full:variable
131 need to get the variable into a form that Python can access. To show you how to
134 variable. The second parameter is the word we are searching for (a string), and
138 <p>The most interesting parameter is the first one, the Python variable that
139 needs to contain a node in our search tree. How can we take a variable out of
140 our program and put it into a Python variable? What kind of Python variable
143 automatically give us our current frame object as a Python variable,
144 "lldb.frame". This variable has the type "SBFrame" (see the LLDB API for
146 frame object, is to ask it to find and return its local variable. We will call
148 dictionary variable as a Python variable:</p>
155 current frame to find the variable named "dictionary" and return it. We then
156 store the returned value in the Python variable named "root". This answers the
157 question of HOW to get the variable, but it still doesn't explain WHAT actually
281 <p>gets our program variable "dictionary" (which contains the binary search
282 tree) and puts it into the Python variable "root". See
301 find it). We pass in our binary tree stored in the variable <code>root</code>,
303 the DFS function returns to the Python variable <code>path</code>.</p>
335 commands will use the global <code>path</code> Python variable that we got from
338 <code>path</code> variable says should be made (the first character of the
375 <code>bp_loc</code> variable.</strong> The variables are pre-loaded by LLDB
419 piece of state (the <code>path</code> variable), and actually conditioning our
420 behavior based upon this variable. Since the variable was defined outside of
422 Python that we are accessing a global variable. That is what the first line of