/external/chromium_org/third_party/re2/re2/ |
D | compile.cc | 123 class Compiler : public Regexp::Walker<Frag> { class 125 explicit Compiler(); 126 ~Compiler(); 237 DISALLOW_EVIL_CONSTRUCTORS(Compiler); 240 Compiler::Compiler() { in Compiler() function in re2::Compiler 255 Compiler::~Compiler() { in ~Compiler() 260 int Compiler::AllocInst(int n) { in AllocInst() 282 void Compiler::Trim() { in Trim() 297 Frag Compiler::NoMatch() { in NoMatch() 307 Frag Compiler::Cat(Frag a, Frag b) { in Cat() [all …]
|
/external/regex-re2/re2/ |
D | compile.cc | 122 class Compiler : public Regexp::Walker<Frag> { class 124 explicit Compiler(); 125 ~Compiler(); 236 DISALLOW_EVIL_CONSTRUCTORS(Compiler); 239 Compiler::Compiler() { in Compiler() function in re2::Compiler 254 Compiler::~Compiler() { in ~Compiler() 259 int Compiler::AllocInst(int n) { in AllocInst() 281 void Compiler::Trim() { in Trim() 296 Frag Compiler::NoMatch() { in NoMatch() 306 Frag Compiler::Cat(Frag a, Frag b) { in Cat() [all …]
|
/external/eigen/bench/btl/cmake/ |
D | FindMKL.cmake | 15 /opt/intel/Compiler/*/*/mkl/lib/em64t 24 /opt/intel/Compiler/*/*/mkl/lib/em64t 25 /opt/intel/Compiler/*/*/lib/intel64 40 /opt/intel/Compiler/*/*/mkl/lib/32 49 /opt/intel/Compiler/*/*/mkl/lib/32 50 /opt/intel/Compiler/*/*/lib/intel32
|
/external/clang/unittests/AST/ |
D | ExternalASTSourceTest.cpp | 48 CompilerInstance Compiler; in testExternalASTSource() local 49 Compiler.createDiagnostics(); in testExternalASTSource() 57 Compiler.getDiagnostics()); in testExternalASTSource() 58 Compiler.setInvocation(Invocation); in testExternalASTSource() 61 return Compiler.ExecuteAction(Action); in testExternalASTSource()
|
/external/clang/tools/scan-build/ |
D | ccc-analyzer | 28 my $Compiler; 43 $Compiler = $ENV{'CCC_CXX'}; 44 if (!defined $Compiler || ! -x $Compiler) { $Compiler = $DefaultCXXCompiler; } 52 $Compiler = $ENV{'CCC_CC'}; 53 if (!defined $Compiler || ! -x $Compiler) { $Compiler = $DefaultCCompiler; } 129 `$Compiler -v >> $PPFile.info.txt 2>&1`; 431 my $Status = system($Compiler,@ARGV); 433 print STDERR "$Compiler @ARGV\n";
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/ |
D | TestVisitor.py | 1 from Cython.Compiler.ModuleNode import ModuleNode 2 from Cython.Compiler.Symtab import ModuleScope 4 from Cython.Compiler.Visitor import MethodDispatcherTransform 5 from Cython.Compiler.ParseTreeTransforms import (
|
D | TestMemView.py | 2 import Cython.Compiler.Errors as Errors 3 from Cython.Compiler.Nodes import * 4 from Cython.Compiler.ParseTreeTransforms import * 5 from Cython.Compiler.Buffer import *
|
D | TestTreeFragment.py | 2 from Cython.Compiler.TreeFragment import * 3 from Cython.Compiler.Nodes import * 4 from Cython.Compiler.UtilNodes import * 5 import Cython.Compiler.Naming as Naming
|
D | TestBuffer.py | 2 import Cython.Compiler.Errors as Errors 3 from Cython.Compiler.Nodes import * 4 from Cython.Compiler.ParseTreeTransforms import * 5 from Cython.Compiler.Buffer import *
|
D | TestParseTreeTransforms.py | 3 from Cython.Compiler import CmdLine 5 from Cython.Compiler.ParseTreeTransforms import * 6 from Cython.Compiler.Nodes import * 7 from Cython.Compiler import Main, Symtab
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | BasicTestIterator.java | 27 import org.apache.xpath.compiler.Compiler; 73 protected BasicTestIterator(Compiler compiler, int opPos, int analysis) in BasicTestIterator() 112 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) in BasicTestIterator()
|
D | AttributeIterator.java | 24 import org.apache.xpath.compiler.Compiler; 45 AttributeIterator(Compiler compiler, int opPos, int analysis) in AttributeIterator()
|
D | SelfIteratorNoPredicate.java | 25 import org.apache.xpath.compiler.Compiler; 47 SelfIteratorNoPredicate(Compiler compiler, int opPos, int analysis) in SelfIteratorNoPredicate()
|
D | WalkerFactory.java | 28 import org.apache.xpath.compiler.Compiler; 61 WalkingIterator lpi, Compiler compiler, int stepOpCodePos) in loadOneWalker() 96 WalkingIterator lpi, Compiler compiler, int stepOpCodePos, int stepIndex) in loadWalkers() 139 public static void diagnoseIterator(String name, int analysis, Compiler compiler) in diagnoseIterator() 159 Compiler compiler, int opPos, in newDTMIterator() 301 Compiler compiler, int stepOpCodePos) in getAxisFromStep() 400 static boolean functionProximateOrContainsProximate(Compiler compiler, in functionProximateOrContainsProximate() 430 static boolean isProximateInnerExpr(Compiler compiler, int opPos) in isProximateInnerExpr() 473 public static boolean mightBeProximate(Compiler compiler, int opPos, int stepType) in mightBeProximate() 557 Compiler compiler, int stepOpCodePos, int stepIndex) in isOptimizableForDescendantIterator() [all …]
|
D | ChildIterator.java | 26 import org.apache.xpath.compiler.Compiler; 49 ChildIterator(Compiler compiler, int opPos, int analysis) in ChildIterator()
|
D | UnionPathIterator.java | 29 import org.apache.xpath.compiler.Compiler; 156 public UnionPathIterator(Compiler compiler, int opPos) in UnionPathIterator() 179 public static LocPathIterator createUnionIterator(Compiler compiler, int opPos) in createUnionIterator() 311 Compiler compiler, int opPos) throws javax.xml.transform.TransformerException in createDTMIterator() 329 protected void loadLocationPaths(Compiler compiler, int opPos, int count) in loadLocationPaths()
|
/external/compiler-rt/ |
D | README.txt | 1 Compiler-RT 7 Compiler-RT is open source software. You may freely distribute it under the
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
D | CodeGeneration.py | 1 from Cython.Compiler.Visitor import VisitorTransform 2 from Cython.Compiler.Nodes import StatListNode
|
/external/zlib/src/contrib/ada/ |
D | zlib.gpr | 8 package Compiler is 10 end Compiler;
|
/external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/ |
D | handlebars-1.0.0.beta.6.js | 690 Handlebars.Compiler = function() {}; class 693 (function(Compiler, JavaScriptCompiler) { argument 694 Compiler.OPCODE_MAP = { 712 Compiler.MULTI_PARAM_OPCODES = { 728 Compiler.DISASSEMBLE_MAP = {}; 730 for(var prop in Compiler.OPCODE_MAP) { 731 var value = Compiler.OPCODE_MAP[prop]; 732 Compiler.DISASSEMBLE_MAP[value] = prop; 735 Compiler.multiParamSize = function(code) { 736 return Compiler.MULTI_PARAM_OPCODES[Compiler.DISASSEMBLE_MAP[code]]; [all …]
|
/external/clang/lib/Tooling/ |
D | Tooling.cpp | 250 clang::CompilerInstance Compiler; in runInvocation() local 251 Compiler.setInvocation(Invocation); in runInvocation() 252 Compiler.setFileManager(Files); in runInvocation() 260 Compiler.createDiagnostics(DiagConsumer, /*ShouldOwnClient=*/false); in runInvocation() 261 if (!Compiler.hasDiagnostics()) in runInvocation() 264 Compiler.createSourceManager(*Files); in runInvocation() 266 const bool Success = Compiler.ExecuteAction(*ScopedToolAction); in runInvocation()
|
/external/chromium_org/third_party/cython/src/Cython/ |
D | TestUtils.py | 1 import Cython.Compiler.Errors as Errors 3 from Cython.Compiler.TreeFragment import TreeFragment, strip_common_indent 4 from Cython.Compiler.Visitor import TreeVisitor, VisitorTransform 5 from Cython.Compiler import TreePath
|
/external/chromium_org/v8/src/ |
D | compiler.cc | 392 if (!Compiler::EnsureDeoptimizationSupport(info())) { in CreateGraph() 812 MaybeHandle<Code> Compiler::GetUnoptimizedCode(Handle<JSFunction> function) { in GetUnoptimizedCode() 828 MaybeHandle<Code> Compiler::GetLazyCode(Handle<JSFunction> function) { in GetLazyCode() 862 if (Compiler::GetOptimizedCode( in GetLazyCode() 864 Compiler::NOT_CONCURRENT).ToHandle(&opt_code)) { in GetLazyCode() 873 MaybeHandle<Code> Compiler::GetUnoptimizedCode( in GetUnoptimizedCode() 883 bool Compiler::EnsureCompiled(Handle<JSFunction> function, in EnsureCompiled() 886 MaybeHandle<Code> maybe_code = Compiler::GetLazyCode(function); in EnsureCompiled() 902 bool Compiler::EnsureDeoptimizationSupport(CompilationInfo* info) { in EnsureDeoptimizationSupport() 941 MaybeHandle<Code> Compiler::GetDebugCode(Handle<JSFunction> function) { in GetDebugCode() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
D | Function.java | 28 import org.apache.xpath.compiler.Compiler; 140 public void postCompileStep(Compiler compiler) in postCompileStep()
|
D | FuncLast.java | 26 import org.apache.xpath.compiler.Compiler; 45 public void postCompileStep(Compiler compiler) in postCompileStep()
|