/external/llvm/examples/HowToUseJIT/ |
Makefile | 13 LINK_COMPONENTS := jit interpreter nativecodegen
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Makefile | 1 ##===- lib/ExecutionEngine/Interpreter/Makefile ------------*- Makefile -*-===##
|
LLVMBuild.txt | 1 ;===- ./lib/ExecutionEngine/Interpreter/LLVMBuild.txt ----------*- Conf -*--===; 20 name = Interpreter
|
/external/llvm/test/ExecutionEngine/ |
2007-12-10-APIntLoadStore.ll | 1 ; RUN: %lli -force-interpreter %s
|
fpbitcast.ll | 1 ; RUN: %lli -force-interpreter=true %s | FileCheck %s
|
/external/llvm/test/ExecutionEngine/MCJIT/ |
2007-12-10-APIntLoadStore.ll | 1 ; RUN: %lli_mcjit -force-interpreter %s
|
fpbitcast.ll | 1 ; RUN: %lli_mcjit -force-interpreter=true %s | FileCheck %s
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/ |
modifier.hpp | 38 nfp::keyword<struct interpreter_t> interpreter; member in namespace:boost::BOOST_RT_PARAM_NAMESPACE::environment::__anon33330
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
auxvec.h | 15 #define AT_BASE 7 /* base address of interpreter */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
auxvec.h | 15 #define AT_BASE 7 /* base address of interpreter */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
auxvec.h | 15 #define AT_BASE 7 /* base address of interpreter */
|
/art/runtime/entrypoints/interpreter/ |
interpreter_entrypoints.cc | 18 #include "interpreter/interpreter.h"
|
/art/runtime/interpreter/ |
interpreter.h | 34 namespace interpreter { namespace in namespace:art 55 } // namespace interpreter
|
/external/valgrind/main/coregrind/m_ume/ |
script.c | 54 // Find interpreter name, make sure it's an absolute path (starts with 56 // between the #! and the start of the interpreter name 63 if (*interp != '/') return False; // absolute path only for interpreter 70 // Here we should get the full interpreter name and check it with 106 vg_assert(*interp == '/'); /* absolute path only for interpreter */ 108 /* skip over interpreter name */
|
/dalvik/vm/mterp/ |
README.txt | 8 This is the source code for the Dalvik interpreter. The core of the 15 interpreter, and is generated using the same sources and tools that 22 The best way to become familiar with the interpreter is to look at the 42 The interpreter style is selected via the "handler-size" command (see below). 65 Specify which style of interpreter to generate. In computed-goto, 70 for the portable interpreter (which is implemented completely in C). 158 code with the portable interpreter. (This is expected to be reduced in 252 ==== Interpreter Control ==== 254 The central mechanism for interpreter control is the InterpBreak struture 263 is active, kSubModeMethodTrace is set. This bit informs the interpreter [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
test3.c | 62 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 100 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 135 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 164 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 214 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 260 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 295 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 330 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 365 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */ 394 Tcl_Interp *interp, /* The TCL interpreter that invoked this command * [all...] |
/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/chromium_org/third_party/freetype/src/truetype/ |
ttinterp.h | 5 /* TrueType bytecode interpreter (specification). */ 62 /* Function types used by the interpreter, depending on various modes */ 154 /* The main structure for the interpreter which collects all necessary */ 194 FT_Bool step_ins; /* true if the interpreter must */ 236 FT_Bool instruction_trap; /* If `True', the interpreter will */ 244 /* latest interpreter additions */ 374 /* is the main function of the TrueType opcode interpreter. */
|
/external/freetype/src/truetype/ |
ttinterp.h | 5 /* TrueType bytecode interpreter (specification). */ 62 /* Function types used by the interpreter, depending on various modes */ 154 /* The main structure for the interpreter which collects all necessary */ 194 FT_Bool step_ins; /* true if the interpreter must */ 236 FT_Bool instruction_trap; /* If `True', the interpreter will */ 244 /* latest interpreter additions */ 374 /* is the main function of the TrueType opcode interpreter. */
|
/art/test/ |
Android.mk | 127 .PHONY: test-art-host-oat-interpreter-$(1) 128 test-art-host-oat-interpreter-$(1): $(HOST_OUT_JAVA_LIBRARIES)/oat-test-dex-$(1).odex test-art-host-dependencies 129 mkdir -p /tmp/android-data/test-art-host-oat-interpreter-$(1) 130 ANDROID_DATA=/tmp/android-data/test-art-host-oat-interpreter-$(1) \ 134 && echo test-art-host-oat-interpreter-$(1) PASSED || (echo test-art-host-oat-interpreter-$(1) FAILED && exit 1) 135 $(hide) rm -r /tmp/android-data/test-art-host-oat-interpreter-$(1) 138 test-art-host-oat-$(1): test-art-host-oat-default-$(1) test-art-host-oat-interpreter-$(1) 145 ART_TEST_HOST_OAT_INTERPRETER_TARGETS += test-art-host-oat-interpreter-$(1)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
code.py | 1 """Utilities needed to emulate Python's interactive interpreter. 31 This class deals with parsing and interpreter state (the user's 52 """Compile and run some source in the interpreter. 175 """Closely emulate the behavior of the interactive Python interpreter. 205 similar to the one printed by the real Python interpreter, 207 to confuse this with the real interpreter -- since it's so 250 """Push a line to the interpreter. 254 interpreter's runsource() method is called with the 285 """Closely emulate the interactive Python interpreter.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
code.py | 1 """Utilities needed to emulate Python's interactive interpreter. 31 This class deals with parsing and interpreter state (the user's 52 """Compile and run some source in the interpreter. 175 """Closely emulate the behavior of the interactive Python interpreter. 205 similar to the one printed by the real Python interpreter, 207 to confuse this with the real interpreter -- since it's so 250 """Push a line to the interpreter. 254 interpreter's runsource() method is called with the 285 """Closely emulate the interactive Python interpreter.
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/ |
EventInterpreter.java | 49 * Create a default interpreter. 51 * This creates a default interpreter that does nothing. A default interpreter should normally 61 * Create an event interpreter according to a specification. 70 * interpreter that does no specific combining, and assumes the most common cases.
|
/art/ |
Android.mk | 137 .PHONY: test-art-host-interpreter 138 test-art-host-interpreter: test-art-host-oat-interpreter test-art-host-run-test-interpreter 139 @echo test-art-host-interpreter PASSED 162 .PHONY: test-art-host-oat-interpreter 163 test-art-host-oat-interpreter: $(ART_TEST_HOST_OAT_INTERPRETER_TARGETS) 164 @echo test-art-host-oat-interpreter PASSED 167 test-art-host-oat: test-art-host-oat-default test-art-host-oat-interpreter 178 .PHONY: test-art-host-run-test-interpreter-$(1 [all...] |
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_INVOKE_METHOD_NATIVE.S | 22 bxne lr @ bail to the interpreter 24 bx lr @ bail to interpreter unconditionally 77 @ continue executing the next instruction through the interpreter
|