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

<<31323334353637383940>>

  /prebuilts/misc/common/swig/include/2.0.11/python/
pythonkw.swg 58 PYTHONBN(compile);
  /prebuilts/misc/common/swig/include/2.0.11/uffi/
uffi.swg 30 (eval-when (compile eval)
84 `(eval-when (compile load eval)
89 `(eval-when (compile load eval)
96 `(eval-when (compile load eval)
  /prebuilts/python/darwin-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/darwin-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/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 62 // Call internal function to compile the pattern.
79 // Deprecated RegExp.prototype.compile method. We behave like the constructor
88 // RegExp.prototype.compile and in the constructor, where they are
94 ['RegExp.prototype.compile', this]);
391 "compile", RegExpCompileJS
394 // The length of compile is 1 in SpiderMonkey.
395 %FunctionSetLength($RegExp.prototype.compile, 1);
  /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/testing/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 46 PEXPECT_LINE_RE = re.compile('\n([^\r]*)\r')
112 re_avd = re.compile('^[ ]+Name: ([a-zA-Z0-9_:.-]+)', re.MULTILINE)
159 re_device = re.compile('^([a-zA-Z0-9_:.-]+)\tdevice$', re.MULTILINE)
162 re_device = re.compile('^(emulator-[0-9]+)\tdevice', re.MULTILINE)
165 re_device = re.compile('^([a-zA-Z0-9_:.-]+)\toffline$', re.MULTILINE)
223 re_directory = re.compile('^%s/(?P<dir>[^:]+):$' % re.escape(path))
889 activity_started_re = re.compile('.*starting activity.*')
    [all...]

Completed in 1144 milliseconds

<<31323334353637383940>>