Searched
full:interpreter (Results
551 -
575 of
988) sorted by null
<<21222324252627282930>>
/sdk/emulator/qtools/ |
trace_reader.h | 37 // virtual machine interpreter. 40 // The symbol for the virtual machine interpreter, or NULL 779 // Check if this is part of the virtual machine interpreter [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | 2 topics = {'assert': '\nThe ``assert`` statement\n************************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, ``assert expression``, is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, ``assert expression1, expression2``, is equivalent\nto\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that ``__debug__`` and ``AssertionError``\nrefer to the built-in variables with those names. In the current\nimplementation, the built-in variable ``__debug__`` is ``True`` under\nnormal circumstances, ``False`` when optimization is requested\n(command line option -O). The current code generator emits no code\nfor an assert statement when optimization is requested at compile\ntime. Note that it is unnecessary to include the source code for the\nexpression that failed in the error message; it will be displayed as\npart of the stack trace.\n\nAssignments to ``__debug__`` are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n', [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | 2 topics = {'assert': '\nThe ``assert`` statement\n************************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, ``assert expression``, is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, ``assert expression1, expression2``, is equivalent\nto\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that ``__debug__`` and ``AssertionError``\nrefer to the built-in variables with those names. In the current\nimplementation, the built-in variable ``__debug__`` is ``True`` under\nnormal circumstances, ``False`` when optimization is requested\n(command line option -O). The current code generator emits no code\nfor an assert statement when optimization is requested at compile\ntime. Note that it is unnecessary to include the source code for the\nexpression that failed in the error message; it will be displayed as\npart of the stack trace.\n\nAssignments to ``__debug__`` are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n', [all...] |
/art/compiler/driver/ |
compiler_driver.h | 54 // ABI of invocations to a method's interpreter entry point.
|
/art/runtime/entrypoints/ |
entrypoint_utils.cc | 172 // Maintain interpreter-like semantics where NullPointerException is thrown
|
entrypoint_utils.h | 369 // Return address of interpreter stub.
|
/art/runtime/ |
instrumentation.cc | 103 // deoptimization of quick frames to interpreter frames.
|
/art/runtime/jdwp/ |
jdwp_main.cc | 489 /* handshake worked, tell the interpreter that we're active */
|
/external/bluetooth/bluedroid/bta/include/ |
bta_ag_api.h | 56 #define BTA_AG_PASS_THROUGH 1 /* Pass data directly to phone?s AT command interpreter */
|
/external/chromium_org/chrome/installer/mac/ |
dmgdiffer.sh | 64 # that might impact the interpreter's operation. The |bash -p| invocation
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
sandbox_bpf_unittest.cc | 341 // interpreter in the kernel. 396 // by our BPF compiler and by the BPF interpreter in the kernel. [all...] |
/external/chromium_org/third_party/freetype/src/cff/ |
cf2ft.c | 5 /* FreeType Glue Component to Adobe's Interpreter (body). */
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayable.cpp | 524 // !!! need a way for interpreter engine to own array
|
/external/chromium_org/third_party/sqlite/src/src/ |
test_func.c | 563 ** Register commands with the TCL interpreter.
|
/external/chromium_org/v8/tools/gyp/ |
v8_base.arm.host.darwin-arm.mk | 111 v8/src/interpreter-irregexp.cc \
|
v8_base.arm.host.linux-arm.mk | 111 v8/src/interpreter-irregexp.cc \
|
v8_base.arm.target.darwin-arm.mk | 112 v8/src/interpreter-irregexp.cc \
|
v8_base.arm.target.linux-arm.mk | 112 v8/src/interpreter-irregexp.cc \
|
v8_base.ia32.host.darwin-x86.mk | 111 v8/src/interpreter-irregexp.cc \
|
v8_base.ia32.host.linux-x86.mk | 111 v8/src/interpreter-irregexp.cc \
|
v8_base.ia32.target.darwin-x86.mk | 112 v8/src/interpreter-irregexp.cc \
|
v8_base.ia32.target.linux-x86.mk | 112 v8/src/interpreter-irregexp.cc \
|
v8_base.mipsel.host.darwin-mips.mk | 111 v8/src/interpreter-irregexp.cc \
|
v8_base.mipsel.host.linux-mips.mk | 111 v8/src/interpreter-irregexp.cc \
|
v8_base.mipsel.target.darwin-mips.mk | 112 v8/src/interpreter-irregexp.cc \
|
Completed in 679 milliseconds
<<21222324252627282930>>