| /external/iproute2/rdma/ |
| utils.c | 33 static bool rd_argv_match(struct rd *rd, const char *pattern) 37 return strcmpx(rd_argv(rd), pattern) == 0;
|
| /external/jcommander/src/test/java/com/beust/jcommander/command/ |
| CommandAliasTest.java | 28 import java.util.regex.Pattern; 169 private void patternMatchesTimes(String pattern, String input, int times) { 170 Matcher m = Pattern.compile(pattern).matcher(input);
|
| /external/libdrm/tests/modetest/ |
| buffers.c | 132 unsigned int offsets[4], enum util_fill_pattern pattern) 326 util_fill_pattern(format, pattern, planes, width, height, pitches[0]);
|
| /external/libmojo/third_party/catapult/devil/devil/android/ |
| fastboot_utils.py | 53 def find_file(pattern): 55 if fnmatch.fnmatch(filename, pattern):
|
| /external/libxml2/ |
| triostr.h | 75 TRIO_STRING_PUBLIC int trio_match TRIO_PROTO((const char *string, const char *pattern)); 76 TRIO_STRING_PUBLIC int trio_match_case TRIO_PROTO((const char *string, const char *pattern));
|
| /external/markdown/markdown/extensions/ |
| footnotes.py | 62 # Insert an inline pattern before ImageReferencePattern 255 class FootnotePattern(markdown.inlinepatterns.Pattern): 258 def __init__(self, pattern, footnotes): 259 markdown.inlinepatterns.Pattern.__init__(self, pattern)
|
| /external/mesa3d/docs/specs/OLD/ |
| MESA_trace.spec | 44 "chain of responsibility" pattern (aka "composable piepline")
|
| /external/mesa3d/src/gallium/drivers/ilo/core/ |
| ilo_builder_3d_bottom.h | 475 const struct ilo_state_sample_pattern *pattern, 480 ilo_state_sample_pattern_get_packed_offsets(pattern, 516 const struct ilo_state_sample_pattern *pattern) 531 dw[5] = ((const uint32_t *) pattern->pattern_8x)[1]; 532 dw[6] = ((const uint32_t *) pattern->pattern_8x)[0]; 533 dw[7] = ((const uint32_t *) pattern->pattern_4x)[0]; 534 dw[8] = pattern->pattern_1x[0] << 16 | 535 ((const uint16_t *) pattern->pattern_2x)[0];
|
| /external/pcre/dist2/src/ |
| pcre2posix.c | 111 REG_EESCAPE, /* \ at end of pattern */ 112 REG_EESCAPE, /* \c at end of pattern */ 129 REG_INVARG, /* pattern passed as NULL */ 153 "pattern error", /* BADPAT */ 223 pattern the pattern to compile 231 regcomp(regex_t *preg, const char *pattern, int cflags) 246 preg->re_pcre2_code = pcre2_compile((PCRE2_SPTR)pattern, PCRE2_ZERO_TERMINATED, 288 obtained when the pattern was compiled, to save having to allocate and free it
|
| /external/pcre/pcrecpp/include/ |
| pcrecpp.h | 61 // supplied pattern exactly. 113 // NULL (the corresponding matched sub-pattern is not copied) 115 // CAVEAT: An optional sub-pattern that does not exist in the matched 131 // You can use the "PartialMatch" operation when you want the pattern 146 // By default, pattern and text are plain text, one byte per character. 147 // The UTF8 flag, passed to the constructor, causes both pattern 150 // is likelier to be UTF-8 than the pattern, but the match returned 194 // "?:" modifier within the pattern itself. e.g. (?:ab|cd) does not 230 // RE(pattern, RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str); 233 // RE(pattern, 545 const string& pattern() const { return pattern_; } function in class:pcrecpp::RE [all...] |
| /external/perfetto/src/ftrace_reader/ |
| proto_translation_table.cc | 138 bool Match(const char* string, const char* pattern) { 140 int ret = regcomp(&re, pattern, REG_EXTENDED | REG_NOSUB);
|
| /external/python/cpython2/Lib/ |
| DocXMLRPCServer.py | 37 pattern = re.compile(r'\b((http|ftp)://\S+[\w/]|' 42 match = pattern.search(text, here)
|
| /external/python/cpython2/Lib/xml/etree/ |
| ElementPath.py | 73 def xpath_tokenizer(pattern, namespaces=None): 74 for token in xpath_tokenizer_re.findall(pattern): 248 # compile selector pattern 273 # execute selector pattern
|
| /external/python/cpython3/Lib/xml/etree/ |
| ElementPath.py | 73 def xpath_tokenizer(pattern, namespaces=None): 74 for token in xpath_tokenizer_re.findall(pattern): 257 # compile selector pattern 287 # execute selector pattern
|
| /external/skia/src/core/ |
| SkRecordOpts.cpp | 16 // Most of the optimizations in this file are pattern-based. These are all defined as structs with: 21 // Run a pattern-based optimization once across the SkRecord, returning true if it made any changes. 22 // It looks for spans which match Pass::Match, and when found calls onMatch() with that pattern, 40 typedef Pattern<Is<SetMatrix>, 45 bool onMatch(SkRecord* record, Match* pattern, int begin, int end) { 58 typedef Pattern<Is<SetMatrix>, 61 Pattern; 63 bool onMatch(SkRecord* record, Pattern* pattern, int begin, int end) { 77 typedef Pattern<Is<Save> [all...] |
| /external/skqp/src/core/ |
| SkRecordOpts.cpp | 16 // Most of the optimizations in this file are pattern-based. These are all defined as structs with: 21 // Run a pattern-based optimization once across the SkRecord, returning true if it made any changes. 22 // It looks for spans which match Pass::Match, and when found calls onMatch() with that pattern, 40 typedef Pattern<Is<SetMatrix>, 45 bool onMatch(SkRecord* record, Match* pattern, int begin, int end) { 58 typedef Pattern<Is<SetMatrix>, 61 Pattern; 63 bool onMatch(SkRecord* record, Pattern* pattern, int begin, int end) { 77 typedef Pattern<Is<Save> [all...] |
| /external/strace/ |
| basic_filters.c | 55 const char *str, const char *pattern) 60 error_msg_and_die("%s: %s: %s", str, pattern, buf);
|
| /external/tensorflow/tensorflow/compiler/xla/service/interpreter/ |
| executor.h | 98 bool Memset(Stream *stream, DeviceMemoryBase *location, uint8 pattern, 102 bool Memset32(Stream *stream, DeviceMemoryBase *location, uint32 pattern,
|
| /external/tensorflow/tensorflow/core/platform/cloud/ |
| retrying_file_system.cc | 151 Status RetryingFileSystem::GetMatchingPaths(const string& pattern, 154 std::bind(&FileSystem::GetMatchingPaths, base_file_system_.get(), pattern,
|
| /external/tensorflow/tensorflow/stream_executor/cuda/ |
| cuda_gpu_executor.cc | 495 uint32 pattern = (byte_value << 24) | (byte_value << 16) | local 498 context_, AsCudaDevicePtr(location), pattern, size / 4); 535 uint8 pattern, uint64 size) { 538 << " and pattern " << std::hex << pattern; local 540 context_, AsCudaDevicePtr(location), pattern, size, 545 uint32 pattern, uint64 size) { 548 << " and pattern " << std::hex << pattern; local 552 context_, AsCudaDevicePtr(location), pattern, size / 4 [all...] |
| cuda_gpu_executor.h | 114 bool Memset(Stream *stream, DeviceMemoryBase *location, uint8 pattern, 116 bool Memset32(Stream *stream, DeviceMemoryBase *location, uint32 pattern,
|
| /external/tensorflow/tensorflow/stream_executor/host/ |
| host_gpu_executor.h | 86 bool Memset(Stream *stream, DeviceMemoryBase *location, uint8 pattern, 88 bool Memset32(Stream *stream, DeviceMemoryBase *location, uint32 pattern,
|
| /external/tensorflow/tensorflow/stream_executor/ |
| stream_executor_internal.h | 196 virtual bool Memset(Stream *stream, DeviceMemoryBase *location, uint8 pattern, 201 uint32 pattern, uint64 size) = 0;
|
| /external/tensorflow/tensorflow/tools/pip_package/ |
| setup.py | 175 def find_files(pattern, root): 176 """Return all the files matching pattern below root dir.""" 178 for filename in fnmatch.filter(files, pattern):
|
| /external/toolchain-utils/automation/common/ |
| job.py | 104 for pattern, replacement in substitutions: 105 cmd = cmd.replace(pattern, replacement)
|