HomeSort by relevance Sort by last modified time
    Searched refs:interpreter (Results 1 - 25 of 412) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/testng/src/main/java/org/testng/internal/
Bsh.java 4 import bsh.Interpreter;
14 private static Interpreter s_interpreter;
20 Interpreter interpreter = getInterpreter(); local
26 setContext(interpreter, tm.getMethod(), groups, tm);
27 Object evalResult = interpreter.eval(expression);
31 Utils.log("bsh.Interpreter", 2, "Cannot evaluate expression:"
35 resetContext(interpreter);
42 private static Interpreter getInterpreter() {
44 s_interpreter= new Interpreter();
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParser.java 29 * @param interpreter
31 public abstract void addInterpreter(VCardInterpreter interpreter);
81 public void parse(InputStream is, VCardInterpreter interpreter)
83 addInterpreter(interpreter);
  /external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/
Makefile 16 UsedComponents := executionengine jit interpreter native
  /external/swiftshader/third_party/LLVM/examples/BrainF/
Makefile 13 LINK_COMPONENTS := jit bitwriter nativecodegen interpreter
  /external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
Makefile 14 LINK_COMPONENTS := jit interpreter nativecodegen
  /external/swiftshader/third_party/LLVM/examples/Fibonacci/
Makefile 15 LINK_COMPONENTS := jit interpreter nativecodegen
  /external/swiftshader/third_party/LLVM/examples/HowToUseJIT/
Makefile 13 LINK_COMPONENTS := jit interpreter nativecodegen
  /external/swiftshader/third_party/LLVM/examples/ParallelJIT/
Makefile 13 LINK_COMPONENTS := jit interpreter nativecodegen
  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
ScriptProcess.java 19 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); local
35 setCommand(String.format(interpreter.getScriptCommand(), script.getAbsolutePath()));
ScriptLauncher.java 21 import com.googlecode.android_scripting.interpreter.Interpreter;
22 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;
23 import com.googlecode.android_scripting.interpreter.InterpreterProcess;
35 Interpreter interpreter; local
38 interpreter = config.getInterpreterByName(interpreterName);
39 InterpreterProcess process = new InterpreterProcess(interpreter, proxy);
ScriptStorageAdapter.java 19 import com.googlecode.android_scripting.interpreter.Interpreter;
20 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;
21 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
88 * Returns a list of script {@link File}s from the given folder for which there is an interpreter
101 Interpreter interpreter = config.getInterpreterForScript(script.getName()); local
102 if (interpreter == null || !interpreter.isInstalled()) {
111 * interpreter installed
126 Interpreter interpreter = config.getInterpreterForScript(file.getName()); local
    [all...]
  /art/runtime/interpreter/
interpreter_intrinsics.h 28 namespace interpreter { namespace in namespace:art
31 // no interpreter implementation, return false and a normal invoke will proceed.
38 } // namespace interpreter
interpreter_mterp_impl.h 31 namespace interpreter { namespace in namespace:art
39 } // namespace interpreter
  /art/runtime/interpreter/mterp/
mterp.h 29 namespace interpreter { namespace in namespace:art
44 // Set true to enable poison testing of ExportPC. Uses Alt interpreter.
47 } // namespace interpreter
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
OptimizerProvider.java 17 package com.google.clearsilver.jsilver.interpreter;
  /external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
InProcessInterpreter.java 17 package com.googlecode.android_scripting.interpreter;
Interpreter.java 17 package com.googlecode.android_scripting.interpreter;
31 * Combines all the execution-related specs of a particular interpreter installed in the system.
35 public class Interpreter implements InterpreterPropertyNames {
48 public Interpreter() {
53 public static Interpreter buildFromMaps(Map<String, String> data,
65 // Default to true so that older interpreter APKs that don't have this value define still
69 Interpreter interpreter = new Interpreter(); local
70 interpreter.setName(name)
    [all...]
  /external/sl4a/Utils/src/com/googlecode/android_scripting/interpreter/
InterpreterPropertyNames.java 17 package com.googlecode.android_scripting.interpreter;
26 * Unique name of the interpreter.
31 * Display name of the interpreter.
41 * Absolute path of the interpreter executable.
46 * Final argument to interpreter binary when running the interpreter interactively.
51 * Final argument to interpreter binary when running a script.
56 * Interpreter interactive mode flag.
  /external/swiftshader/third_party/LLVM/tools/lli/
Makefile 12 LINK_COMPONENTS := mcjit jit interpreter nativecodegen bitreader asmparser selectiondag
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/
Makefile 12 LINK_COMPONENTS := engine interpreter
  /external/v8/src/interpreter/
bytecode-array-iterator.cc 5 #include "src/interpreter/bytecode-array-iterator.h"
10 namespace interpreter { namespace in namespace:v8::internal
24 } // namespace interpreter
bytecode-array-iterator.h 8 #include "src/interpreter/bytecode-array-accessor.h"
12 namespace interpreter { namespace in namespace:v8::internal
26 } // namespace interpreter
  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/interpreter/
InterpreterProcess.java 17 package com.googlecode.android_scripting.interpreter;
30 * This is a skeletal implementation of an interpreter process.
36 private final Interpreter mInterpreter;
43 * the absolute path to a script that should be launched with the interpreter
47 public InterpreterProcess(Interpreter interpreter, AndroidProxy proxy) {
49 mInterpreter = interpreter;
51 setBinary(interpreter.getBinary());
52 setName(interpreter.getNiceName());
53 setCommand(interpreter.getInteractiveCommand())
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardParserTests.java 97 MockVCardInterpreter interpreter = new MockVCardInterpreter(); local
98 interpreter.addExpectedOrder(Order.START)
103 parser.addInterpreter(interpreter);
105 interpreter.verify();
115 MockVCardInterpreter interpreter = new MockVCardInterpreter(); local
116 interpreter.addExpectedOrder(Order.START)
131 parser.addInterpreter(interpreter);
133 interpreter.verify();
149 MockVCardInterpreter interpreter = new MockVCardInterpreter(); local
150 interpreter.addExpectedOrder(Order.START
181 MockVCardInterpreter interpreter = new MockVCardInterpreter(); local
222 MockVCardInterpreter interpreter = new MockVCardInterpreter(); local
    [all...]
  /external/v8/
Android.mkpeephole.mk 8 src/interpreter/bytecode-operands.cc \
9 src/interpreter/bytecodes.cc \
10 src/interpreter/mkpeephole.cc

Completed in 930 milliseconds

1 2 3 4 5 6 7 8 91011>>