HomeSort by relevance Sort by last modified time
    Searched refs:compile (Results 1001 - 1025 of 1905) sorted by null

<<41424344454647484950>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib.py     [all...]
ConfigParser.py 441 SECTCRE = re.compile(
446 OPTCRE = re.compile(
454 OPTCRE_NV = re.compile(
676 _KEYCRE = re.compile(r"%\(([^)]*)\)s|.")
694 _interpvar_re = re.compile(r"%\(([^)]+)\)s")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib.py     [all...]
ConfigParser.py 441 SECTCRE = re.compile(
446 OPTCRE = re.compile(
454 OPTCRE_NV = re.compile(
676 _KEYCRE = re.compile(r"%\(([^)]*)\)s|.")
694 _interpvar_re = re.compile(r"%\(([^)]+)\)s")
  /ndk/build/core/
build-binary.mk 427 $(call compile-cpp-source,$(LOCAL_PCH),$(LOCAL_BUILT_PCH).gch)
446 $(foreach src,$(filter %.c,$(LOCAL_SRC_FILES)), $(call compile-c-source,$(src),$(call get-object-name,$(src))))
447 $(foreach src,$(filter %.S %.s,$(LOCAL_SRC_FILES)), $(call compile-s-source,$(src),$(call get-object-name,$(src))))
449 $(call compile-cpp-source,$(src),$(call get-object-name,$(src)))\
453 $(call compile-rs-source,$(src),$(call get-rs-scriptc-name,$(src)),$(call get-rs-bc-name,$(src)),$(call get-rs-so-name,$(src)),$(call get-object-name,$(src)),$(RS_COMPAT))\
457 $(foreach src,$(filter %.asm,$(LOCAL_SRC_FILES)), $(call compile-asm-source,$(src),$(call get-object-name,$(src))))
461 # The compile-xxx-source calls updated LOCAL_OBJECTS and LOCAL_DEPENDENCY_DIRS
  /external/chromium_org/third_party/ply/
lex.py 58 _is_identifier = re.compile(r'^[a-zA-Z0-9_]+$')
129 self.lexreflags = 0 # Optional re compile flags
239 titem.append((re.compile(lre[i][0],lextab._lexreflags | re.VERBOSE),_names_to_funcs(lre[i][1],fdict)))
486 lexre = re.compile(regex,re.VERBOSE | reflags)
756 c = re.compile("(?P<%s>%s)" % (fname,f.__doc__), re.VERBOSE | self.reflags)
781 c = re.compile("(?P<%s>%s)" % (name,r),re.VERBOSE | self.reflags)
    [all...]
  /external/chromium_org/v8/tools/
ll_prof.py 326 _SNAPSHOT_CODE_NAME_RE = re.compile(
692 OBJDUMP_SECTION_HEADER_RE = re.compile(
694 OBJDUMP_SYMBOL_LINE_RE = re.compile(
696 OBJDUMP_DYNAMIC_SYMBOLS_START_RE = re.compile(
698 OBJDUMP_SKIP_RE = re.compile(
701 PERF_KERNEL_ALLSYMS_RE = re.compile(
703 KERNEL_ALLSYMS_LINE_RE = re.compile(
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
_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...]
_g_l_y_f.py 61 def compile(self, ttFont): member in class:table__g_l_y_f
70 glyphData = glyph.compile(self, recalcBBoxes)
218 data = self.compile(glyfTable, recalcBBoxes)
237 def compile(self, glyfTable, recalcBBoxes=True): member in class:Glyph
471 data = data + compo.compile(more, haveInstructions, glyfTable)
853 def compile(self, more, haveInstructions, glyfTable): member in class:GlyphComponent
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java 109 protected boolean compile(String fileName) { method in class:BaseTest
118 //System.out.println("compile: "+cmdLine);
333 ok = compile(parserName+".java");
336 ok = compile(lexerName+".java");
340 boolean ok = compile(parserName+".java");
428 compile("Test.java");
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
pep8.py 110 INDENT_REGEX = re.compile(r'([ \t]*)')
111 RAISE_COMMA_REGEX = re.compile(r'raise\s+\w+\s*(,)')
112 SELFTEST_REGEX = re.compile(r'(Okay|[EW]\d{3}):\s(.*)')
113 ERRORCODE_REGEX = re.compile(r'[EW]\d{3}')
114 E301NOT_REGEX = re.compile(r'class |def |u?r?["\']')
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 593 Pattern.compile("(\\s|(#.*$))++", Pattern.MULTILINE);
594 private static final Pattern TOKEN = Pattern.compile(
601 private static final Pattern DOUBLE_INFINITY = Pattern.compile(
604 private static final Pattern FLOAT_INFINITY = Pattern.compile(
607 private static final Pattern FLOAT_NAN = Pattern.compile(
    [all...]
  /external/doclava/src/com/google/doclava/
PageMetadata.java 72 Pattern.compile("\\{@.*?[\\s\\.\\#]([A-Za-z\\(\\)\\d_]+)(?=\u007D)\u007D");
189 XPathExpression ItempropDescExpr = xpath.compile("/descendant-or-self::*"
200 XPathExpression FirstParaExpr = xpath.compile("//p[not(../../../"
226 XPathExpression ItempropImageExpr = xpath.compile("//*[@itemprop='image']/@src");
233 XPathExpression FirstImgExpr = xpath.compile("//img/@src");
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 812 private static final Pattern URL_PATTERN = Pattern.compile(
871 private static final Pattern URL_PATTERN = Pattern.compile(
957 private static final Pattern URL_PATTERN = Pattern.compile(
1021 private static final Pattern URL_PATTERN = Pattern.compile(
1023 private static final Pattern GROUPING_PATTERN = Pattern.compile(
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/
handlebars-1.0.0.beta.6.js 780 compile: function(program, options) {
827 var result = new this.compiler().compile(program, this.options);
    [all...]
  /external/chromium_org/sync/tools/testserver/
xmppserver.py 107 _stream_re = re.compile(r'^(<stream:stream [^>]*>)\s*')
110 _empty_element_re = re.compile(r'^(<[^>]*/>)\s*')
114 _non_empty_element_re = re.compile(r'^(<([^ >]*)[^>]*>.*?</\2>)\s*')
  /external/chromium_org/third_party/closure_linter/closure_linter/
javascriptlintrules.py 111 regex = re.compile('^this\.[a-zA-Z_]+$')
536 re.compile('goog\.require\(.+\);?\s*$'),
537 re.compile('goog\.provide\(.+\);?\s*$')
  /external/chromium_org/third_party/simplejson/
encoder.py 16 ESCAPE = re.compile(ur'[\x00-\x1f\\"\b\f\n\r\t\u2028\u2029]')
17 ESCAPE_ASCII = re.compile(r'([\\"]|[^\ -~])')
18 HAS_UTF8 = re.compile(r'[\x80-\xff]')
  /external/chromium_org/tools/
bisect-perf-regression.py     [all...]
  /external/chromium_org/v8/test/mjsunit/
regexp.js 275 re.compile();
277 re.compile(void 0);
431 // Test that compile works on modified objects
439 re.compile("ro+", "gim");
452 re.compile("ra+", "i");
469 re.compile("ri+", "gm");
  /external/lldb/examples/python/
symbolication.py 147 sect_info_regex = re.compile('(?P<name>[^=]+)=(?P<range>.*)')
148 addr_regex = re.compile('^\s*(?P<start>0x[0-9A-Fa-f]+)\s*$')
149 range_regex = re.compile('^\s*(?P<start>0x[0-9A-Fa-f]+)\s*(?P<op>[-+])\s*(?P<end>0x[0-9A-Fa-f]+)\s*$')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_inspect.py 279 co = compile("None", fn, "exec")
296 inspect.getmodule(compile('a=10','','single'))
310 exec compile(source, fn, 'single') in ns
400 co = compile(lines[0], "_dynamically_created_file", "exec")
409 co = compile('x=1', fname, "exec")
638 is_tuplename = re.compile(r'^\.\d+$').match
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_inspect.py 279 co = compile("None", fn, "exec")
296 inspect.getmodule(compile('a=10','','single'))
310 exec compile(source, fn, 'single') in ns
400 co = compile(lines[0], "_dynamically_created_file", "exec")
409 co = compile('x=1', fname, "exec")
638 is_tuplename = re.compile(r'^\.\d+$').match
    [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-2.0/1.5/
gmaven-runtime-2.0-1.5.jar 
  /build/target/board/generic/
BoardConfig.mk 3 # Product-specific compile-time definitions.

Completed in 1186 milliseconds

<<41424344454647484950>>