HomeSort by relevance Sort by last modified time
    Searched defs:compile (Results 101 - 125 of 589) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
invocation.cpp 95 compile(const std::string &source, const std::string &name, function in namespace:__anon27522
130 // Compile the code
259 llvm::Module *mod = compile(source, "cl_input", triple);
  /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/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)
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"
222 _pattern_type = type(sre_compile.compile("", 0))
227 # internal: compile pattern
240 p = sre_compile.compile(pattern, flags)
249 # internal: compile replacement patter
    [all...]
  /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)
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"
222 _pattern_type = type(sre_compile.compile("", 0))
227 # internal: compile pattern
240 p = sre_compile.compile(pattern, flags)
249 # internal: compile replacement patter
    [all...]
  /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)
  /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/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 135 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 160 def compile(self, source_files, out=None, flags=[], cwd=None): member in class:CXXCompiler
190 cc_cmd, cc_stdout, cc_stderr, rc = self.compile(
229 cmd, out, err, rc = self.compile(os.devnull, out=os.devnull,
  /external/skia/infra/bots/
gen_tasks.go 80 // deriveCompileTaskName returns the name of a compile task based on the given
217 // compile generates a compile task. Returns the name of the last task in the
219 func compile(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { func
284 // All compile tasks are runnable as their own Job. Assert that the Job
578 // Compile bots.
580 deps = append(deps, compile(b, name, parts))
583 // Most remaining bots need a compile task.
589 // These bots do not need a compile task.
594 compile(b, compileTaskName, compileTaskParts
    [all...]
  /external/skia/infra/bots/recipe_modules/flavor/
api.py 75 def compile(self, target): member in class:SkiaFlavorApi
76 return self._f.compile(target)
  /external/swiftshader/third_party/LLVM/tools/lto/
LTOCodeGenerator.cpp 214 const void* LTOCodeGenerator::compile(size_t* length, std::string& errMsg) function in class:LTOCodeGenerator
220 // remove old buffer if compile() called twice
  /external/vogar/src/vogar/commands/
Jack.java 198 * to compile other files.
199 * @param files The files to compile.
202 public List<String> compile(Collection<File> files) { method in class:Jack

Completed in 464 milliseconds

1 2 3 45 6 7 8 91011>>