HomeSort by relevance Sort by last modified time
    Searched refs:pattern (Results 401 - 425 of 4320) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bufio.py 42 def drive_one(self, pattern):
44 # Repeat string 'pattern' as often as needed to reach total length
49 q, r = divmod(length, len(pattern))
50 teststring = pattern * q + pattern[:r]
57 # A pattern with prime length, to avoid simple relationships with
  /external/curl/lib/
wildcard.h 49 char *pattern; /* wildcard pattern */ member in struct:WildcardData
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliterationRule.java 19 * <p>A rule consists of an input pattern and an output string. When
20 * the input pattern is matched, the output string is emitted. The
21 * input pattern consists of zero or more characters which are matched
32 * input pattern, indicated by an offset and limit. The segment may
36 * the input pattern) to be copied to the output string. The range of
49 // TODO Eliminate the pattern and keyLength data members. They
52 // methods and pattern/keyLength can be isolated into a separate
85 private String pattern; field in class:TransliterationRule
88 * An array of matcher objects corresponding to the input pattern
99 * Substring [0,anteContextLength) of pattern is the anteContext
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
ElapsedTimer.java 27 * Advanced: { ElapsedTimer et = new ElapsedTimer("Thing2's time: {0}"); // messageformat pattern
71 public ElapsedTimer(String pattern) {
72 myMsgFormat = new MessageFormat(pattern);
75 public ElapsedTimer(String pattern, NumberFormat aNumFmt) {
76 myMsgFormat = new MessageFormat(pattern);
  /external/icu/icu4c/source/test/intltest/
ssearch.h 44 virtual int32_t monkeyTestCase(UCollator *coll, const UnicodeString &testCase, const UnicodeString &pattern, const UnicodeString &altPattern,
  /external/icu/icu4c/source/test/perf/strsrchperf/
strsrchperf.h 39 StringSearchPerfFunction(StrSrchFn func, UStringSearch* search, const UChar* source,int32_t sourceLen, const UChar* pattern, int32_t patternLen) {
43 pttrn = pattern;
66 void ICUForwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pattern, int32_t patternLen, UErrorCode* status) {
75 void ICUBackwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pattern, int32_t patternLen, UErrorCode* status) {
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliterationRule.java 18 * <p>A rule consists of an input pattern and an output string. When
19 * the input pattern is matched, the output string is emitted. The
20 * input pattern consists of zero or more characters which are matched
31 * input pattern, indicated by an offset and limit. The segment may
35 * the input pattern) to be copied to the output string. The range of
48 // TODO Eliminate the pattern and keyLength data members. They
51 // methods and pattern/keyLength can be isolated into a separate
84 private String pattern; field in class:TransliterationRule
87 * An array of matcher objects corresponding to the input pattern
98 * Substring [0,anteContextLength) of pattern is the anteContext
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
ElapsedTimer.java 25 * Advanced: { ElapsedTimer et = new ElapsedTimer("Thing2's time: {0}"); // messageformat pattern
68 public ElapsedTimer(String pattern) {
69 myMsgFormat = new MessageFormat(pattern);
72 public ElapsedTimer(String pattern, NumberFormat aNumFmt) {
73 myMsgFormat = new MessageFormat(pattern);
  /external/iptables/include/linux/netfilter/
xt_string.h 18 char pattern[XT_STRING_MAX_PATTERN_SIZE]; member in struct:xt_string_info
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_string.h 19 char pattern[XT_STRING_MAX_PATTERN_SIZE]; member in struct:xt_string_info
  /external/python/cpython2/Lib/
glob.py 19 """Return a list of paths matching a pathname pattern.
21 The pattern may contain simple shell-style wildcards a la
30 """Return an iterator which yields the paths matching a pathname pattern.
32 The pattern may contain simple shell-style wildcards a la
68 # They return a list of basenames. `glob1` accepts a pattern while `glob0`
71 def glob1(dirname, pattern):
74 if isinstance(pattern, _unicode) and not isinstance(dirname, unicode):
81 if pattern[0] != '.':
83 return fnmatch.filter(names, pattern)
  /external/python/cpython2/Lib/test/
test_bufio.py 42 def drive_one(self, pattern):
44 # Repeat string 'pattern' as often as needed to reach total length
49 q, r = divmod(length, len(pattern))
50 teststring = pattern * q + pattern[:r]
57 # A pattern with prime length, to avoid simple relationships with
  /external/python/cpython3/Lib/test/
test_bufio.py 42 def drive_one(self, pattern):
44 # Repeat string 'pattern' as often as needed to reach total length
49 q, r = divmod(length, len(pattern))
50 teststring = pattern * q + pattern[:r]
57 # A pattern with prime length, to avoid simple relationships with
  /external/skia/infra/bots/recipe_modules/isolate/resources/
find_isolated_tests.py 69 pattern = os.path.join(options.build_dir, '*.isolated.gen.json')
70 for filepath in sorted(glob.glob(pattern)):
74 pattern = os.path.join(options.build_dir, '*.isolated')
75 for filepath in sorted(glob.glob(pattern)):
  /external/skia/src/ports/
SkFontConfigInterface_direct.h 33 bool isValidPattern(FcPattern* pattern);
  /external/skia/src/utils/win/
SkDWrite.h 84 explicit DWriteStyle(const SkFontStyle& pattern) {
85 fWeight = (DWRITE_FONT_WEIGHT)pattern.weight();
86 fWidth = (DWRITE_FONT_STRETCH)pattern.width();
87 switch (pattern.slant()) {
  /external/skqp/infra/bots/recipe_modules/isolate/resources/
find_isolated_tests.py 69 pattern = os.path.join(options.build_dir, '*.isolated.gen.json')
70 for filepath in sorted(glob.glob(pattern)):
74 pattern = os.path.join(options.build_dir, '*.isolated')
75 for filepath in sorted(glob.glob(pattern)):
  /external/skqp/src/ports/
SkFontConfigInterface_direct.h 33 bool isValidPattern(FcPattern* pattern);
  /external/skqp/src/utils/win/
SkDWrite.h 84 explicit DWriteStyle(const SkFontStyle& pattern) {
85 fWeight = (DWRITE_FONT_WEIGHT)pattern.weight();
86 fWidth = (DWRITE_FONT_STRETCH)pattern.width();
87 switch (pattern.slant()) {
  /external/strace/tests/
nlattr_mdba_router_port.c 94 static char pattern[4096]; local
95 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
100 MDBA_ROUTER_PORT, pattern, ifindex,
qual_syscall.test 16 local pattern
17 pattern="$1"; shift
19 LC_ALL=C grep -x "$pattern" "$LOG" > /dev/null || {
21 'Failed patterns of expected output:' "$pattern"
  /external/strace/tests-m32/
nlattr_mdba_router_port.c 94 static char pattern[4096]; local
95 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
100 MDBA_ROUTER_PORT, pattern, ifindex,
qual_syscall.test 16 local pattern
17 pattern="$1"; shift
19 LC_ALL=C grep -x "$pattern" "$LOG" > /dev/null || {
21 'Failed patterns of expected output:' "$pattern"
  /external/strace/tests-mx32/
nlattr_mdba_router_port.c 94 static char pattern[4096]; local
95 fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1);
100 MDBA_ROUTER_PORT, pattern, ifindex,
qual_syscall.test 16 local pattern
17 pattern="$1"; shift
19 LC_ALL=C grep -x "$pattern" "$LOG" > /dev/null || {
21 'Failed patterns of expected output:' "$pattern"

Completed in 1469 milliseconds

<<11121314151617181920>>