Searched refs:compiler (Results 276 - 300 of 1382) sorted by relevance

<<11121314151617181920>>

/external/v8/src/builtins/
H A Dbuiltins-conversion.cc33 typedef compiler::Node Node;
103 compiler::CodeAssemblerState* state) {
109 compiler::CodeAssemblerState* state) {
115 compiler::CodeAssemblerState* state) {
120 void Builtins::Generate_StringToNumber(compiler::CodeAssemblerState* state) {
121 typedef compiler::Node Node;
131 void Builtins::Generate_ToName(compiler::CodeAssemblerState* state) {
132 typedef compiler::Node Node;
143 void Builtins::Generate_NonNumberToNumber(compiler::CodeAssemblerState* state) {
144 typedef compiler
[all...]
H A Dbuiltins-sharedarraybuffer.cc30 void ValidateSharedTypedArray(CodeStubAssembler* a, compiler::Node* tagged,
31 compiler::Node* context,
32 compiler::Node** out_instance_type,
33 compiler::Node** out_backing_store) {
34 using compiler::Node;
96 compiler::Node* ConvertTaggedAtomicIndexToWord32(CodeStubAssembler* a,
97 compiler::Node* tagged,
98 compiler::Node* context) {
99 using compiler::Node;
140 void ValidateAtomicIndex(CodeStubAssembler* a, compiler
[all...]
/external/python/cpython2/Lib/distutils/command/
H A Dconfig.py29 ('compiler=', None,
30 "specify the compiler type"),
32 "specify the compiler executable"),
55 self.compiler = None
94 """Check that 'self.compiler' really is a CCompiler object;
100 if not isinstance(self.compiler, CCompiler):
101 self.compiler = new_compiler(compiler=self.compiler,
103 customize_compiler(self.compiler)
[all...]
/external/python/cpython3/Lib/distutils/command/
H A Dconfig.py26 ('compiler=', None,
27 "specify the compiler type"),
29 "specify the compiler executable"),
52 self.compiler = None
90 """Check that 'self.compiler' really is a CCompiler object;
96 if not isinstance(self.compiler, CCompiler):
97 self.compiler = new_compiler(compiler=self.compiler,
99 customize_compiler(self.compiler)
[all...]
/external/pcre/dist2/src/sljit/
H A DsljitLir.h2 * Stack-less Just-In-Time compiler
32 Stack-Less JIT compiler for multiple architectures (x86, ARM, PowerPC)
51 - The compiler is thread-safe
52 - The compiler is highly configurable through preprocessor macros.
89 /* After the call of sljit_generate_code(), the error code of the compiler
413 /* Creates an sljit compiler. The allocator_data is required by some
423 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_compiler(struct sljit_compiler *compiler);
426 calls which uses the same compiler argument returns early with the same
430 static SLJIT_INLINE sljit_s32 sljit_get_compiler_error(struct sljit_compiler *compiler) { return compiler argument
469 sljit_get_generated_code_size(struct sljit_compiler *compiler) argument
[all...]
/external/mesa3d/src/intel/blorp/
H A Dblorp.c166 const struct brw_compiler *compiler = blorp->compiler; local
169 compiler->glsl_compiler_options[MESA_SHADER_FRAGMENT].NirOptions;
181 nir = brw_preprocess_nir(compiler, nir);
186 brw_compile_fs(compiler, blorp->driver_ctx, mem_ctx, wm_key,
199 const struct brw_compiler *compiler = blorp->compiler; local
202 compiler->glsl_compiler_options[MESA_SHADER_VERTEX].NirOptions;
204 nir = brw_preprocess_nir(compiler, nir);
209 brw_compute_vue_map(compiler
[all...]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
H A Dext.py162 `compiler` : ``CCompiler``
163 compiler instance
189 self.compiler = compiler = build.compiler
191 self.obj = compiler.object_filenames([src], output_dir=tempdir)
209 Optional keyword parameters for the compiler call
216 self.compiler.compile([self.src], **kwargs)
235 self.compiler.link_executable(self.obj, self.target, **kwargs)
254 return _os.popen(self.compiler
[all...]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
H A Dext.py161 `compiler` : ``CCompiler``
162 compiler instance
188 self.compiler = compiler = build.compiler
190 self.obj = compiler.object_filenames([src], output_dir=tempdir)
208 Optional keyword parameters for the compiler call
215 self.compiler.compile([self.src], **kwargs)
234 self.compiler.link_executable(self.obj, self.target, **kwargs)
253 return _os.popen(self.compiler
[all...]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
H A Dext.py162 `compiler` : ``CCompiler``
163 compiler instance
189 self.compiler = compiler = build.compiler
191 self.obj = compiler.object_filenames([src], output_dir=tempdir)
209 Optional keyword parameters for the compiler call
216 self.compiler.compile([self.src], **kwargs)
235 self.compiler.link_executable(self.obj, self.target, **kwargs)
254 return _os.popen(self.compiler
[all...]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
H A Dext.py161 `compiler` : ``CCompiler``
162 compiler instance
188 self.compiler = compiler = build.compiler
190 self.obj = compiler.object_filenames([src], output_dir=tempdir)
208 Optional keyword parameters for the compiler call
215 self.compiler.compile([self.src], **kwargs)
234 self.compiler.link_executable(self.obj, self.target, **kwargs)
253 return _os.popen(self.compiler
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dtest_vec4_copy_propagation.cpp37 struct brw_compiler *compiler; member in class:copy_propagation_test
48 copy_propagation_vec4_visitor(struct brw_compiler *compiler, argument
51 : vec4_visitor(compiler, NULL, NULL, prog_data, shader, NULL,
93 compiler = (struct brw_compiler *)calloc(1, sizeof(*compiler));
96 compiler->devinfo = devinfo;
101 v = new copy_propagation_vec4_visitor(compiler, shader, prog_data);
/external/protobuf/src/google/protobuf/compiler/csharp/
H A Dcsharp_message_field.cc33 #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_helpers.h>
43 #include <google/protobuf/compiler/csharp/csharp_message_field.h>
44 #include <google/protobuf/compiler/csharp/csharp_options.h>
48 namespace compiler { namespace in namespace:google::protobuf
198 } // namespace compiler
H A Dcsharp_primitive_field.cc33 #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_helpers.h>
43 #include <google/protobuf/compiler/csharp/csharp_options.h>
44 #include <google/protobuf/compiler/csharp/csharp_primitive_field.h>
48 namespace compiler { namespace in namespace:google::protobuf
216 } // namespace compiler
H A Dcsharp_wrapper_field.cc33 #include <google/protobuf/compiler/code_generator.h>
34 #include <google/protobuf/compiler/plugin.h>
40 #include <google/protobuf/compiler/csharp/csharp_doc_comment.h>
41 #include <google/protobuf/compiler/csharp/csharp_helpers.h>
42 #include <google/protobuf/compiler/csharp/csharp_options.h>
43 #include <google/protobuf/compiler/csharp/csharp_wrapper_field.h>
47 namespace compiler { namespace in namespace:google::protobuf
209 } // namespace compiler
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_field.cc35 #include <google/protobuf/compiler/javanano/javanano_field.h>
36 #include <google/protobuf/compiler/javanano/javanano_helpers.h>
37 #include <google/protobuf/compiler/javanano/javanano_primitive_field.h>
38 #include <google/protobuf/compiler/javanano/javanano_enum_field.h>
39 #include <google/protobuf/compiler/javanano/javanano_map_field.h>
40 #include <google/protobuf/compiler/javanano/javanano_message_field.h>
45 namespace compiler { namespace in namespace:google::protobuf
207 } // namespace compiler
/external/skia/tests/
H A DSkSLFPTest.cpp18 SkSL::Compiler compiler; local
20 std::unique_ptr<SkSL::Program> program = compiler.convertProgram(
25 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str());
29 bool success = compiler.toH(*program, "Test", output);
31 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str());
45 success = compiler.toCPP(*program, "Test", output);
47 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str());
/external/skqp/tests/
H A DSkSLFPTest.cpp18 SkSL::Compiler compiler; local
20 std::unique_ptr<SkSL::Program> program = compiler.convertProgram(
25 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str());
29 bool success = compiler.toH(*program, "Test", output);
31 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str());
45 success = compiler.toCPP(*program, "Test", output);
47 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str());
/external/v8/src/regexp/
H A Djsregexp.cc1066 explicit RecursionCheck(RegExpCompiler* compiler) : compiler_(compiler) { argument
1067 compiler->IncrementRecursionDepth();
1366 void Trace::Flush(RegExpCompiler* compiler, RegExpNode* successor) { argument
1367 RegExpMacroAssembler* assembler = compiler->macro_assembler();
1378 successor->Emit(compiler, &new_state);
1393 compiler->zone());
1401 compiler->zone());
1409 if (successor->KeepRecursing(compiler)) {
1411 successor->Emit(compiler,
1432 Emit(RegExpCompiler* compiler, Trace* trace) argument
1459 Emit(RegExpCompiler* compiler, Trace* trace) argument
1634 EmitSimpleCharacter(Isolate* isolate, RegExpCompiler* compiler, uc16 c, Label* on_failure, int cp_offset, bool check, bool preloaded) argument
1657 EmitAtomNonLetter(Isolate* isolate, RegExpCompiler* compiler, uc16 c, Label* on_failure, int cp_offset, bool check, bool preloaded) argument
1738 EmitAtomLetter(Isolate* isolate, RegExpCompiler* compiler, uc16 c, Label* on_failure, int cp_offset, bool check, bool preloaded) argument
2237 LimitVersions(RegExpCompiler* compiler, Trace* trace) argument
2279 KeepRecursing(RegExpCompiler* compiler) argument
2367 GetQuickCheckDetails( QuickCheckDetails* details, RegExpCompiler* compiler, int filled_in, bool not_at_start) argument
2452 EmitQuickCheck(RegExpCompiler* compiler, Trace* bounds_check_trace, Trace* trace, bool preload_has_checked_bounds, Label* on_possible_success, QuickCheckDetails* details, bool fall_through_on_failure) argument
2536 GetQuickCheckDetails(QuickCheckDetails* details, RegExpCompiler* compiler, int characters_filled_in, bool not_at_start) argument
2947 GetQuickCheckDetails(QuickCheckDetails* details, RegExpCompiler* compiler, int characters_filled_in, bool not_at_start) argument
2972 GetQuickCheckDetails(QuickCheckDetails* details, RegExpCompiler* compiler, int characters_filled_in, bool not_at_start) argument
3022 EmitHat(RegExpCompiler* compiler, RegExpNode* on_success, Trace* trace) argument
3057 EmitBoundaryCheck(RegExpCompiler* compiler, Trace* trace) argument
3109 BacktrackIfPrevious( RegExpCompiler* compiler, Trace* trace, AssertionNode::IfPrevious backtrack_if_previous) argument
3141 GetQuickCheckDetails(QuickCheckDetails* details, RegExpCompiler* compiler, int filled_in, bool not_at_start) argument
3156 Emit(RegExpCompiler* compiler, Trace* trace) argument
3236 TextEmitPass(RegExpCompiler* compiler, TextEmitPassType pass, bool preloaded, Trace* trace, bool first_element_checked, int* checked_up_to) argument
3355 Emit(RegExpCompiler* compiler, Trace* trace) argument
3417 AdvanceCurrentPositionInTrace(int by, RegExpCompiler* compiler) argument
3454 GetSuccessorOfOmnivorousTextNode( RegExpCompiler* compiler) argument
3518 Emit(RegExpCompiler* compiler, Trace* trace) argument
3541 CalculatePreloadCharacters(RegExpCompiler* compiler, int eats_at_least) argument
3670 BoyerMooreLookahead( int length, RegExpCompiler* compiler, Zone* zone) argument
3952 SetUpPreLoad(RegExpCompiler* compiler, Trace* current_trace, PreloadState* state) argument
3970 Emit(RegExpCompiler* compiler, Trace* trace) argument
4047 EmitGreedyLoop(RegExpCompiler* compiler, Trace* trace, AlternativeGenerationList* alt_gens, PreloadState* preload, GreedyLoopState* greedy_loop_state, int text_length) argument
4094 EmitOptimizedUnanchoredSearch(RegExpCompiler* compiler, Trace* trace) argument
4146 EmitChoices(RegExpCompiler* compiler, AlternativeGenerationList* alt_gens, int first_choice, Trace* trace, PreloadState* preload) argument
4232 EmitOutOfLineContinuation(RegExpCompiler* compiler, Trace* trace, GuardedAlternative alternative, AlternativeGeneration* alt_gen, int preload_characters, bool next_expects_preload) argument
4274 Emit(RegExpCompiler* compiler, Trace* trace) argument
4396 Emit(RegExpCompiler* compiler, Trace* trace) argument
4779 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
4789 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
4944 AddBmpCharacters(RegExpCompiler* compiler, ChoiceNode* result, RegExpNode* on_success, UnicodeRangeSplitter* splitter) argument
4953 AddNonBmpSurrogatePairs(RegExpCompiler* compiler, ChoiceNode* result, RegExpNode* on_success, UnicodeRangeSplitter* splitter) argument
5013 NegativeLookaroundAgainstReadDirectionAndMatch( RegExpCompiler* compiler, ZoneList<CharacterRange>* lookbehind, ZoneList<CharacterRange>* match, RegExpNode* on_success, bool read_backward) argument
5030 MatchAndNegativeLookaroundInReadDirection( RegExpCompiler* compiler, ZoneList<CharacterRange>* match, ZoneList<CharacterRange>* lookahead, RegExpNode* on_success, bool read_backward) argument
5046 AddLoneLeadSurrogates(RegExpCompiler* compiler, ChoiceNode* result, RegExpNode* on_success, UnicodeRangeSplitter* splitter) argument
5072 AddLoneTrailSurrogates(RegExpCompiler* compiler, ChoiceNode* result, RegExpNode* on_success, UnicodeRangeSplitter* splitter) argument
5097 UnanchoredAdvance(RegExpCompiler* compiler, RegExpNode* on_success) argument
5112 AddUnicodeCaseEquivalents(RegExpCompiler* compiler, ZoneList<CharacterRange>* ranges) argument
5143 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
5223 SortConsecutiveAtoms(RegExpCompiler* compiler) argument
5269 RationalizeConsecutiveAtoms(RegExpCompiler* compiler) argument
5354 FixSingleCharacterDisjunctions( RegExpCompiler* compiler) argument
5407 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
5433 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
5449 RegExpExpansionLimiter(RegExpCompiler* compiler, int factor) argument
5482 ToNode(int min, int max, bool is_greedy, RegExpTree* body, RegExpCompiler* compiler, RegExpNode* on_success, bool not_at_start) argument
5623 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
5677 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
5686 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
5733 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
5756 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
5762 ToNode(RegExpTree* body, int index, RegExpCompiler* compiler, RegExpNode* on_success) argument
5776 ToNode(RegExpCompiler* compiler, RegExpNode* on_success) argument
6582 OptionallyStepBackToLeadSurrogate(RegExpCompiler* compiler, RegExpNode* on_success) argument
[all...]
/external/annotation-tools/asmx/test/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Dcodegen.py100 def __init__(self, printer, compiler, node):
102 self.compiler = compiler
119 pagetag = self.compiler.pagetag
126 self.compiler.enable_loop = self.compiler.enable_loop or eval(
146 _GenerateRenderMethod(printer, compiler, node)
155 "filename": self.compiler.filename,
156 "uri": self.compiler.uri,
157 "source_encoding": self.compiler
[all...]
/external/mesa3d/src/compiler/
H A DMakefile.nir.am61 -I$(top_builddir)/src/compiler/nir \
62 -I$(top_srcdir)/src/compiler/nir \
63 -I$(top_srcdir)/src/compiler/spirv
77 -I$(top_builddir)/src/compiler/nir \
78 -I$(top_srcdir)/src/compiler/nir
/external/guice/extensions/struts2/lib/
H A Djsp-2.1.jar ... org/apache/jasper/ org/apache/jasper/resources/ org/apache/jasper/compiler/ org/apache/jasper/compiler/tagplugin/ org/apache/jasper/servlet/ org ...
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DFilterExprWalker.java30 import org.apache.xpath.compiler.Compiler;
31 import org.apache.xpath.compiler.OpCodes;
56 * @param compiler non-null reference to the Compiler that is constructing.
62 public void init(Compiler compiler, int opPos, int stepType) argument
66 super.init(compiler, opPos, stepType);
76 m_expr = compiler.compile(opPos);
86 m_expr = compiler.compile(opPos + 2);
/external/brotli/
H A Dsetup.py85 if self.compiler.compiler_type == 'msvc':
91 elif self.compiler.compiler_type == 'mingw32':
99 objs = self.compiler.compile(
115 if self.compiler.compiler_type == 'mingw32':
120 language = ext.language or self.compiler.detect_language(sources)
122 self.compiler.link_shared_object(
/external/compiler-rt/make/
H A Doptions.mk6 # The compiler to use.
9 # The compiler flags to use.
19 # -fvisibility=hidden compiler option and uses .private_extern annotations in

Completed in 833 milliseconds

<<11121314151617181920>>