HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 676 - 700 of 1775) sorted by null

<<21222324252627282930>>

  /bionic/libc/arch-x86/bionic/
__bionic_clone.S 52 # We're the parent; nothing to do.
  /bionic/libc/kernel/tools/
kernel.py 7 import sys, cpp, re, os.path, string, time namespace
61 re_combined = re.compile(re_combined_str)
65 re_rel_dir = re.compile(r'^.*"([\d\w_\+\.\-/]+)".*$')
297 re_CONFIG_ = re.compile(r"^(CONFIG_\w+)=(.*)$")
update_all.py 3 import sys, cpp, kernel, glob, os, re, getopt, clean_header, subprocess namespace
  /cts/libs/deviceutil/src/android/cts/util/
ReadElf.java 176 ReadElf re = new ReadElf(new File(arg)); local
177 re.getSymbol("x");
178 re.getDynamicSymbol("x");
179 re.close();
312 // Don't bother to re-read the Section Header StrTab.
  /external/antlr/antlr-3.4/runtime/Python/
xmlrunner.py 11 import re namespace
236 got = re.sub(r'time="\d+\.\d+"', 'time="0.000"', got)
239 got = re.sub(r'(?s)<failure (.*?)>.*?</failure>', r'<failure \1>Foobar</failure>', got)
240 got = re.sub(r'(?s)<error (.*?)>.*?</error>', r'<error \1>Foobar</error>', got)
  /external/clang/utils/
token-delta.py 4 import re namespace
106 kTokenRE = re.compile(r"""([a-z_]+) '(.*)'\t(.*)\tLoc=<(.*):(.*):(.*)>""",
107 re.DOTALL | re.MULTILINE)
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugInfo.h 64 bool Find(lldb_private::RegularExpression& re, std::vector<dw_offset_t>& die_offsets) const;
  /external/lldb/test/api/multithreaded/
TestMultithreaded.py 3 import os, re, StringIO namespace
  /external/lldb/test/functionalities/expr-doesnt-deadlock/
TestExprDoesntBlock.py 6 import re namespace
  /external/lldb/test/functionalities/memory/read/
TestMemoryRead.py 6 import re namespace
  /external/lldb/test/functionalities/signal/
TestSendSignal.py 55 pid = re.match("Process (.*) stopped", output).group(1)
  /external/lldb/test/lang/c/stepping/
TestThreadStepping.py 6 import re namespace
  /external/lldb/test/lang/objc/objc-checker/
TestObjCCheckers.py 6 import re namespace
  /external/lldb/test/python_api/objc_type/
TestObjCType.py 6 import re namespace
  /external/llvm/test/MC/Mips/mips32r6/
invalid-mips1.s 25 # div has been re-encoded. See valid.s
26 # divu has been re-encoded. See valid.s
  /external/llvm/test/MC/Mips/mips64r6/
invalid-mips1.s 28 # div has been re-encoded. See valid.s
29 # divu has been re-encoded. See valid.s
  /external/markdown/markdown/extensions/
imagelinks.py 21 import re, markdown namespace
  /external/mesa3d/
common.py 6 import re namespace
  /external/regex-re2/re2/
regexp.h 343 // Caller must release return value with re->Decref().
350 // Caller must release return value with re->Decref().
384 // so in many cases you should use, e.g., Plus(re->Incref(), flags).
460 // Returns the leading string that re starts with.
461 // The returned Rune* points into a piece of re,
462 // so it must not be used after the caller calls re->Decref().
463 static Rune* LeadingString(Regexp* re, int* nrune, ParseFlags* flags);
465 // Removes the first n leading runes from the beginning of re.
466 // Edits re in place.
467 static void RemoveLeadingString(Regexp* re, int n)
    [all...]
  /external/skia/platform_tools/android/tests/expectations/
Android.mk 21 # (1) You're building debug code that depends on libskia.
26 # (2) You're building libskia in debug mode.
  /external/v8/test/mjsunit/
error-tostring-omit.js 42 var re = /...<omitted>.../; variable
48 assertTrue(re.test(e.message));
search-string-multiple.js 32 var re = new RegExp(regexp_source, flags);
33 var output = input.replace(re, MakeReplaceString);
  /external/v8/test/mjsunit/regress/
regress-603.js 32 var re = /b../; variable
34 return re('abcdefghijklm') + 'z';
regress-create-exception.js 37 var re = /2147483647/; // Equal to 0x7fffffff.
53 assertTrue(re.test(e), 'e: ' + e);
  /external/v8/tools/push-to-trunk/
test_scripts.py 502 re.sub(r"BUG=v8:(.*)$", r"(issue \1)", "BUG=v8:321"))
504 re.sub(r"BUG=(.*)$", r"(Chromium issue \1)", "BUG=321"))
642 self.assertTrue(re.search(r"patch content", patch))
712 self.assertTrue(re.search(r"#define MINOR_VERSION\s+22", version))
713 self.assertTrue(re.search(r"#define BUILD_NUMBER\s+5", version))
714 self.assertFalse(re.search(r"#define BUILD_NUMBER\s+6", version))
715 self.assertTrue(re.search(r"#define PATCH_LEVEL\s+0", version))
716 self.assertTrue(re.search(r"#define IS_CANDIDATE_VERSION\s+0", version))
809 self.assertTrue(re.search(r"^\d\d\d\d\-\d+\-\d+: Version 3\.22\.5", cl))
810 self.assertTrue(re.search(r" Log text 1 \(issue 321\).", cl)
    [all...]

Completed in 2187 milliseconds

<<21222324252627282930>>