HomeSort by relevance Sort by last modified time
    Searched refs:Compiler (Results 76 - 100 of 204) sorted by null

1 2 34 5 6 7 8 9

  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkerFactory.java 28 import org.apache.xpath.compiler.Compiler;
29 import org.apache.xpath.compiler.FunctionTable;
30 import org.apache.xpath.compiler.OpCodes;
31 import org.apache.xpath.compiler.OpMap;
51 * @param compiler non-null reference to compiler object that has processed
61 WalkingIterator lpi, Compiler compiler, int stepOpCodePos)
66 int stepType = compiler.getOp(stepOpCodePos)
    [all...]
LocPathIterator.java 32 import org.apache.xpath.compiler.Compiler;
79 * into the Compiler to create predicate expressions.
81 * @param compiler The Compiler which is creating
84 * opcode list from the compiler.
88 protected LocPathIterator(Compiler compiler, int opPos, int analysis)
91 this(compiler, opPos, analysis, true);
97 * into the Compiler to create predicate expressions
    [all...]
AxesWalker.java 33 import org.apache.xpath.compiler.Compiler;
64 * @param compiler The Compiler object that has information about this
71 public void init(Compiler compiler, int opPos, int stepType)
75 initPredicateInfo(compiler, opPos);
77 // int testType = compiler.getOp(nodeTestOpPos);
DescendantIterator.java 30 import org.apache.xpath.compiler.Compiler;
31 import org.apache.xpath.compiler.OpCodes;
32 import org.apache.xpath.compiler.OpMap;
47 * @param compiler A reference to the Compiler that contains the op map.
53 DescendantIterator(Compiler compiler, int opPos, int analysis)
57 super(compiler, opPos, analysis, false);
60 int stepType = compiler.getOp(firstStepPos)
    [all...]
MatchPatternIterator.java 28 import org.apache.xpath.compiler.Compiler;
29 import org.apache.xpath.compiler.OpMap;
63 * into the Compiler to create predicate expressions.
65 * @param compiler The Compiler which is creating
68 * opcode list from the compiler.
74 MatchPatternIterator(Compiler compiler, int opPos, int analysis)
78 super(compiler, opPos, analysis, false)
    [all...]
  /external/chromium_org/third_party/closure_compiler/runner/test/com/google/javascript/jscomp/
