HomeSort by relevance Sort by last modified time
    Searched full:evaluateexpression (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/lldb/test/python_api/default-constructor/
sb_frame.py 23 obj.EvaluateExpression("x + y")
24 obj.EvaluateExpression("x + y", lldb.eDynamicCanRunTarget)
  /external/lldb/test/expression_command/test/
TestExprs.py 2 Test many basic expression commands and SBFrame.EvaluateExpression() API.
9 Use Python APIs (SBFrame.EvaluateExpression()) to evaluate expressions.
85 """Test SBFrame.EvaluateExpression() API for evaluating an expression."""
138 val = frame.EvaluateExpression("2.234")
145 val = frame.EvaluateExpression("argc")
150 val = frame.EvaluateExpression("*argv[1]")
155 val = frame.EvaluateExpression("*argv[2]")
160 val = frame.EvaluateExpression("*argv[3]")
176 value = frame.EvaluateExpression('a_function_to_call()', options)
  /external/lldb/test/expression_command/call-throws/
TestCallThatThrows.py 71 value = frame.EvaluateExpression ("[my_class callMeIThrow]", options)
84 value = frame.EvaluateExpression ("[my_class callMeIThrow]", options)
96 value = frame.EvaluateExpression ("[my_class callMeIThrow]", options)
103 value = frame.EvaluateExpression ("[my_class callMeIThrow]", options)
  /external/lldb/test/expression_command/call-restarts/
TestCallThatRestarts.py 88 value = frame.EvaluateExpression ("call_me (%d)"%(num_sigchld), options)
102 value = frame.EvaluateExpression("call_me (%d)"%(num_sigchld), options)
112 value = frame.EvaluateExpression("call_me (%d)"%(num_sigchld), options)
120 value = frame.EvaluateExpression("call_me (%d)"%(num_sigchld), options)
132 value = frame.EvaluateExpression("call_me (%d)"%(num_sigchld), options)
  /external/lldb/test/lang/objc/objc-property/
TestObjCProperty.py 88 nonexistant_value = frame.EvaluateExpression("mine.nonexistantInt", False)
102 nonexistant_change = frame.EvaluateExpression("mine.nonexistantInt = 10", False)
117 backed_value = frame.EvaluateExpression("mine.backedInt", False)
124 unbacked_value = frame.EvaluateExpression("mine.unbackedInt", False)
128 idWithProtocol_value = frame.EvaluateExpression("mine.idWithProtocol", False)
  /external/lldb/test/lang/objc/objc-static-method/
TestObjCStaticMethod.py 65 cmd_value = frame.EvaluateExpression ("(char *) sel_getName (_cmd)")
70 cmd_value = frame.EvaluateExpression ("[self doSomethingElseWithString:string]")
  /external/lldb/test/lang/objc/objc-static-method-stripped/
TestObjCStaticMethodStripped.py 58 cmd_value = frame.EvaluateExpression ("(char *) sel_getName (_cmd)")
63 cmd_value = frame.EvaluateExpression ("[Foo doSomethingElseWithString:string]")
  /external/lldb/test/lang/objc/objc-super/
TestObjCSuper.py 64 cmd_value = frame.EvaluateExpression ("[self get]")
68 cmd_value = frame.EvaluateExpression ("[super get]")
  /external/lldb/include/lldb/API/
SBFrame.h 100 EvaluateExpression (const char *expr);
103 EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic);
106 EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic, bool unwind_on_error);
109 EvaluateExpression (const char *expr, const SBExpressionOptions &options);
176 // SBFrame::EvaluateExpression(...) returns, but a child object of
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
AbstractListPropertyEditor.java 103 // Object evaluatedExpression = evaluateExpression(genericProperty, expression);
111 // private static Object evaluateExpression(final GenericProperty genericProperty,
  /external/lldb/test/expression_command/timeout/
TestCallWithTimeout.py 65 value = frame.EvaluateExpression ("wait_a_while (10000)", options)
79 value = frame.EvaluateExpression ("wait_a_while (1000)", options)
  /external/lldb/test/functionalities/watchpoint/watchpoint_commands/command/
TestWatchpointCommandPython.py 69 self.runCmd('watchpoint command add -s python 1 -o \'frame.EvaluateExpression("cookie = 777")\'')
73 substrs = ['frame.EvaluateExpression', 'cookie = 777'])
  /external/lldb/source/Commands/
CommandObjectExpression.h 84 EvaluateExpression (const char *expr,
  /external/lldb/test/lang/objc/objc-ivar-stripped/
TestObjCIvarStripped.py 53 ivar = frame.EvaluateExpression ("(mc->_foo)")
  /external/lldb/examples/python/
diagnose_nsstring.py 54 nsstring = frame.EvaluateExpression(command,options)
56 nsstring = target.EvaluateExpression(command,options)
102 dumped = target.EvaluateExpression(expression,options)
  /external/lldb/test/lang/objc/blocks/
TestObjCIvarsInBlocks.py 86 direct_expr = frame.EvaluateExpression ("blocky_ivar + 10")
90 indirect_expr = frame.EvaluateExpression ("self->blocky_ivar + 10")
111 expr = frame.EvaluateExpression("(ret)")
  /external/lldb/source/API/
SBFrame.cpp     [all...]
  /external/lldb/scripts/Python/interface/
SBFrame.i 133 ") EvaluateExpression;
135 EvaluateExpression (const char *expr);
138 EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic);
141 EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic, bool unwind_on_error);
144 EvaluateExpression (const char *expr, SBExpressionOptions &options);
233 /// Unlike EvaluateExpression() which returns lldb.SBValue objects
  /external/lldb/test/expression_command/formatters/
TestFormatters.py 136 frozen = frame.EvaluateExpression("$" + object_name + ".a_ptr")
151 frozen = frame.EvaluateExpression("&numbers")
161 frozen = frame.EvaluateExpression("numbers")
  /external/lldb/test/lang/cpp/dynamic-value/
TestDynamicValue.py 176 # Get "this" using the EvaluateExpression:
177 this_static = frame.EvaluateExpression ('this', False)
178 this_dynamic = frame.EvaluateExpression ('this', True)
  /external/lldb/test/lang/objc/objc-dynamic-value/
TestObjCDynamicValue.py 163 # Get "this" using the EvaluateExpression:
164 object_static = frame.EvaluateExpression ('object', noDynamic)
165 object_dynamic = frame.EvaluateExpression ('object', useDynamic)
  /external/lldb/test/functionalities/expr-doesnt-deadlock/
TestExprDoesntBlock.py 65 var = frame0.EvaluateExpression ("call_me_to_get_lock()")
  /external/lldb/test/lang/objc/objc-checker/
TestObjCCheckers.py 75 expr_value = frame.EvaluateExpression("(int) [my_simple count]", False)
  /external/lldb/test/lang/objc/objc-class-method/
TestObjCClassMethod.py 66 cmd_value = frame.EvaluateExpression ("(int)[Foo doSomethingWithString:@\"Hello\"]")
  /external/lldb/test/lang/objc/objc-struct-return/
TestObjCStructReturn.py 62 cmd_value = frame.EvaluateExpression ("[provider getRange]")

Completed in 375 milliseconds

1 2 3