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

<<71727374757677787980>>

  /build/make/core/
soong_java_prebuilt.mk 101 # Use pattern rule - we may have multiple built odex files.
  /compatibility/cdd/9_security-model/
9_9_full-disk-encryption.md 49 (eg. passcode, pin, pattern or fingerprint) and the `ACTION_USER_UNLOCKED`
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
BaseSensorTestActivity.java 415 * Makes the device vibrate following the given pattern.
418 protected void vibrate(long[] pattern) {
420 vibrator.vibrate(pattern, -1);
  /cts/tests/framework/base/windowmanager/src/android/server/wm/
CrossAppDragAndDropTests.java 51 import java.util.regex.Pattern;
70 // Regex pattern to match adb shell am stack list output of the form:
266 final Pattern pattern = Pattern.compile(String.format(TASK_REGEX_PATTERN_STRING, name)); local
276 if (pattern.matcher(truncatedLine).find()) {
  /development/testrunner/
runtest.py 89 pattern = r'' + out_base_name + r'\/target\/product\/\w+\/(.+)$'
90 self._re_make_install_path = re.compile(pattern)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
shutil.py 140 for pattern in patterns:
141 ignored_names.extend(fnmatch.filter(names, pattern))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
fixer_util.py 221 for pattern, parent in zip(patterns, attr_chain(node, "parent")):
223 if pattern.match(parent, results) and results["node"] is node:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shutil.py 137 for pattern in patterns:
138 ignored_names.extend(fnmatch.filter(names, pattern))
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
ANTLR3.java 460 Pattern p = Pattern.compile("error\\([0-9]+\\):");
650 Pattern p = Pattern.compile("error\\([0-9]+\\):");
748 private String[] splitRightHandSide(String fileNames, String pattern) {
749 String[] names = fileNames.split(pattern);
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FileHandlerTest.java 93 props.put("java.util.logging.FileHandler.pattern", "%t/log/java%u.test");
405 props.put("java.util.logging.FileHandler.pattern", "");
428 // always parse special pattern
637 public MockFileHandler(String pattern) throws IOException {
638 super(pattern);
  /external/autotest/client/cros/power/
power_suspend.py 528 for board, pattern in sys_power.FirmwareError.WHITELIST:
530 re.search(pattern, msg)):
  /external/autotest/docs/
test-that.md 16 pattern]
  /external/dng_sdk/source/
dng_image_writer.h 516 const uint8 *pattern)
522 , fPattern (pattern)
  /external/google-breakpad/src/testing/gtest/src/
gtest-internal-inl.h 385 // Returns true iff the wildcard pattern matches the string. The
386 // first ':' or '\0' character in pattern marks the end of it.
390 static bool PatternMatchesString(const char *pattern, const char *str);
    [all...]
  /external/googletest/googletest/src/
gtest-internal-inl.h 387 // Returns true iff the wildcard pattern matches the string. The
388 // first ':' or '\0' character in pattern marks the end of it.
392 static bool PatternMatchesString(const char *pattern, const char *str);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/number/
NumberPropertyMapper.java 46 * Convenience method to create a NumberFormatter directly from a pattern string. Something like this could become
49 public static UnlocalizedNumberFormatter create(String pattern, DecimalFormatSymbols symbols) {
50 DecimalFormatProperties properties = PatternStringParser.parseToProperties(pattern);
346 // There are two ways to set affixes in DecimalFormat: via the pattern string (applyPattern), and via the
350 // 2) Otherwise, follows UTS 35 rules based on the pattern string.
354 // to know whether the origin for a string was the override or the pattern, we have to say that we always
361 // [o/p] => o for escaped custom override string, p for pattern string
395 // Important: We prepend the "-" to the pattern, not the override!
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
HolidayCalendarDemo.java 334 final String pattern = DateTimePatternGenerator. local
336 SimpleDateFormat f = new SimpleDateFormat(pattern,
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
NumberPropertyMapper.java 45 * Convenience method to create a NumberFormatter directly from a pattern string. Something like this could become
48 public static UnlocalizedNumberFormatter create(String pattern, DecimalFormatSymbols symbols) {
49 DecimalFormatProperties properties = PatternStringParser.parseToProperties(pattern);
345 // There are two ways to set affixes in DecimalFormat: via the pattern string (applyPattern), and via the
349 // 2) Otherwise, follows UTS 35 rules based on the pattern string.
353 // to know whether the origin for a string was the override or the pattern, we have to say that we always
360 // [o/p] => o for escaped custom override string, p for pattern string
394 // Important: We prepend the "-" to the pattern, not the override!
  /external/libavc/common/arm/
ih264_iquant_itrans_recon_dc_a9.s 46 @ * for dc input pattern only, i.e. only the (0,0) element of the input 4x4 block is
176 @ * for dc input pattern only, i.e. only the (0,0) element of the input 8x8 block is
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
PhoneNumberMatcher.java 31 import java.util.regex.Pattern;
45 * The phone number pattern used by {@link #find}, similar to
49 * pattern.
59 private static final Pattern PATTERN;
67 private static final Pattern PUB_PAGES = Pattern.compile("\\d{1,5}-+\\d{1,5}\\s{0,4}\\(\\d{1,4}");
73 private static final Pattern SLASH_SEPARATED_DATES =
74 Pattern.compile("(?:(?:[0-3]?\\d/[01]?\\d)|(?:[01]?\\d/[0-3]?\\d))/(?:[12]\\d)?\\d{2}");
80 private static final Pattern TIME_STAMPS
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-internal-inl.h 387 // Returns true iff the wildcard pattern matches the string. The
388 // first ':' or '\0' character in pattern marks the end of it.
392 static bool PatternMatchesString(const char *pattern, const char *str);
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-internal-inl.h 381 // Returns true iff the wildcard pattern matches the string. The
382 // first ':' or '\0' character in pattern marks the end of it.
386 static bool PatternMatchesString(const char *pattern, const char *str);
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-internal-inl.h 386 // Returns true iff the wildcard pattern matches the string. The
387 // first ':' or '\0' character in pattern marks the end of it.
391 static bool PatternMatchesString(const char *pattern, const char *str);
    [all...]
  /external/pcre/dist2/src/
pcre2grep.c 6 via the PCRE2 updated API to do its pattern matching. On Unix-like, Windows,
270 /* Structure for pattern and its compiled form; used for matching patterns and
290 /* Structure holding the two variables that describe a pattern chain. A pointer
362 { OP_PATLIST, 'e', &match_patdata, "regex(p)=pattern", "specify pattern (may be used more than once)" },
391 { OP_PATLIST, N_EXCLUDE,&exclude_patdata, "exclude=pattern","exclude matching files when recursing" },
392 { OP_PATLIST, N_INCLUDE,&include_patdata, "include=pattern","include matching files when recursing" },
393 { OP_PATLIST, N_EXCLUDE_DIR,&exclude_dir_patdata, "exclude-dir=pattern","exclude matching directories when recursing" },
394 { OP_PATLIST, N_INCLUDE_DIR,&include_dir_patdata, "include-dir=pattern","include matching directories when recursing" },
491 s pattern string to ad
729 char *pattern; local
    [all...]
  /external/pdfium/xfa/fxgraphics/
cxfa_graphics.cpp 257 case CXFA_GEColor::Pattern:
271 CXFA_GEPattern* pattern = m_info.fillColor.GetPattern();
299 SetDIBitsWithMatrix(bmp, pattern->m_matrix);

Completed in 1813 milliseconds

<<71727374757677787980>>