ChromePassTest.java 13 protected CompilerPass getProcessor(Compiler compiler) {
14 return new ChromePass(compiler);
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
AutoDocTransforms.py 1 from Cython.Compiler.Visitor import CythonTransform
2 from Cython.Compiler.StringEncoding import EncodedString
3 from Cython.Compiler import Options
4 from Cython.Compiler import PyrexTypes, ExprNodes
Buffer.py 1 from Cython.Compiler.Visitor import CythonTransform
2 from Cython.Compiler.ModuleNode import ModuleNode
3 from Cython.Compiler.Errors import CompileError
4 from Cython.Compiler.UtilityCode import CythonUtilityCode
5 from Cython.Compiler.Code import UtilityCode, TempitaUtilityCode
7 from Cython.Compiler import Options
8 from Cython.Compiler import Interpreter
9 from Cython.Compiler import PyrexTypes
10 from Cython.Compiler import Naming
11 from Cython.Compiler import Symta
    [all...]
ParseTreeTransforms.pxd 4 from Cython.Compiler.Visitor cimport (
  /external/chromium_org/v8/test/cctest/compiler/
function-tester.h 11 #include "src/compiler.h"
12 #include "src/compiler/pipeline.h"
25 namespace compiler { namespace in namespace:v8::internal
60 CHECK(Compiler::EnsureDeoptimizationSupport(&info));
72 Handle<Code> code = Compiler::GetOptimizedCode(function, unoptimized,
73 Compiler::NOT_CONCURRENT);
191 } // namespace v8::internal::compiler
test-linkage.cc 7 #include "src/compiler.h"
10 #include "src/compiler/common-operator.h"
11 #include "src/compiler/generic-node-inl.h"
12 #include "src/compiler/graph.h"
13 #include "src/compiler/linkage.h"
14 #include "src/compiler/machine-operator.h"
15 #include "src/compiler/node.h"
16 #include "src/compiler/operator.h"
17 #include "src/compiler/pipeline.h"
18 #include "src/compiler/schedule.h
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Build/
Inline.py 13 from Cython.Compiler.Main import Context, CompilationOptions, default_options
15 from Cython.Compiler.ParseTreeTransforms import CythonTransform, SkipDeclarations, AnalyseDeclarationsTransform
16 from Cython.Compiler.TreeFragment import parse_from_strings
18 from Cython.Compiler import Pipeline
45 from Cython.Compiler.ParseTreeTransforms import AnalyseDeclarationsTransform
  /external/chromium_org/v8/src/
compiler.cc 7 #include "src/compiler.h"
12 #include "src/compiler/pipeline.h"
346 // the optimizing compiler.
392 if (!Compiler::EnsureDeoptimizationSupport(info())) {
405 compiler::Pipeline pipeline(info());
548 // Sets the expected number of properties based on estimate from compiler.
657 VMState<COMPILER> state(info->isolate());
812 MaybeHandle<Code> Compiler::GetUnoptimizedCode(Handle<JSFunction> function) {
828 MaybeHandle<Code> Compiler::GetLazyCode(Handle<JSFunction> function) {
835 VMState<COMPILER> state(info.isolate())
    [all...]
  /art/compiler/
oat_test.cc 18 #include "compiler.h"
92 Compiler::Kind compiler_kind = kUsePortableCompiler
93 ? Compiler::kPortable
94 : Compiler::kQuick;
common_compiler_test.cc 311 Compiler::Kind compiler_kind
312 = (kUsePortableCompiler) ? Compiler::kPortable : Compiler::kQuick;
  /external/chromium_org/third_party/cython/src/
setup.py 59 'Cython.Compiler' : ['*.pxd'],
76 'cython = Cython.Compiler.Main:setuptools_main',
101 "Cython.Compiler.Lexicon",
102 "Cython.Compiler.Scanning",
103 "Cython.Compiler.Parsing",
104 "Cython.Compiler.Visitor",
105 "Cython.Compiler.FlowControl",
106 "Cython.Compiler.Code",
108 # "Cython.Compiler.FusedNode",
114 "Cython.Compiler.ParseTreeTransforms"
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Debugger/
DebugWriter.py 30 from Cython.Compiler import Errors
47 # set by Cython.Compiler.ParseTreeTransforms.DebugTransform
  /external/javassist/src/main/javassist/tools/reflect/
Compiler.java 52 * <ul><pre>% java Compiler Dog -m MetaDog -c CMetaDog Cat -m MetaCat Cow
70 public class Compiler {
159 out.println("Usage: java javassist.tools.reflect.Compiler");
  /external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/
handlebars-1.0.0.beta.6.js 99 // lib/handlebars/compiler/parser.js
505 // lib/handlebars/compiler/base.js
526 // lib/handlebars/compiler/ast.js
689 // lib/handlebars/compiler/compiler.js
690 Handlebars.Compiler = function() {};
693 (function(Compiler, JavaScriptCompiler) {
694 Compiler.OPCODE_MAP = {
712 Compiler.MULTI_PARAM_OPCODES = {
728 Compiler.DISASSEMBLE_MAP = {}
    [all...]
  /external/chromium_org/third_party/re2/re2/
prog.h 166 friend class Compiler;
338 friend class Compiler;
  /external/llvm/bindings/ocaml/analysis/
llvm_analysis.mli 3 * The LLVM Compiler Infrastructure
  /external/llvm/bindings/ocaml/transforms/ipo/
llvm_ipo.mli 3 * The LLVM Compiler Infrastructure
  /external/llvm/lib/Target/X86/
X86CompilationCallback_Win64.asm 3 ;; The LLVM Compiler Infrastructure
  /external/chromium_org/chrome/common/extensions/docs/server2/
jsc_view.py 64 '''Uses a Model from the JSON Schema Compiler and generates a dict that
96 is a Namespace object from JSON Schema Compiler.
178 '''Returns a dictionary representation of a type from JSON Schema Compiler.
201 JSON Schema Compiler.
247 JSON Schema Compiler. Note that although events are modeled as functions
248 in JSON Schema Compiler, we model them differently for the templates.
308 JSON Schema Compiler.
  /external/chromium_org/mojo/tools/
mojob.sh 34 Compiler options (specified before gyp):
99 COMPILER=clang
108 case "$COMPILER" in
216 COMPILER=clang
219 COMPILER=gcc

Completed in 3918 milliseconds

1 2 34 5 6 7 8 9