HomeSort by relevance Sort by last modified time
    Searched refs:compiler (Results 151 - 175 of 3285) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/python/cpython2/Lib/test/
test_compiler.py 2 compiler = test.test_support.import_module('compiler', deprecated=True) variable
3 from compiler.ast import flatten
22 # that any of the code is correct, merely the compiler is able
51 self.assertRaises(SyntaxError, compiler.compile,
55 compiler.compile(buf, basename, "exec")
64 compiler.compile("class foo():pass\n\n","<string>","exec")
67 compiler.compile("def g(): yield\n\n", "<string>", "exec")
72 c = compiler.compile('f(x=1, *(2, 3), y=4)', '<string>', 'exec')
75 self.assertRaises(SyntaxError, compiler.parse, "foo(a=1, b)"
    [all...]
  /external/tensorflow/tensorflow/contrib/compiler/
__init__.py 15 """A module for controlling the Tensorflow/XLA JIT compiler."""
21 from tensorflow.contrib.compiler import jit
  /external/v8/src/
fast-accessor-assembler.h 25 namespace compiler { namespace in namespace:v8::internal
90 ValueId FromRaw(compiler::Node* node);
91 LabelId FromRaw(compiler::CodeAssemblerLabel* label);
92 compiler::Node* FromId(ValueId value) const;
93 compiler::CodeAssemblerLabel* FromId(LabelId value) const;
103 std::unique_ptr<compiler::CodeAssemblerState> assembler_state_;
109 std::vector<compiler::Node*> nodes_;
110 std::vector<compiler::CodeAssemblerLabel*> labels_;
  /external/v8/src/ffi/
ffi-compiler.h 14 typedef compiler::Node Node;
15 typedef compiler::CodeAssemblerState CodeAssemblerState;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
c++0x_warning.h 32 #error This file requires compiler and library support for the \
34 enabled with the -std=c++11 or -std=gnu++11 compiler options.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
c++0x_warning.h 32 #error This file requires compiler and library support for the \
34 enabled with the -std=c++11 or -std=gnu++11 compiler options.
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_compiler.py 2 compiler = test.test_support.import_module('compiler', deprecated=True) variable
3 from compiler.ast import flatten
22 # that any of the code is correct, merely the compiler is able
51 self.assertRaises(SyntaxError, compiler.compile,
55 compiler.compile(buf, basename, "exec")
64 compiler.compile("class foo():pass\n\n","<string>","exec")
67 compiler.compile("def g(): yield\n\n", "<string>", "exec")
72 c = compiler.compile('f(x=1, *(2, 3), y=4)', '<string>', 'exec')
75 self.assertRaises(SyntaxError, compiler.parse, "foo(a=1, b)"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_compiler.py 2 compiler = test.test_support.import_module('compiler', deprecated=True) variable
3 from compiler.ast import flatten
22 # that any of the code is correct, merely the compiler is able
51 self.assertRaises(SyntaxError, compiler.compile,
55 compiler.compile(buf, basename, "exec")
64 compiler.compile("class foo():pass\n\n","<string>","exec")
67 compiler.compile("def g(): yield\n\n", "<string>", "exec")
72 c = compiler.compile('f(x=1, *(2, 3), y=4)', '<string>', 'exec')
75 self.assertRaises(SyntaxError, compiler.parse, "foo(a=1, b)"
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/GenericCodeGen/
CodeGen.cpp 61 // Delete the compiler made by ConstructCompiler
63 void DeleteCompiler(TCompiler* compiler)
65 delete compiler;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compiler.py 2 compiler = test.test_support.import_module('compiler', deprecated=True) variable
3 from compiler.ast import flatten
22 # that any of the code is correct, merely the compiler is able
51 self.assertRaises(SyntaxError, compiler.compile,
55 compiler.compile(buf, basename, "exec")
64 compiler.compile("class foo():pass\n\n","<string>","exec")
67 compiler.compile("def g(): yield\n\n", "<string>", "exec")
72 c = compiler.compile('f(x=1, *(2, 3), y=4)', '<string>', 'exec')
75 self.assertRaises(SyntaxError, compiler.parse, "foo(a=1, b)"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_compiler.py 2 compiler = test.test_support.import_module('compiler', deprecated=True) variable
3 from compiler.ast import flatten
22 # that any of the code is correct, merely the compiler is able
51 self.assertRaises(SyntaxError, compiler.compile,
55 compiler.compile(buf, basename, "exec")
64 compiler.compile("class foo():pass\n\n","<string>","exec")
67 compiler.compile("def g(): yield\n\n", "<string>", "exec")
72 c = compiler.compile('f(x=1, *(2, 3), y=4)', '<string>', 'exec')
75 self.assertRaises(SyntaxError, compiler.parse, "foo(a=1, b)"
    [all...]
  /external/clang/test/Preprocessor/
pragma_ps4.c 18 #pragma comment(compiler) // expected-warning {{'#pragma comment compiler' ignored}}
19 #pragma comment(compiler, "foo") // expected-warning {{'#pragma comment compiler' ignored}}
20 __pragma(comment(compiler, "foo")) // expected-warning {{'#pragma comment compiler' ignored}}
  /external/protobuf/src/google/protobuf/compiler/java/
java_extension_lite.cc 31 #include <google/protobuf/compiler/java/java_extension_lite.h>
33 #include <google/protobuf/compiler/java/java_context.h>
34 #include <google/protobuf/compiler/java/java_doc_comment.h>
35 #include <google/protobuf/compiler/java/java_helpers.h>
36 #include <google/protobuf/compiler/java/java_name_resolver.h>
42 namespace compiler { namespace in namespace:google::protobuf
116 } // namespace compiler
  /external/pcre/dist2/src/sljit/
sljitNativeX86_32.c 2 * Stack-less Just-In-Time compiler
29 static sljit_s32 emit_do_imm(struct sljit_compiler *compiler, sljit_u8 opcode, sljit_sw imm)
33 inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + sizeof(sljit_sw));
66 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
74 CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
75 set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size);
77 compiler->args = args;
78 compiler->flags_saved = 0;
86 inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
146 inst = (sljit_u8*)ensure_buf(compiler, 1 + 17)
    [all...]
sljitNativeMIPS_common.c 2 * Stack-less Just-In-Time compiler
204 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot)
208 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins));
211 compiler->size++;
212 compiler->delay_slot = delay_slot;
359 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler)
374 CHECK_PTR(check_sljit_generate_code(compiler));
375 reverse_buf(compiler);
377 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins));
379 buf = compiler->buf
    [all...]
sljitNativePPC_common.c 2 * Stack-less Just-In-Time compiler
243 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins)
245 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins));
248 compiler->size++;
321 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler)
336 CHECK_PTR(check_sljit_generate_code(compiler));
337 reverse_buf(compiler);
341 compiler->size += (compiler->size & 0x1) + (sizeof(struct sljit_function_context) / sizeof(sljit_ins));
343 compiler->size += (sizeof(struct sljit_function_context) / sizeof(sljit_ins))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
BasicTestIterator.java 27 import org.apache.xpath.compiler.Compiler;
28 import org.apache.xpath.compiler.OpMap;
64 * into the Compiler to create predicate expressions.
66 * @param compiler The Compiler which is creating
69 * opcode list from the compiler.
73 protected BasicTestIterator(Compiler compiler, int opPos, int analysis)
76 super(compiler, opPos, analysis, false)
    [all...]
  /external/mesa3d/src/compiler/
