HomeSort by relevance Sort by last modified time
    Searched defs:compile (Results 126 - 150 of 789) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/skia/infra/bots/recipe_modules/flavor/
gn_android_flavor.py 346 def compile(self, unused_target): function
  /external/skqp/infra/bots/recipe_modules/flavor/
gn_android_flavor.py 346 def compile(self, unused_target): function
  /external/swiftshader/src/OpenGL/compiler/
Compiler.cpp 101 bool TCompiler::compile(const char* const shaderStrings[], function in class:TCompiler
126 // We preserve symbols at the built-in level from compile-to-compile.
  /external/tensorflow/tensorflow/compiler/xla/tools/
dumped_computation_to_text.cc 38 void RealMain(tensorflow::gtl::ArraySlice<char*> args, bool compile) {
54 if (compile) {
96 bool compile = false; local
98 {"compile", &compile,
99 "If true, compile the computation using the default client before "
111 xla::tools::RealMain(args, compile);
  /external/vogar/src/vogar/
ClassFileIndex.java 64 JAR_PATTERNS.add(Pattern.compile(patternString));
71 FAILURE_PATTERNS.add(Pattern.compile(patternString, Pattern.DOTALL));
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_strptime.py 16 from re import compile as re_compile
263 def compile(self, format): member in class:TimeRE
308 format_regex = _TimeRE_cache.compile(format)
  /prebuilts/gdb/linux-x86/lib/python2.7/
_strptime.py 16 from re import compile as re_compile
263 def compile(self, format): member in class:TimeRE
308 format_regex = _TimeRE_cache.compile(format)
  /prebuilts/go/darwin-x86/src/regexp/syntax/
compile.go 78 // Compile compiles the regexp into a program to be executed.
80 func Compile(re *Regexp) (*Prog, error) {
83 f := c.compile(re)
98 func (c *compiler) compile(re *Regexp) frag { func
138 sub := c.compile(re.Sub[0])
142 return c.star(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
144 return c.plus(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
146 return c.quest(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
154 f = c.compile(sub)
156 f = c.cat(f, c.compile(sub)
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
compile.go 78 // Compile compiles the regexp into a program to be executed.
80 func Compile(re *Regexp) (*Prog, error) {
83 f := c.compile(re)
98 func (c *compiler) compile(re *Regexp) frag { func
138 sub := c.compile(re.Sub[0])
142 return c.star(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
144 return c.plus(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
146 return c.quest(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
154 f = c.compile(sub)
156 f = c.cat(f, c.compile(sub)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_strptime.py 16 from re import compile as re_compile
263 def compile(self, format): member in class:TimeRE
308 format_regex = _TimeRE_cache.compile(format)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_strptime.py 16 from re import compile as re_compile
263 def compile(self, format): member in class:TimeRE
308 format_regex = _TimeRE_cache.compile(format)
  /test/suite_harness/tools/dex-tools/test/dex/reader/util/
JavaSourceToDexUtil.java 93 CompilationTask compile = javac.getTask(null, xfm, diacol, Arrays local
95 boolean success = compile.call();
  /development/tools/idegen/src/
Configuration.java 259 patterns.add(Pattern.compile(trimmed));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
re.py 85 compile Compile a pattern into a RegexObject.
114 "compile", "purge", "template", "escape", "I", "L", "M", "S", "X",
192 def compile(pattern, flags=0): function
193 "Compile a regular expression pattern, returning a pattern object."
202 "Compile a template pattern, returning a pattern object"
226 _pattern_type = type(sre_compile.compile("", 0))
231 # internal: compile pattern
249 p = sre_compile.compile(pattern, flags)
265 # internal: compile replacement pattern
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
re.py 85 compile Compile a pattern into a RegexObject.
110 "compile", "purge", "template", "escape", "I", "L", "M", "S", "X",
188 def compile(pattern, flags=0): function
189 "Compile a regular expression pattern, returning a pattern object."
198 "Compile a template pattern, returning a pattern object"
224 _pattern_type = type(sre_compile.compile("", 0))
229 # internal: compile pattern
242 p = sre_compile.compile(pattern, flags)
251 # internal: compile replacement pattern
    [all...]
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
GASMifierTest.java 86 generatorClassData = COMPILER.compile(n, generated);
147 public byte[] compile(String name, String source) throws Exception { method in class:GASMifierTest.Compiler
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
functional.rb 74 # Compile and load inline grammars on demand when their constant name
77 # for all grammars to compile, and then discovering there's a big dumb
82 compile( g )
133 def compile( grammar, options = {} ) method in class:ANTLR3.Test.GrammarManager
134 grammar.compile( compile_options.merge( options ) )
183 self.class.compile( grammar, options )
  /external/emma/core/java12/com/vladium/util/
WCMatcher.java 21 public static WCMatcher compile (final String pattern) method in class:WCMatcher
  /external/fonttools/Lib/fontTools/ttLib/tables/
E_B_L_C_.py 114 def compile(self, ttFont): member in class:table_E_B_L_C_
176 data = indexSubTable.compile(ttFont)
343 # should call it to compile the indexSubHeader and then continue compiling
345 def compile(self, ttFont): member in class:EblcIndexSubTable
389 # size is not recalculated on compile. Default behavior is to do nothing.
443 def compile(self, ttFont): member in class:_createOffsetArrayIndexSubTableMixin.OffsetArrayIndexSubTableMixin
476 dataList = [EblcIndexSubTable.compile(self, ttFont)]
529 def compile(self, ttFont): member in class:eblc_index_sub_table_2
535 dataList = [EblcIndexSubTable.compile(self, ttFont)]
560 def compile(self, ttFont) member in class:eblc_index_sub_table_4
598 def compile(self, ttFont): member in class:eblc_index_sub_table_5
    [all...]
_c_m_a_p.py 56 def compile(self, ttFont): member in class:table__c_m_a_p
62 seen = {} # Some tables are the same object reference. Don't compile them twice.
63 done = {} # Some tables are different objects, but compile to the same data chunk
68 chunk = table.compile(ttFont)
195 def compile(self, ttFont): member in class:cmap_format_0
381 def compile(self, ttFont): member in class:cmap_format_2
700 def compile(self, ttFont): member in class:cmap_format_4
844 def compile(self, ttFont): member in class:cmap_format_6
928 def compile(self, ttFont): member in class:cmap_format_12_or_13
1167 def compile(self, ttFont): member in class:cmap_format_14
1262 def compile(self, ttFont): member in class:cmap_format_unknown
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-map.cc 137 hb_ot_map_builder_t::compile (hb_ot_map_t &m, function in class:hb_ot_map_builder_t
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateCompiler.java 72 return compile(templateFactory.find(templateName, resourceLoader, escapeMode), templateName,
78 return compile(templateFactory.createTemp(content, escapeMode), name, escapeMode);
82 * Compile AST into Java class.
88 private Template compile(TemplateSyntaxTree ast, String templateName, EscapeMode mode) { method in class:TemplateCompiler
91 String errorMessage = "Could not compile template: " + templateName;
  /external/libcxx/utils/libcxx/
compiler.py 161 def compile(self, source_files, out=None, flags=[], cwd=None): member in class:CXXCompiler
191 cc_cmd, cc_stdout, cc_stderr, rc = self.compile(
230 cmd, out, err, rc = self.compile(os.devnull, out=os.devnull,
  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
fd2_program.c 85 compile(struct fd_program_stateobj *prog, struct fd2_shader_stateobj *so) function
108 debug_error("compile failed!");
245 /* if vertex or frag shader is dirty, we may need to recompile. Compile
251 compile(prog, prog->fp);
254 compile(prog, prog->vp);
  /external/python/cpython2/Lib/
re.py 85 compile Compile a pattern into a RegexObject.
114 "compile", "purge", "template", "escape", "I", "L", "M", "S", "X",
192 def compile(pattern, flags=0): function
193 "Compile a regular expression pattern, returning a pattern object."
202 "Compile a template pattern, returning a pattern object"
226 _pattern_type = type(sre_compile.compile("", 0))
231 # internal: compile pattern
249 p = sre_compile.compile(pattern, flags)
265 # internal: compile replacement patter
    [all...]

Completed in 978 milliseconds

1 2 3 4 56 7 8 91011>>