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

<<31323334353637383940>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_config_cmd.py 46 # simple pattern searches
47 match = cmd.search_cpp(pattern='xxx', body='// xxx')
50 match = cmd.search_cpp(pattern='_configtest', body='// xxx')
  /external/ImageMagick/MagickCore/
coder.c 517 % GetCoderInfoList() returns any coder_map that match the specified pattern.
520 % const CoderInfo **GetCoderInfoList(const char *pattern,
525 % o pattern: Specifies a pointer to a text string containing a pattern.
546 MagickExport const CoderInfo **GetCoderInfoList(const char *pattern,
561 assert(pattern != (char *) NULL);
562 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",pattern);
581 (GlobExpression(p->name,pattern,MagickFalse) != MagickFalse))
604 % GetCoderList() returns any coder_map that match the specified pattern.
608 % char **GetCoderList(const char *pattern,size_t *number_coders
    [all...]
  /external/autotest/client/bin/result_tools/
shrink_file_throttler.py 38 # Regex pattern to retrieve the original size of the file.
124 for pattern in UNSHRINKABLE_FILE_PATTERNS:
125 if re.match(pattern, info.name):
zip_file_throttler.py 87 for pattern in UNZIPPABLE_FILE_PATTERNS:
88 if re.match(pattern, info.name):
  /external/autotest/client/site_tests/platform_MemCheck/
platform_MemCheck.py 88 pattern = '[A-Z]*DDR([3-9]|[1-9]\d+)[A-Z]*-(?P<speed>\d+)'
97 m = re.match(pattern, max_timing)
  /external/autotest/server/site_tests/power_DarkResumeDisplay/
power_DarkResumeDisplay.py 62 pattern = 'Crtc ([0-9]+) Pipe ([A-Za-z]+) errors:\t\t([0-9a-fA-F]{8})'
63 regex = re.compile(pattern)
  /external/autotest/site_utils/admin/
clean_staged_images.py 78 pattern = '(\d+\.\d+\.\d+)'
79 match = re.search(pattern, os.path.basename(path))
  /external/autotest/site_utils/stats/
apache_error_log_metrics.py 110 for pattern, handler in MESSAGE_PATTERNS.iteritems():
111 if pattern in rest:
  /external/capstone/bindings/ocaml/
arm.ml 13 shift_type: int; (* TODO: covert this to pattern like arm_op_value? *)
  /external/chromium-trace/catapult/systrace/bin/
run_tests 27 pattern = '*_unittest.py',
  /external/dtc/
convert-dtsv0-lexer.l 53 const char *pattern;
120 if (fnmatch(guess_table[i].pattern,
  /external/icu/icu4c/source/i18n/
decimfmtimpl.h 162 const UnicodeString &pattern,
166 const UnicodeString &pattern,
273 void applyPattern(const UnicodeString &pattern, UErrorCode &status);
275 const UnicodeString &pattern, UErrorCode &status);
277 const UnicodeString &pattern, UParseError &perror, UErrorCode &status);
278 void applyLocalizedPattern(const UnicodeString &pattern, UErrorCode &status);
280 const UnicodeString &pattern, UParseError &perror, UErrorCode &status);
478 const UnicodeString &pattern,
494 // Updates from formatting pattern changes
  /external/icu/icu4c/source/test/cintltst/
udatpg_test.c 177 /* Test pattern == NULL */
181 log_err("udatpg_getSkeleton failed in illegal argument - pattern is NULL.\n");
196 /* Test pattern == NULL */
200 log_err("udatpg_getBaseSkeleton failed in illegal argument - pattern is NULL.\n");
254 UChar pattern[40], formatted[40]; local
267 /* Add a pattern */
274 /* Add a redundant pattern */
278 log_err("udatpg_addPattern() failed to find the duplicate pattern.\n");
281 /* Test pattern == NULL */
286 log_err("udatpg_addPattern failed in illegal argument - pattern is NULL.\n")
421 UChar pattern[kTestOptionsPatLenMax]; local
    [all...]
  /external/icu/icu4c/source/test/perf/usetperf/
usetperf.cpp 37 CmdPattern(const char * pattern):pat(pattern,""){
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/iuc/
Sample50_PopSort.java 59 String pattern = resourceBundle.getString("welcome"); local
60 MessageFormat fmt = new MessageFormat(pattern,defaultLocaleID);
  /external/libxml2/include/libxml/
Makefile.am 50 pattern.h \
  /external/ltp/testcases/kernel/io/ltp-aiodio/
ltp-diorh.c 61 void do_buffered_writes(int fd, int pattern)
66 memset(iobuf, pattern, WRITESIZE);
161 /* Fill the file with a known pattern so that the blocks
  /external/ltp/testcases/kernel/mem/mmapstress/
mmapstress01.c 133 unsigned pattern = 0; variable
233 pattern = seed & 0xff;
237 (void)printf("creating file <%s> with %Ld bytes, pattern %d\n",
238 filename, filesize, pattern);
240 (void)printf("creating file <%s> with %ld bytes, pattern %d\n",
241 filename, filesize, pattern);
301 *(buf + i) = (data + pattern) & 0xff;
558 != ((procno + pattern) & 0xff)) {
564 (procno + pattern) & 0xff);
571 *(paddr + i) = (procno + pattern) & 0xff
    [all...]
  /external/mesa3d/src/mesa/main/
pack.h 35 _mesa_unpack_polygon_stipple(const GLubyte *pattern, GLuint dest[32],
40 _mesa_pack_polygon_stipple(const GLuint pattern[32], GLubyte *dest,
  /external/pdfium/fxbarcode/qrcode/
BC_QRCoder.cpp 119 void CBC_QRCoder::SetMaskPattern(int32_t pattern) {
120 m_maskPattern = pattern;
  /external/python/cpython2/Lib/distutils/tests/
test_config_cmd.py 45 # simple pattern searches
46 match = cmd.search_cpp(pattern='xxx', body='/* xxx */')
49 match = cmd.search_cpp(pattern='_configtest', body='/* xxx */')
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 288 * Initialize our pattern translation
398 * Search the provided pattern and get the C standard
402 * @param pattern The pattern to search
403 * @return The modified pattern
405 protected String convertDateFormat(String pattern) {
412 for (int i = 0; i < pattern.length(); i++) {
413 char c = pattern.charAt(i);
424 inside = translateCommand(buf, pattern, i, inside);
467 * @param pattern The date/time patter
    [all...]
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
StyleData.java 8 import java.util.regex.Pattern;
56 public boolean grep(Pattern pattern) {
58 if (pattern.matcher(resName.getFullyQualifiedName()).find()) {
  /external/skia/include/ports/
SkFontMgr.h 27 virtual SkTypeface* matchStyle(const SkFontStyle& pattern) = 0;
32 SkTypeface* matchStyleCSS3(const SkFontStyle& pattern);
  /external/skia/infra/bots/
zip_utils.py 22 for pattern in blacklist:
23 rv = [n for n in rv if not fnmatch.fnmatch(n, pattern)]

Completed in 1277 milliseconds

<<31323334353637383940>>