Makefile.am 31 -I$(top_builddir)/src/compiler/glsl\
32 -I$(top_srcdir)/src/compiler/glsl\
33 -I$(top_srcdir)/src/compiler/glsl/glcpp\
34 -I$(top_builddir)/src/compiler/nir \
35 -I$(top_srcdir)/src/compiler/nir \
  /prebuilts/maven_repo/bumptech/com/github/bumptech/glide/compiler/SNAPSHOT/
compiler-SNAPSHOT.jar 
  /external/tensorflow/tensorflow/compiler/xla/tests/
llvm_compiler_test.cc 16 #include "tensorflow/compiler/xla/service/llvm_compiler.h"
17 #include "tensorflow/compiler/xla/service/backend.h"
18 #include "tensorflow/compiler/xla/service/cpu/cpu_compiler.h"
19 #include "tensorflow/compiler/xla/service/gpu/gpu_compiler.h"
20 #include "tensorflow/compiler/xla/service/hlo_instruction.h"
21 #include "tensorflow/compiler/xla/service/platform_util.h"
22 #include "tensorflow/compiler/xla/test_helpers.h"
51 void TestCompilerHooks(LLVMCompiler *compiler) {
64 // Create HLO module, and run the compiler.
72 compiler->SetPreOptimizationHook(pre_opt_hook)
143 cpu::CpuCompiler compiler; local
148 gpu::GpuCompiler compiler; local
153 cpu::CpuCompiler compiler; local
158 gpu::GpuCompiler compiler; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_ccompiler.py 27 compiler = FakeCompiler()
32 opts = gen_lib_options(compiler, libdirs, runlibdirs, libs)
42 compiler = MyCCompiler()
44 compiler.debug_print('xxx')
51 compiler.debug_print('xxx')
59 # not testing if default compiler is not unix
67 class compiler: class in function:CCompilerTestCase.test_customize_compiler
73 comp = compiler()
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_enum.cc 33 #include <google/protobuf/compiler/code_generator.h>
34 #include <google/protobuf/compiler/plugin.h>
41 #include <google/protobuf/compiler/csharp/csharp_doc_comment.h>
42 #include <google/protobuf/compiler/csharp/csharp_enum.h>
43 #include <google/protobuf/compiler/csharp/csharp_helpers.h>
44 #include <google/protobuf/compiler/csharp/csharp_options.h>
50 namespace compiler { namespace in namespace:google::protobuf
93 } // namespace compiler
  /external/python/cpython2/Lib/distutils/tests/
test_ccompiler.py 28 compiler = FakeCompiler()
33 opts = gen_lib_options(compiler, libdirs, runlibdirs, libs)
43 compiler = MyCCompiler()
45 compiler.debug_print('xxx')
52 compiler.debug_print('xxx')
59 'not testing if default compiler is not unix')
65 class compiler: class in function:CCompilerTestCase.test_customize_compiler
71 comp = compiler()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_ccompiler.py 28 compiler = FakeCompiler()
33 opts = gen_lib_options(compiler, libdirs, runlibdirs, libs)
43 compiler = MyCCompiler()
45 compiler.debug_print('xxx')
52 compiler.debug_print('xxx')
60 # not testing if default compiler is not unix
68 class compiler: class in function:CCompilerTestCase.test_customize_compiler
74 comp = compiler()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_ccompiler.py 28 compiler = FakeCompiler()
33 opts = gen_lib_options(compiler, libdirs, runlibdirs, libs)
43 compiler = MyCCompiler()
45 compiler.debug_print('xxx')
52 compiler.debug_print('xxx')
60 # not testing if default compiler is not unix
68 class compiler: class in function:CCompilerTestCase.test_customize_compiler
74 comp = compiler()

Completed in 1150 milliseconds

1 2 3 4 5 67 8 91011>>