Home
last modified time | relevance | path

Searched refs:interpreter (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
DFrame.java197 final Interpreter interpreter) throws AnalyzerException in execute() argument
224 push(interpreter.newOperation(insn)); in execute()
231 push(interpreter.copyOperation(insn, in execute()
244 push(interpreter.binaryOperation(insn, value1, value2)); in execute()
251 value1 = interpreter.copyOperation(insn, pop()); in execute()
255 setLocal(var + 1, interpreter.newValue(null)); in execute()
260 setLocal(var - 1, interpreter.newValue(null)); in execute()
275 interpreter.ternaryOperation(insn, value1, value2, value3); in execute()
294 push(interpreter.copyOperation(insn, value1)); in execute()
295 push(interpreter.copyOperation(insn, value1)); in execute()
[all …]
DAnalyzer.java58 private final Interpreter interpreter; field in Analyzer
82 public Analyzer(final Interpreter interpreter) { in Analyzer() argument
83 this.interpreter = interpreter; in Analyzer()
158 current.setLocal(local++, interpreter.newValue(ctype)); in analyze()
161 current.setLocal(local++, interpreter.newValue(args[i])); in analyze()
163 current.setLocal(local++, interpreter.newValue(null)); in analyze()
167 current.setLocal(local++, interpreter.newValue(null)); in analyze()
190 current.init(f).execute(insnNode, interpreter); in analyze()
283 handler.push(interpreter.newValue(type)); in analyze()
460 changes = oldFrame.merge(frame, interpreter); in merge()
/external/v8/src/compiler/
Dbytecode-graph-builder.cc20 const interpreter::BytecodeArrayIterator& iterator) in FrameStateBeforeAndAfter()
142 interpreter::Register the_register) const { in RegisterToValuesIndex()
157 interpreter::Register the_register) const { in LookupRegister()
172 interpreter::Register reg0, interpreter::Register reg1) { in ExchangeRegisters()
191 interpreter::Register the_register, Node* node, in BindRegister()
203 interpreter::Register first_reg, Node* node, in BindRegistersToProjections()
525 interpreter::BytecodeArrayIterator iterator(bytecode_array()); in VisitBytecodes()
535 case interpreter::Bytecode::k##name: \ in VisitBytecodes()
550 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaZero()
557 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaSmi8()
[all …]
Dbytecode-graph-builder.h120 interpreter::Register receiver, size_t arity);
122 interpreter::Register callee,
123 interpreter::Register first_arg, size_t arity);
125 interpreter::Register first_arg,
129 const interpreter::BytecodeArrayIterator& iterator);
131 const interpreter::BytecodeArrayIterator& iterator);
133 const interpreter::BytecodeArrayIterator& iterator);
135 const interpreter::BytecodeArrayIterator& iterator);
137 const interpreter::BytecodeArrayIterator& iterator);
138 void BuildLoadGlobal(const interpreter::BytecodeArrayIterator& iterator,
[all …]
Dinterpreter-assembler.cc29 interpreter::Bytecode bytecode) in InterpreterAssembler()
54 const char* bytecode_name = interpreter::Bytecodes::ToString(bytecode_); in GenerateCode()
114 Node* InterpreterAssembler::LoadRegister(interpreter::Register reg) { in LoadRegister()
139 interpreter::Register reg) { in StoreRegister()
158 DCHECK_LT(operand_index, interpreter::Bytecodes::NumberOfOperands(bytecode_)); in BytecodeOperand()
159 DCHECK_EQ(interpreter::OperandSize::kByte, in BytecodeOperand()
160 interpreter::Bytecodes::GetOperandSize(bytecode_, operand_index)); in BytecodeOperand()
164 Int32Constant(interpreter::Bytecodes::GetOperandOffset( in BytecodeOperand()
170 DCHECK_LT(operand_index, interpreter::Bytecodes::NumberOfOperands(bytecode_)); in BytecodeOperandSignExtended()
171 DCHECK_EQ(interpreter::OperandSize::kByte, in BytecodeOperandSignExtended()
[all …]
Dbytecode-branch-analysis.cc57 interpreter::BytecodeArrayIterator iterator(bytecode_array()); in Analyze()
60 interpreter::Bytecode bytecode = iterator.current_bytecode(); in Analyze()
68 if (interpreter::Bytecodes::IsConditionalJump(bytecode)) { in Analyze()
72 } else if (interpreter::Bytecodes::IsJump(bytecode)) { in Analyze()
78 } else if (interpreter::Bytecodes::IsJumpOrReturn(bytecode)) { in Analyze()
79 DCHECK_EQ(bytecode, interpreter::Bytecode::kReturn); in Analyze()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.equinox.p2.console_1.0.200.v20100601.jar ... .eclipse.osgi.framework.console.CommandInterpreter interpreter String urlString java.net.URI repoURI public void ...
/external/testng/src/main/java/org/testng/internal/
DBsh.java20 Interpreter interpreter = getInterpreter(); in includeMethodFromExpression() local
26 setContext(interpreter, tm.getMethod(), groups, tm); in includeMethodFromExpression()
27 Object evalResult = interpreter.eval(expression); in includeMethodFromExpression()
35 resetContext(interpreter); in includeMethodFromExpression()
50 …private void setContext(Interpreter interpreter, Method method, Map<String, String> groups, ITestN… in setContext() argument
52 interpreter.set("method", method); in setContext()
53 interpreter.set("groups", groups); in setContext()
54 interpreter.set("testngMethod", tm); in setContext()
61 private void resetContext(Interpreter interpreter) { in resetContext() argument
63 interpreter.unset("method"); in resetContext()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
DInterpreter.java17 package com.googlecode.android_scripting.interpreter;
71 Interpreter interpreter = new Interpreter(); in buildFromMaps() local
72 interpreter.setName(name); in buildFromMaps()
73 interpreter.setNiceName(niceName); in buildFromMaps()
74 interpreter.setExtension(extension); in buildFromMaps()
75 interpreter.setBinary(new File(binary)); in buildFromMaps()
76 interpreter.setInteractiveCommand(interactiveCommand); in buildFromMaps()
77 interpreter.setScriptCommand(scriptCommand); in buildFromMaps()
78 interpreter.setHasInteractiveMode(hasInteractiveMode); in buildFromMaps()
79 interpreter.setLanguage(SupportedLanguages.getLanguageByExtension(extension)); in buildFromMaps()
[all …]
/external/v8/test/unittests/compiler/
Dinterpreter-assembler-unittest.cc21 const interpreter::Bytecode kBytecodes[] = {
22 #define DEFINE_BYTECODE(Name, ...) interpreter::Bytecode::k##Name,
185 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { in TARGET_TEST_F()
196 IsInt32Constant(interpreter::Bytecodes::Size(bytecode))); in TARGET_TEST_F()
225 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { in TARGET_TEST_F()
267 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { in TARGET_TEST_F()
277 interpreter::Bytecodes::Size(bytecode)}; in TARGET_TEST_F()
308 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { in TARGET_TEST_F()
335 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { in TARGET_TEST_F()
337 int number_of_operands = interpreter::Bytecodes::NumberOfOperands(bytecode); in TARGET_TEST_F()
[all …]
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/interpreter/
DInterpreterProcess.java17 package com.googlecode.android_scripting.interpreter;
48 public InterpreterProcess(Interpreter interpreter, AndroidProxy proxy) { in InterpreterProcess() argument
50 mInterpreter = interpreter; in InterpreterProcess()
52 setBinary(interpreter.getBinary()); in InterpreterProcess()
53 setName(interpreter.getNiceName()); in InterpreterProcess()
54 setCommand(interpreter.getInteractiveCommand()); in InterpreterProcess()
55 addAllArguments(interpreter.getArguments()); in InterpreterProcess()
62 putAllEnvironmentVariables(interpreter.getEnvironmentVariables()); in InterpreterProcess()
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
DScriptStorageAdapter.java19 import com.googlecode.android_scripting.interpreter.Interpreter;
20 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;
21 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
102 Interpreter interpreter = config.getInterpreterForScript(script.getName()); in listExecutableScripts() local
103 if (interpreter == null || !interpreter.isInstalled()) { in listExecutableScripts()
127 Interpreter interpreter = config.getInterpreterForScript(file.getName()); in listExecutableScriptsRecursively() local
128 if (interpreter != null && interpreter.isInstalled()) { in listExecutableScriptsRecursively()
DScriptLauncher.java24 import com.googlecode.android_scripting.interpreter.Interpreter;
25 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;
26 import com.googlecode.android_scripting.interpreter.InterpreterProcess;
38 Interpreter interpreter; in launchInterpreter() local
41 interpreter = config.getInterpreterByName(interpreterName); in launchInterpreter()
42 InterpreterProcess process = new InterpreterProcess(interpreter, proxy); in launchInterpreter()
DScriptProcess.java19 import com.googlecode.android_scripting.interpreter.Interpreter;
20 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;
21 import com.googlecode.android_scripting.interpreter.InterpreterProcess;
34 Interpreter interpreter = configuration.getInterpreterForScript(scriptName); in ScriptProcess() local
35 setCommand(String.format(interpreter.getScriptCommand(), script.getAbsolutePath())); in ScriptProcess()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DInterpreterPicker.java38 import com.googlecode.android_scripting.interpreter.Interpreter;
39 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;
40 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration.ConfigurationObserver;
71 final Interpreter interpreter = (Interpreter) list.getItemAtPosition(position); in onListItemClick() local
74 FeaturedInterpreters.getInterpreterIcon(InterpreterPicker.this, interpreter in onListItemClick()
81 Intent intent = IntentBuilders.buildInterpreterShortcutIntent(interpreter, iconResource); in onListItemClick()
126 Interpreter interpreter = mInterpreters.get(position); in getView() local
138 FeaturedInterpreters.getInterpreterIcon(InterpreterPicker.this, interpreter in getView()
148 text.setText(interpreter.getNiceName()); in getView()
DInterpreterManager.java47 import com.googlecode.android_scripting.interpreter.Interpreter;
48 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;
49 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration.ConfigurationObserver;
173 private void launchTerminal(Interpreter interpreter) { in launchTerminal() argument
176 intent.putExtra(Constants.EXTRA_INTERPRETER_NAME, interpreter.getName()); in launchTerminal()
182 Interpreter interpreter = (Interpreter) list.getItemAtPosition(position); in onListItemClick() local
183 launchTerminal(interpreter); in onListItemClick()
235 Interpreter interpreter = mInterpreters.get(position); in getView() local
248 interpreter.getExtension()); in getView()
257 text.setText(interpreter.getNiceName()); in getView()
/external/v8/src/
DDEPS11 "-src/interpreter",
12 "+src/interpreter/bytecode-array-iterator.h",
13 "+src/interpreter/bytecodes.h",
14 "+src/interpreter/interpreter.h",
/external/v8/src/interpreter/
Dbytecodes.cc12 namespace interpreter { namespace
260 case interpreter::OperandType::kCount8: in Decode()
263 case interpreter::OperandType::kCount16: in Decode()
266 case interpreter::OperandType::kIdx8: in Decode()
269 case interpreter::OperandType::kIdx16: in Decode()
272 case interpreter::OperandType::kImm8: in Decode()
275 case interpreter::OperandType::kReg8: in Decode()
276 case interpreter::OperandType::kMaybeReg8: { in Decode()
296 case interpreter::OperandType::kRegPair8: { in Decode()
307 case interpreter::OperandType::kReg16: { in Decode()
[all …]
Dbytecode-array-iterator.cc11 namespace interpreter { namespace
31 return interpreter::Bytecodes::FromByte(current_byte); in current_bytecode()
108 if (interpreter::Bytecodes::IsJumpImmediate(bytecode)) { in GetJumpTargetOffset()
111 } else if (interpreter::Bytecodes::IsJumpConstant(bytecode) || in GetJumpTargetOffset()
112 interpreter::Bytecodes::IsJumpConstantWide(bytecode)) { in GetJumpTargetOffset()
/external/sl4a/Common/src/com/googlecode/android_scripting/
DFeaturedInterpreters.java53 for (FeaturedInterpreter interpreter : interpreters) {
54 mNameMap.put(interpreter.mmName, interpreter); in mNameMap.put() argument
55 mExtensionMap.put(interpreter.mmExtension, interpreter); in mExtensionMap.put() argument
DIntentBuilders.java25 import com.googlecode.android_scripting.interpreter.Interpreter;
100 public static Intent buildInterpreterShortcutIntent(Interpreter interpreter, in buildInterpreterShortcutIntent() argument
104 buildStartInterpreterIntent(interpreter.getName())); in buildInterpreterShortcutIntent()
105 intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, interpreter.getNiceName()); in buildInterpreterShortcutIntent()
/external/clang/examples/clang-interpreter/
DCMakeLists.txt10 add_clang_executable(clang-interpreter
14 add_dependencies(clang-interpreter
18 target_link_libraries(clang-interpreter
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
DScriptProvider.java36 import com.googlecode.android_scripting.interpreter.Interpreter;
37 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;
38 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
117 Interpreter interpreter = mConfiguration.getInterpreterForScript(scriptName); in querySearchSuggestions() local
118 String secondLine = interpreter.getNiceName(); in querySearchSuggestions()
119 int icon = FeaturedInterpreters.getInterpreterIcon(mContext, interpreter.getExtension()); in querySearchSuggestions()
/external/jsilver/src/com/google/clearsilver/jsilver/
DJSilver.java32 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 = in JSilver() local
160 delegatingTemplateLoaders.add(interpreter); in JSilver()
161 templateLoader = interpreter; in JSilver()
/external/v8/
DWATCHLISTS45 'interpreter': {
46 'filepath': 'src/interpreter/',
47 'filepath': 'test/cctest/interpreter/',
48 'filepath': 'test/unittests/interpreter/',
71 'interpreter': [

12345678910>>...13