Searched refs:interpreter (Results 1 - 25 of 125) sorted by relevance

12345

/macosx-10.9.5/llvmCore-3425.0.33/bindings/ocaml/executionengine/
H A DMakefile16 UsedComponents := executionengine jit interpreter native
/macosx-10.9.5/llvmCore-3425.0.33/examples/BrainF/
H A DMakefile13 LINK_COMPONENTS := jit bitwriter nativecodegen interpreter
/macosx-10.9.5/llvmCore-3425.0.33/examples/ExceptionDemo/
H A DMakefile14 LINK_COMPONENTS := jit interpreter nativecodegen
/macosx-10.9.5/llvmCore-3425.0.33/examples/Fibonacci/
H A DMakefile15 LINK_COMPONENTS := jit interpreter nativecodegen
/macosx-10.9.5/llvmCore-3425.0.33/examples/HowToUseJIT/
H A DMakefile13 LINK_COMPONENTS := jit interpreter nativecodegen
/macosx-10.9.5/llvmCore-3425.0.33/examples/ParallelJIT/
H A DMakefile13 LINK_COMPONENTS := jit interpreter nativecodegen
/macosx-10.9.5/llvmCore-3425.0.33/unittests/ExecutionEngine/
H A DMakefile12 LINK_COMPONENTS :=interpreter
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DConstructData.cpp40 return exec->interpreter()->executeConstruct(exec, asObject(constructorObject), constructType, constructData, args);
H A DCallData.cpp40 return exec->interpreter()->executeCall(exec, asObject(functionObject), callType, callData, thisValue, args);
/macosx-10.9.5/llvmCore-3425.0.33/tools/lli/
H A DMakefile15 LINK_COMPONENTS := mcjit jit interpreter nativecodegen bitreader asmparser selectiondag
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dexecutable.el1 ;;; executable.el --- base functionality for executable interpreter scripts -*- byte-compile-dynamic: t -*-
37 ;; the filename of an interpreter (in COFF, ELF or somesuch format) and one
43 ;; default file of that interpreter (like .profile or makefile). It also
57 "Base functionality for executable interpreter scripts."
197 (defun executable-set-magic (interpreter &optional argument
199 "Set this buffer's interpreter to INTERPRETER with optional ARGUMENT.
205 (let* ((name (read-string "Name or file name of interpreter: "))
209 (setq interpreter (if (file-name-absolute-p interpreter)
210 interpreter
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DArrayValue.h29 #include <interpreter/CallFrame.h>
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A Dtkoptdb-safeTk.rb6 This is a sample of the safe-Tk slave interpreter. \
7 On the slave interpreter, 'tkoptdb.rb' demo is running.
8 ( NOTE:: a safe-Tk interpreter can't read options \
9 from a file. Options are given by the master interpreter \
12 the default master interpreter. The other window \
13 is a toplevel widget of the master interpreter, and it \
14 has a container frame of the safe-Tk slave interpreter.
15 'exit' on the slave interpreter exits the slave only. \
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DOpaqueJSString.cpp29 #include <interpreter/CallFrame.h>
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/threadproc/os2/
H A Dproc.c310 char interpreter[1024]; local
369 interpreter[0] = 0;
380 strcpy(interpreter, "#!" SHELL_PATH);
390 status = apr_file_gets(interpreter, sizeof(interpreter), progfile);
393 if (interpreter[0] == '#' && interpreter[1] == '!') {
395 int end = strlen(interpreter) - 1;
397 while (end >= 0 && apr_isspace(interpreter[end])) {
398 interpreter[en
[all...]
/macosx-10.9.5/apr-30/apr/apr/threadproc/os2/
H A Dproc.c310 char interpreter[1024]; local
369 interpreter[0] = 0;
380 strcpy(interpreter, "#!" SHELL_PATH);
390 status = apr_file_gets(interpreter, sizeof(interpreter), progfile);
393 if (interpreter[0] == '#' && interpreter[1] == '!') {
395 int end = strlen(interpreter) - 1;
397 while (end >= 0 && apr_isspace(interpreter[end])) {
398 interpreter[en
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoy.ml17 (* Run the main "interpreter loop" now. *)
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/example/
H A Ddvorak27 send_user "~e for expect interpreter\n"
29 interact ~d rot ~q {} ~e {interpreter -eof exit}
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/PyObjCLauncher/
H A DPreferencesWindowController.py12 interpreter = objc.IBOutlet() variable in class:PreferencesWindowController
40 self.interpreter.reloadData()
41 self.interpreter.setStringValue_(dct['interpreter'])
84 interpreter=self.interpreter.stringValue(),
H A DMyDocument.py13 interpreter = objc.IBOutlet() variable in class:MyDocument
43 self.interpreter.setStringValue_(dct['interpreter'])
118 interpreter=self.interpreter.stringValue(),
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/PyObjCLauncher/
H A DPreferencesWindowController.py12 interpreter = objc.IBOutlet() variable in class:PreferencesWindowController
40 self.interpreter.reloadData()
41 self.interpreter.setStringValue_(dct['interpreter'])
84 interpreter=self.interpreter.stringValue(),
H A DMyDocument.py13 interpreter = objc.IBOutlet() variable in class:MyDocument
43 self.interpreter.setStringValue_(dct['interpreter'])
118 interpreter=self.interpreter.stringValue(),
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DPreciseJumpTargets.cpp49 Interpreter* interpreter = codeBlock->vm()->interpreter; local
53 OpcodeID opcodeID = interpreter->getOpcodeID(instructionsBegin[bytecodeOffset].u.opcode);
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGCapabilities.cpp100 Interpreter* interpreter = codeBlock->vm()->interpreter; local
106 switch (interpreter->getOpcodeID(instructionsBegin[bytecodeOffset].u.opcode)) {
/macosx-10.9.5/WebCore-7537.78.1/testing/js/
H A DWebCoreTestSupport.cpp35 #include <interpreter/CallFrame.h>

Completed in 274 milliseconds

12345