HomeSort by relevance Sort by last modified time
    Searched refs:compile (Results 801 - 825 of 1965) sorted by null

<<31323334353637383940>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tools.py 77 compile(clean, '_test.py', 'exec')
99 compile(indented, '_test.py', 'exec')
test_strptime.py 139 found = self.time_re.compile(r"%A").match(self.locale_time.f_weekday[6])
142 compiled = self.time_re.compile(r"%a %b")
157 compiled = self.time_re.compile("%" + directive)
173 compiled_re = self.time_re.compile("\w+ %m")
186 self.assertTrue(time_re.compile("%Z").match("Tokyo (standard time)"),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
code.py 49 self.compile = CommandCompiler()
52 """Compile and run some source in the interpreter.
76 code = self.compile(source, filename, symbol)
compileall.py 1 """Module/script to byte-compile all .py files to .pyc (or .pyo) files.
23 """Byte-compile all modules in the given directory tree.
27 dir: the directory to byte-compile
64 """Byte-compile one file.
68 fullname: the file to byte-compile
101 ok = py_compile.compile(fullname, None, dfile, True)
116 """Byte-compile all module on sys.path.
163 print "arguments: zero or more file and directory names to compile; " \
172 "compile-time tracebacks and in"
197 rx = re.compile(a
    [all...]
cookielib.py 122 TIMEZONE_RE = re.compile(r"^([-+])?(\d\d?):?(\d\d)?$")
190 STRICT_DATE_RE = re.compile(
193 WEEKDAY_RE = re.compile(
195 LOOSE_HTTP_DATE_RE = re.compile(
268 ISO_DATE_RE = re.compile(
322 HEADER_TOKEN_RE = re.compile(r"^\s*([^=\s;,]+)")
323 HEADER_QUOTED_VALUE_RE = re.compile(r"^\s*=\s*\"([^\"\\]*(?:\\.[^\"\\]*)*)\"")
324 HEADER_VALUE_RE = re.compile(r"^\s*=\s*([^\s;,]*)")
325 HEADER_ESCAPE_RE = re.compile(r"\\(.)")
411 HEADER_JOIN_ESCAPE_RE = re.compile(r"([\"\\])"
    [all...]
imaplib.py 84 Continuation = re.compile(r'\+( (?P<data>.*))?')
85 Flags = re.compile(r'.*FLAGS \((?P<flags>[^\)]*)\)')
86 InternalDate = re.compile(r'.*INTERNALDATE "'
91 Literal = re.compile(r'.*{(?P<size>\d+)}$')
92 MapCRLF = re.compile(r'\r\n|\r|\n')
93 Response_code = re.compile(r'\[(?P<type>[A-Z-]+)( (?P<data>[^\]]*))?\]')
94 Untagged_response = re.compile(r'\* (?P<type>[A-Z-]+)( (?P<data>.*))?')
95 Untagged_status = re.compile(r'\* (?P<data>\d+) (?P<type>[A-Z-]+)( (?P<data2>.*))?')
149 mustquote = re.compile(r"[^\w!#$%&'*+,.:;<=>?^`|~-]")
166 # and compile tagged response matcher
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
quoprimime.py 57 hqre = re.compile(r'[^-a-zA-Z0-9!*+/ ]')
58 bqre = re.compile(r'[^ !-<>-~\t]')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tools.py 77 compile(clean, '_test.py', 'exec')
99 compile(indented, '_test.py', 'exec')
test_strptime.py 139 found = self.time_re.compile(r"%A").match(self.locale_time.f_weekday[6])
142 compiled = self.time_re.compile(r"%a %b")
157 compiled = self.time_re.compile("%" + directive)
173 compiled_re = self.time_re.compile("\w+ %m")
186 self.assertTrue(time_re.compile("%Z").match("Tokyo (standard time)"),
  /external/chromium_org/v8/src/
regexp.js 71 // Call internal function to compile the pattern.
88 // Deprecated RegExp.prototype.compile method. We behave like the constructor
97 // RegExp.prototype.compile and in the constructor, where they are
103 ['RegExp.prototype.compile', this]);
402 "compile", RegExpCompileJS
405 // The length of compile is 1 in SpiderMonkey.
406 %FunctionSetLength($RegExp.prototype.compile, 1);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cookielib.py 122 TIMEZONE_RE = re.compile(r"^([-+])?(\d\d?):?(\d\d)?$")
190 STRICT_DATE_RE = re.compile(
193 WEEKDAY_RE = re.compile(
195 LOOSE_HTTP_DATE_RE = re.compile(
268 ISO_DATE_RE = re.compile(
322 HEADER_TOKEN_RE = re.compile(r"^\s*([^=\s;,]+)")
323 HEADER_QUOTED_VALUE_RE = re.compile(r"^\s*=\s*\"([^\"\\]*(?:\\.[^\"\\]*)*)\"")
324 HEADER_VALUE_RE = re.compile(r"^\s*=\s*([^\s;,]*)")
325 HEADER_ESCAPE_RE = re.compile(r"\\(.)")
411 HEADER_JOIN_ESCAPE_RE = re.compile(r"([\"\\])"
    [all...]
imaplib.py 84 Continuation = re.compile(r'\+( (?P<data>.*))?')
85 Flags = re.compile(r'.*FLAGS \((?P<flags>[^\)]*)\)')
86 InternalDate = re.compile(r'.*INTERNALDATE "'
91 Literal = re.compile(r'.*{(?P<size>\d+)}$')
92 MapCRLF = re.compile(r'\r\n|\r|\n')
93 Response_code = re.compile(r'\[(?P<type>[A-Z-]+)( (?P<data>[^\]]*))?\]')
94 Untagged_response = re.compile(r'\* (?P<type>[A-Z-]+)( (?P<data>.*))?')
95 Untagged_status = re.compile(r'\* (?P<data>\d+) (?P<type>[A-Z-]+)( (?P<data2>.*))?')
149 mustquote = re.compile(r"[^\w!#$%&'*+,.:;<=>?^`|~-]")
166 # and compile tagged response matcher
    [all...]
  /external/chromium_org/ui/gl/
generate_bindings.py     [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 427 Pattern.compile("(\\s|(#.*$))++", Pattern.MULTILINE);
428 private static final Pattern TOKEN = Pattern.compile(
435 private static final Pattern DOUBLE_INFINITY = Pattern.compile(
438 private static final Pattern FLOAT_INFINITY = Pattern.compile(
441 private static final Pattern FLOAT_NAN = Pattern.compile(
    [all...]
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiSelector.java 131 return buildSelector(SELECTOR_TEXT_REGEX, Pattern.compile(regex));
183 return buildSelector(SELECTOR_CLASS_REGEX, Pattern.compile(regex));
235 return buildSelector(SELECTOR_DESCRIPTION_REGEX, Pattern.compile(regex));
300 return buildSelector(SELECTOR_RESOURCE_ID_REGEX, Pattern.compile(regex));
578 return buildSelector(SELECTOR_PACKAGE_NAME_REGEX, Pattern.compile(regex));
    [all...]
  /ndk/build/core/
definitions.mk     [all...]
  /external/guava/guava-tests/test/com/google/common/base/
SplitterTest.java 331 return Pattern.compile("\\.");
374 Iterable<String> letters = Splitter.on(Pattern.compile(",\\s*"))
382 Iterable<String> letters = Splitter.on(Pattern.compile(", "))
390 Iterable<String> letters = Splitter.on(Pattern.compile("[,/]\\s"))
398 Splitter.on(Pattern.compile("a*"));
408 Iterable<String> family = Splitter.on(Pattern.compile(","))
426 Splitter.on(Pattern.compile(",")).split("a,b").iterator());
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTestResultParser.java 404 Pattern timePattern = Pattern.compile(".*(\\((\\d+) ms\\))"); // eg: (XX ms)
434 Pattern numTestsPattern = Pattern.compile("Running (\\d+) test[s]? from .*");
460 Pattern timePattern = Pattern.compile(".*\\((\\d+) ms total\\)"); // eg: (XX ms total)
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
task.rb 76 full_name = ( @namespace + [ @name, 'compile' ] ).join( ':' )
80 def compile!
106 desc( "compile ANTLR grammars" )
107 task( 'compile' => target_files )
201 def compile( grammar ) method in class:ANTLR3.CompileTask.GrammarSet
381 @group.compile( self )
  /external/chromium_org/build/android/pylib/
android_commands.py 47 PEXPECT_LINE_RE = re.compile('\n([^\r]*)\r')
113 re_avd = re.compile('^[ ]+Name: ([a-zA-Z0-9_:.-]+)', re.MULTILINE)
160 re_device = re.compile('^([a-zA-Z0-9_:.-]+)\tdevice$', re.MULTILINE)
163 re_device = re.compile('^(emulator-[0-9]+)\tdevice', re.MULTILINE)
166 re_device = re.compile('^([a-zA-Z0-9_:.-]+)\toffline$', re.MULTILINE)
224 re_directory = re.compile('^%s/(?P<dir>[^:]+):$' % re.escape(path))
879 activity_started_re = re.compile('.*starting activity.*')
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest_filter_unittest.py 103 PARAM_TEST_REGEX = re.compile(r'/ParamTest')
106 TEST_CASE_REGEX = re.compile(r'^\[\-+\] \d+ tests? from (\w+(/\w+)?)')
109 TEST_REGEX = re.compile(r'^\[\s*RUN\s*\].*\.(\w+(/\w+)?)')
  /external/chromium_org/third_party/cython/src/Cython/Build/
Inline.py 171 qualified = re.compile(r'([.\w]+)[.]')
218 non_space = re.compile('[^ ]')
239 module_statement = re.compile(r'^((cdef +(extern|class))|cimport|(from .+ cimport)|(from .+ import +[*]))')
  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 28 _STRING_NAME = lazy_re.compile(r'[a-z0-9_]+\Z')
31 _CHAR_LIMIT = lazy_re.compile(r'\[CHAR-LIMIT=(\d+)\]')
34 _FORMAT_SPECIFIER = lazy_re.compile(
  /external/clang/utils/
FindSpecRefs 484 ('20.3 Compile-time rational arithmetic', '463'),
630 doxyLineRefRE = re.compile(r"<a name=\"l([0-9]+)\"></a>")
650 nameAndSpecRefRE = re.compile(r"(C99|C90|C\+\+|H\&S) ((([0-9]+)(\.[0-9]+)*|\[[^]]+\])(p[0-9]+)?)")
651 loneSpecRefRE = re.compile(r" (([0-9]+)(\.[0-9]+){2,100}(p[0-9]+)?)")
    [all...]
  /external/gtest/test/
gtest_filter_unittest.py 103 PARAM_TEST_REGEX = re.compile(r'/ParamTest')
106 TEST_CASE_REGEX = re.compile(r'^\[\-+\] \d+ tests? from (\w+(/\w+)?)')
109 TEST_REGEX = re.compile(r'^\[\s*RUN\s*\].*\.(\w+(/\w+)?)')

Completed in 1972 milliseconds

<<31323334353637383940>>