| /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/compiler/ |
| code_generator.h | 52 namespace compiler { namespace in namespace:google::protobuf 138 } // namespace compiler
|
| /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/compiler/ |
| code_generator.h | 52 namespace compiler { namespace in namespace:google::protobuf 138 } // namespace compiler
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
| syntax.py | 7 The compiler package catches some errors in the transformer module. 12 from compiler import ast, walk
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
| test_build_clib.py | 78 cmd.compiler = FakeCompiler() 124 # by creating a compiler and checking its executables 128 compiler = new_compiler() 129 customize_compiler(compiler) 130 for ccmd in compiler.executables.values():
|
| test_msvc9compiler.py | 108 # a DistutilsPlatformError if the compiler 151 compiler = MSVCCompiler() 152 compiler._remove_visual_c_ref(manifest) 175 compiler = MSVCCompiler() 176 got = compiler._remove_visual_c_ref(manifest)
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
| syntax.py | 7 The compiler package catches some errors in the transformer module. 12 from compiler import ast, walk
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
| test_build_clib.py | 78 cmd.compiler = FakeCompiler() 124 # by creating a compiler and checking its executables 128 compiler = new_compiler() 129 customize_compiler(compiler) 130 for ccmd in compiler.executables.values():
|
| test_msvc9compiler.py | 108 # a DistutilsPlatformError if the compiler 151 compiler = MSVCCompiler() 152 compiler._remove_visual_c_ref(manifest) 175 compiler = MSVCCompiler() 176 got = compiler._remove_visual_c_ref(manifest)
|
| /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/ |
| code_generator.h | 52 namespace compiler { namespace in namespace:google::protobuf 87 // when more than one `.proto` file is specified on one compiler invocation. 172 } // namespace compiler
|
| /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/compiler/ |
| code_generator.h | 52 namespace compiler { namespace in namespace:google::protobuf 138 } // namespace compiler
|
| /system/core/libutils/include/utils/ |
| Singleton.h | 27 #include <cutils/compiler.h>
|
| /external/python/cpython3/Python/ |
| compile.c | 5 * PyCodeObject. The compiler makes several passes to build the code 19 * which needs to be released. Code blocks are OK, as the compiler 81 compiler IR. 151 struct compiler { struct 161 struct compiler_unit *u; /* compiler state for current block */ 166 static int compiler_enter_scope(struct compiler *, identifier, int, void *, int); 167 static void compiler_free(struct compiler *); 168 static basicblock *compiler_new_block(struct compiler *); 169 static int compiler_next_instr(struct compiler *, basicblock *); 170 static int compiler_addop(struct compiler *, int) [all...] |
| /external/mesa3d/src/mesa/drivers/dri/i965/ |
| brw_vec4_tcs.cpp | 36 vec4_tcs_visitor::vec4_tcs_visitor(const struct brw_compiler *compiler, 44 : vec4_visitor(compiler, log_data, &key->tex, &prog_data->base, 389 brw_compile_tcs(const struct brw_compiler *compiler, 399 const struct gen_device_info *devinfo = compiler->devinfo; 401 const bool is_scalar = compiler->scalar_stage[MESA_SHADER_TESS_CTRL]; 414 nir = brw_nir_apply_sampler_key(nir, compiler, &key->tex, is_scalar); 421 nir = brw_postprocess_nir(nir, compiler, is_scalar); 469 fs_visitor v(compiler, log_data, mem_ctx, (void *) key, 481 fs_generator g(compiler, log_data, mem_ctx, (void *) key, 496 vec4_tcs_visitor v(compiler, log_data, key, prog_data [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
| compile.c | 5 * PyCodeObject. The compiler makes several passes to build the code
19 * which needs to be released. Code blocks are OK, as the compiler
84 compiler IR.
135 struct compiler {
struct 144 struct compiler_unit *u; /* compiler state for current block */
149 static int compiler_enter_scope(struct compiler *, identifier, void *, int);
150 static void compiler_free(struct compiler *);
151 static basicblock *compiler_new_block(struct compiler *);
152 static int compiler_next_instr(struct compiler *, basicblock *);
153 static int compiler_addop(struct compiler *, int); [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
| compile.c | 5 * PyCodeObject. The compiler makes several passes to build the code
19 * which needs to be released. Code blocks are OK, as the compiler
84 compiler IR.
135 struct compiler {
struct 144 struct compiler_unit *u; /* compiler state for current block */
149 static int compiler_enter_scope(struct compiler *, identifier, void *, int);
150 static void compiler_free(struct compiler *);
151 static basicblock *compiler_new_block(struct compiler *);
152 static int compiler_next_instr(struct compiler *, basicblock *);
153 static int compiler_addop(struct compiler *, int); [all...] |
| /external/python/cpython2/Python/ |
| compile.c | 5 * PyCodeObject. The compiler makes several passes to build the code 19 * which needs to be released. Code blocks are OK, as the compiler 84 compiler IR. 135 struct compiler { struct 144 struct compiler_unit *u; /* compiler state for current block */ 149 static int compiler_enter_scope(struct compiler *, identifier, void *, int); 150 static void compiler_free(struct compiler *); 151 static basicblock *compiler_new_block(struct compiler *); 152 static int compiler_next_instr(struct compiler *, basicblock *); 153 static int compiler_addop(struct compiler *, int) [all...] |
| /external/clang/tools/scan-build-py/libscanbuild/ |
| compilation.py | 2 # The LLVM Compiler Infrastructure 6 """ This module is responsible for to parse a compiler invocation. """ 14 # Ignored compiler options map for compilation database creation. 36 # compilation commands only. so, the compiler would ignore these flags 51 # Known C/C++ compiler executable name patterns 67 compiler: string value of 'c' or 'c++' """ 71 ['compiler', 'flags', 'files']) 72 result.compiler = compiler_language(command) 75 # quit right now, if the program was not a C/C++ compiler 76 if not result.compiler [all...] |
| /external/eigen/unsupported/Eigen/CXX11/src/util/ |
| CXX11Workarounds.h | 17 #error Intel Compiler only supports required C++ features since version 13.1. 24 // short enough the user has a chance to see that the compiler version is not sufficient for 27 #error GNU C++ Compiler (g++) only supports required C++ features since version 4.6. 30 /* Check that the compiler at least claims to support C++11. It might not be sufficient 31 * because the compiler may not implement it correctly, but at least we'll know. 39 #error This library needs at least a C++11 compliant compiler. If you use g++/clang, please enable the -std=c++11 compiler flag. (-std=c++0x on older versions.) 59 * This will work in Intel's compiler 13.0, but only to some extent in g++ 4.6, since 65 * But Intel's compiler 13.0 won't accept that, it will only accept the empty syntax,
|
| /external/flatbuffers/tests/MyGame/Example2/ |
| Monster.go | 1 // automatically generated by the FlatBuffers compiler, do not modify
|
| /external/flatbuffers/tests/MyGame/ |
| InParentNamespace.go | 1 // automatically generated by the FlatBuffers compiler, do not modify
|
| /external/libpng/contrib/intel/ |
| configure.ac.patch | 23 [If not specified: determined by the compiler.]),
|
| /external/mesa3d/src/gallium/targets/libgl-gdi/ |
| SConscript | 57 LIBS = wgl + ws_gdi + glapi + compiler + mesa + drivers + gallium + glsl + nir + env['LIBS'],
|
| /external/protobuf/src/google/protobuf/compiler/cpp/ |
| cpp_enum_field.h | 40 #include <google/protobuf/compiler/cpp/cpp_field.h> 44 namespace compiler { namespace in namespace:google::protobuf 120 } // namespace compiler
|
| cpp_field.h | 46 #include <google/protobuf/compiler/cpp/cpp_options.h> 56 namespace compiler { namespace in namespace:google::protobuf 225 } // namespace compiler
|
| /external/protobuf/src/google/protobuf/compiler/csharp/ |
| csharp_doc_comment.cc | 34 #include <google/protobuf/compiler/csharp/csharp_doc_comment.h> 41 namespace compiler { namespace in namespace:google::protobuf 112 } // namespace compiler
|