/external/lldb/source/Commands/ |
CommandObjectArgs.cpp | 18 #include "lldb/Interpreter/Args.h" 26 #include "lldb/Interpreter/CommandInterpreter.h" 27 #include "lldb/Interpreter/CommandReturnObject.h" 42 CommandObjectArgs::CommandOptions::CommandOptions (CommandInterpreter &interpreter) : 43 Options(interpreter) 82 CommandObjectArgs::CommandObjectArgs (CommandInterpreter &interpreter) : 83 CommandObjectParsed (interpreter, 87 m_options (interpreter)
|
CommandObjectBreakpoint.cpp | 22 #include "lldb/Interpreter/Options.h" 25 #include "lldb/Interpreter/CommandInterpreter.h" 26 #include "lldb/Interpreter/CommandReturnObject.h" 28 #include "lldb/Interpreter/CommandCompletions.h" 67 CommandObjectBreakpointSet (CommandInterpreter &interpreter) : 68 CommandObjectParsed (interpreter, 72 m_options (interpreter) 90 CommandOptions (CommandInterpreter &interpreter) : 91 Options (interpreter), 698 CommandObjectBreakpointModify (CommandInterpreter &interpreter) [all...] |
CommandObjectBreakpointCommand.cpp | 19 #include "lldb/Interpreter/CommandInterpreter.h" 20 #include "lldb/Interpreter/CommandReturnObject.h" 41 CommandObjectBreakpointCommandAdd (CommandInterpreter &interpreter) : 42 CommandObjectParsed (interpreter, 46 m_options (interpreter) 71 to the Python interpreter 'as is' when the breakpoint gets hit. If you enter\n\ 72 function definitions, they will be passed to the Python interpreter as soon as\n\ 406 CommandOptions (CommandInterpreter &interpreter) : 407 Options (interpreter), 574 // If we are using script language, get the script interpreter [all...] |
CommandObjectSource.cpp | 18 #include "lldb/Interpreter/Args.h" 24 #include "lldb/Interpreter/CommandInterpreter.h" 25 #include "lldb/Interpreter/CommandReturnObject.h" 32 #include "lldb/Interpreter/CommandCompletions.h" 33 #include "lldb/Interpreter/Options.h" 48 CommandOptions (CommandInterpreter &interpreter) : 49 Options(interpreter) 105 CommandObjectSourceInfo(CommandInterpreter &interpreter) : 106 CommandObjectParsed (interpreter, 110 m_options (interpreter) [all...] |
CommandObjectHelp.cpp | 18 #include "lldb/Interpreter/CommandObjectMultiword.h" 19 #include "lldb/Interpreter/CommandInterpreter.h" 20 #include "lldb/Interpreter/Options.h" 21 #include "lldb/Interpreter/CommandReturnObject.h" 30 CommandObjectHelp::CommandObjectHelp (CommandInterpreter &interpreter) : 31 CommandObjectParsed (interpreter, 34 "help [<cmd-name>]"), m_options (interpreter)
|
CommandObjectExpression.cpp | 18 #include "lldb/Interpreter/Args.h" 28 #include "lldb/Interpreter/CommandInterpreter.h" 29 #include "lldb/Interpreter/CommandReturnObject.h" 69 CommandObjectExpression::CommandOptions::SetOptionValue (CommandInterpreter &interpreter, 139 CommandObjectExpression::CommandOptions::OptionParsingStarting (CommandInterpreter &interpreter) 141 Process *process = interpreter.GetExecutionContext().GetProcessPtr(); 164 CommandObjectExpression::CommandObjectExpression (CommandInterpreter &interpreter) : 165 CommandObjectRaw (interpreter, 170 m_option_group (interpreter),
|
CommandObjectApropos.cpp | 18 #include "lldb/Interpreter/Args.h" 19 #include "lldb/Interpreter/Options.h" 21 #include "lldb/Interpreter/CommandInterpreter.h" 22 #include "lldb/Interpreter/CommandReturnObject.h" 31 CommandObjectApropos::CommandObjectApropos (CommandInterpreter &interpreter) : 32 CommandObjectParsed (interpreter, 67 // The bulk of the work must be done inside the Command Interpreter, since the command dictionary
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardParserImpl_V21.java | 223 for (VCardInterpreter interpreter : mInterpreterList) { 224 interpreter.onEntryStarted(); 227 for (VCardInterpreter interpreter : mInterpreterList) { 228 interpreter.onEntryEnded(); 348 for (VCardInterpreter interpreter : mInterpreterList) { 349 interpreter.onEntryStarted(); 352 for (VCardInterpreter interpreter : mInterpreterList) { 353 interpreter.onEntryEnded(); 605 for (VCardInterpreter interpreter : mInterpreterList) { 606 interpreter.onPropertyCreated(property) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
InterpretedTemplate.java | 17 package com.google.clearsilver.jsilver.interpreter; 35 * Template implementation that uses the interpreter to render itself. 64 TemplateInterpreter interpreter = local 67 syntaxTree.apply(interpreter);
|
/art/runtime/interpreter/ |
interpreter.h | 34 namespace interpreter { namespace in namespace:art 55 } // namespace interpreter
|
/external/lldb/include/lldb/Core/ |
UserSettingsController.h | 28 #include "lldb/Interpreter/OptionValue.h" 82 DumpAllDescriptions (CommandInterpreter &interpreter,
|
/external/lldb/include/lldb/Interpreter/ |
OptionValueBoolean.h | 17 #include "lldb/Interpreter/OptionValue.h" 69 AutoComplete (CommandInterpreter &interpreter,
|
OptionValueUUID.h | 18 #include "lldb/Interpreter/OptionValue.h" 93 AutoComplete (CommandInterpreter &interpreter,
|
Property.h | 22 #include "lldb/Interpreter/OptionValue.h" 95 DumpDescription (CommandInterpreter &interpreter,
|
CommandObjectMultiword.h | 19 #include "lldb/Interpreter/CommandObject.h" 33 CommandObjectMultiword (CommandInterpreter &interpreter, 101 CommandObjectProxy (CommandInterpreter &interpreter,
|
CommandObject.h | 19 #include "lldb/Interpreter/Args.h" 20 #include "lldb/Interpreter/CommandCompletions.h" 79 CommandObject (CommandInterpreter &interpreter, 205 GetArgumentHelp (Stream &str, lldb::CommandArgumentType arg_type, CommandInterpreter &interpreter); 284 // command interpreter. If the command object fails to acquire the API 327 /// @param[in] interpreter 328 /// The command interpreter doing the completion. 374 /// @param[in] interpreter 375 /// The command interpreter doing the completion. 557 CommandObjectParsed (CommandInterpreter &interpreter, [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/ |
Analyzer.java | 58 private final Interpreter interpreter;
field in class:Analyzer 79 * @param interpreter the interpreter to be used to symbolically interpret
82 public Analyzer(final Interpreter interpreter) {
83 this.interpreter = interpreter;
158 current.setLocal(local++, interpreter.newValue(ctype));
161 current.setLocal(local++, interpreter.newValue(args[i])); [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/ |
JSilver.java | 32 import com.google.clearsilver.jsilver.interpreter.InterpretedTemplateLoader; 33 import com.google.clearsilver.jsilver.interpreter.LoadingTemplateFactory; 34 import com.google.clearsilver.jsilver.interpreter.OptimizerProvider; 35 import com.google.clearsilver.jsilver.interpreter.OptimizingTemplateFactory; 36 import com.google.clearsilver.jsilver.interpreter.TemplateFactory; 158 InterpretedTemplateLoader interpreter = local 160 delegatingTemplateLoaders.add(interpreter); 161 templateLoader = interpreter;
|
/external/lldb/source/Core/ |
UserSettingsController.cpp | 20 #include "lldb/Interpreter/CommandInterpreter.h" 21 #include "lldb/Interpreter/OptionValueString.h" 62 Properties::DumpAllDescriptions (CommandInterpreter &interpreter, 69 return properties_sp->DumpAllDescriptions (interpreter, strm);
|
/external/lldb/source/Interpreter/ |
OptionGroupVariable.cpp | 12 #include "lldb/Interpreter/OptionGroupVariable.h" 20 #include "lldb/Interpreter/CommandInterpreter.h" 73 OptionGroupVariable::SetOptionValue (CommandInterpreter &interpreter, 106 OptionGroupVariable::OptionParsingStarting (CommandInterpreter &interpreter)
|
OptionValueFileSpec.cpp | 12 #include "lldb/Interpreter/OptionValueFileSpec.h" 20 #include "lldb/Interpreter/Args.h" 21 #include "lldb/Interpreter/CommandCompletions.h" 124 OptionValueFileSpec::AutoComplete (CommandInterpreter &interpreter, 133 CommandCompletions::InvokeCommonCompletionCallbacks (interpreter,
|
OptionValueUUID.cpp | 12 #include "lldb/Interpreter/OptionValueUUID.h" 21 #include "lldb/Interpreter/CommandInterpreter.h" 78 OptionValueUUID::AutoComplete (CommandInterpreter &interpreter, 87 ExecutionContext exe_ctx(interpreter.GetExecutionContext());
|
OptionGroupValueObjectDisplay.cpp | 12 #include "lldb/Interpreter/OptionGroupValueObjectDisplay.h" 19 #include "lldb/Interpreter/CommandInterpreter.h" 64 OptionGroupValueObjectDisplay::SetOptionValue (CommandInterpreter &interpreter, 126 OptionGroupValueObjectDisplay::OptionParsingStarting (CommandInterpreter &interpreter) 140 Target *target = interpreter.GetExecutionContext().GetTargetPtr();
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
toy.ml | 19 (* Run the main "interpreter loop" now. *)
|
/art/ |
Android.mk | 189 # All host tests that run solely on the interpreter. 190 .PHONY: test-art-host-interpreter 191 test-art-host-interpreter: test-art-host-run-test-interpreter 208 .PHONY: test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX) 209 test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-interpreter$(ART_PHONY_TEST_HOST_SUFFIX) 227 .PHONY: test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX) 228 test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX [all...] |