Lines Matching full:strong
126 <h1 class ="postheader"><a name="accessing-variables">Accessing & Manipulating <strong>Program</strong> Variables in Python</a>
176 <p><strong>"DFS" Overview.</strong> Before diving into the details of this
229 % <strong>lldb</strong><br>
230 (lldb) <strong>process attach -n "dictionary"</strong><br>
235 (lldb) <strong>breakpoint set -n find_word</strong><br>
237 (lldb) <strong>continue</strong><br>
250 (lldb) <strong>script</strong><br>
252 >>> <strong>import tree_utils</strong><br>
253 >>> <strong>root = lldb.frame.FindVariable ("dictionary")</strong><br>
254 >>> <strong>current_path = ""</strong><br>
255 >>> <strong>path = tree_utils.DFS (root, "Romeo", current_path)</strong><br>
256 >>> <strong>print path</strong><br>
258 >>> <strong>^D</strong><br>
371 <strong>you must declare such variables to be global</strong>. If you do not
373 variables, and you will get unexpected behavior. 2. <strong>All Python
375 <code>bp_loc</code> variable.</strong> The variables are pre-loaded by LLDB