HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 2001 - 2025 of 3066) sorted by null

<<81828384858687888990>>

  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 283 // It's a problem if we try to save a non-existent or invalid model or if we're
694 * @param originalModel The original event that we're updating
720 * should not be called for the first instance. All we're really interested in is
844 ReminderEntry re = reminders.get(i); local
888 ReminderEntry re = reminders.get(i); local
    [all...]
  /build/core/
cleanspec.mk 46 # If you need to re-do something that's already mentioned, just copy
  /build/tools/releasetools/
check_target_files_signatures 49 import re namespace
213 m = re.search(r'A: (\S*?)(?:\(0x[0-9a-f]+\))?="(.*?)" \(Raw', line)
289 # during development, then manually re-signed after
check_target_files_signatures.py 49 import re namespace
213 m = re.search(r'A: (\S*?)(?:\(0x[0-9a-f]+\))?="(.*?)" \(Raw', line)
289 # during development, then manually re-signed after
  /dalvik/dx/
Android.mk 9 # This tool is prebuilt if we're doing an app-only build.
  /external/aac/libFDK/include/
common_fix.h 355 FIXP_SGL re; member in struct:__anon6301
365 FIXP_DBL re; member in struct:__anon6302
  /external/aac/libFDK/src/
dct.cpp 155 xr = fMultDiv2(pDat[M], sin_twiddle_L64[64/2].v.re );/* cos((PI/(2*L))*M); */
261 pDat[M] = fMult(((tmp[0]>>1)-(tmp[1]>>1)), sin_twiddle_L64[64/2].v.re);/* cos((PI/(2*L))*M); */
  /external/antlr/antlr-3.4/runtime/Python/tests/
t053hetero.py 29 def recover(self, input, re):
56 def recover(self, input, re):
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
CompositeGrammar.java 339 catch (RecognitionException re) {
341 re);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTParser.stg 45 retval.Tree = (<ASTLabelType>)adaptor.ErrorNode(input, retval.Start, input.LT(-1), re);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTParser.stg 46 retval.Tree = (<ASTLabelType>)adaptor.ErrorNode(input, retval.Start, input.LT(-1), re);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTParser.stg 42 retval.tree = (<ASTLabelType> *)[treeAdaptor errorNode:input From:retval.start To:[input LT:-1] Exception:re];
  /external/autotest/client/tests/kvm/tests/
qemu_img.py 1 import re, os, logging, commands namespace
189 matches = re.findall(sub_info, output)
  /external/autotest/database/
migrate.py 3 import os, sys, re, tempfile namespace
204 if re.match(r'^\d\d\d_.*\.py$', filename)]
386 # don't do anything if we're already at the latest version
  /external/autotest/server/cros/servo/
servo.py 10 import logging, re, time, xmlrpclib namespace
134 # Maximum number of times to re-read power button on release.
454 return re.sub('^.*>:', '', xmlexc.faultString)
590 # We're about to start plugging/unplugging the USB key. We
  /external/autotest/site_utils/chromeos_proxy/
swarming_bots.py 43 import re namespace
338 m = re.match(ID_RANGE_FMT, id_range)
  /external/chromium-trace/catapult/devil/devil/android/
device_utils.py 18 import re namespace
103 _CURRENT_FOCUS_CRASH_RE = re.compile(
106 _GETPROP_RE = re.compile(r'\[(.*?)\]: \[(.*?)\]')
107 _IPV4_ADDRESS_RE = re.compile(r'([0-9]{1,3}\.){3}[0-9]{1,3}\:[0-9]{4,5}')
185 _LAUNCHER_FOCUSED_RE = re.compile(
187 _VALID_SHELL_VARIABLE = re.compile('^[a-zA-Z_][a-zA-Z0-9_]*$')
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
win_platform_backend.py 12 import re namespace
191 creation_date = float(re.split('[+-]', parts[-4])[0])
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
closurizednamespacesinfo.py 27 import re namespace
413 if re.match(r'^\w+(\.\w+)+$', message):
  /external/chromium-trace/catapult/third_party/coverage/coverage/
html.py 9 import re namespace
168 """Compute a hash that changes if the file needs to be re-reported."""
442 html = re.sub(r">\s+<p ", ">\n<p ", html)
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
boto_resumable_upload.py 49 import re namespace
188 m = re.search(r'bytes=(\d+)-(\d+)', range_spec)
311 # 'bytes 0-0/1' would actually mean you're sending a 1-byte file).
484 # At this point we had a re-tryable failure; see if made progress.
502 'Sleeping %3.1f seconds before re-trying',
554 while True: # Retry as long as we're making progress.
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_ls.py 20 import re namespace
386 m = re.search(find_content_length_re, stdout)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/
search.py 373 import re namespace
374 g = re.search('<html><body><h1>403 Forbidden</h1>([^<]+)<', _body)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/python-gflags/
gflags.py 393 import re namespace
486 If it is None, we assume that we're being called when attempting
640 line_regex = re.compile('([ ]*)(\t*)([^ \t]+)', re.MULTILINE)
683 # line with indent and repeat, or add a space if we're done (word
715 whitespace_only_line = re.compile('^[ \t]+$', re.M)
727 doc = re.sub('(?<=\S)\n(?=\S)', ' ', doc, re.M)
    [all...]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
etree.py 4 import re namespace
12 tag_regexp = re.compile("{([^}]*)}(.*)")

Completed in 1258 milliseconds

<<81828384858687888990>>