| /external/python/cpython3/Lib/msilib/ |
| __init__.py | 379 def glob(self, pattern, exclude = None): 381 glob pattern. Individual files can be excluded in the exclude list.""" 386 if pattern[:1] != '.': 388 files = fnmatch.filter(files, pattern)
|
| /external/python/cpython3/Lib/test/ |
| test_gdb.py | 255 def assertMultilineMatches(self, actual, pattern): 256 m = re.match(pattern, actual, re.DOTALL) 258 self.fail(msg='%r did not match %r' % (actual, pattern)) 470 pattern = '<.* at remote 0x-?[0-9a-f]+>' 472 m = re.match(pattern, gdb_repr) [all...] |
| /external/skia/src/ports/ |
| SkFontMgr_win_dw.cpp | 335 SkTypeface* matchStyle(const SkFontStyle& pattern) override; [all...] |
| /external/skqp/src/ports/ |
| SkFontMgr_win_dw.cpp | 335 SkTypeface* matchStyle(const SkFontStyle& pattern) override; [all...] |
| /external/swiftshader/third_party/LLVM/utils/TableGen/ |
| DAGISelMatcherGen.cpp | 51 const PatternToMatch &Pattern; 54 /// PatWithNoTypes - This is a clone of Pattern.getSrcPattern() that starts 86 /// physreg input to the pattern. The first elt is the Register node, the 87 /// second is the recorded slot number the input pattern match saved it in. 97 MatcherGen(const PatternToMatch &pattern, const CodeGenDAGPatterns &cgp); 125 /// GetInstPatternNode - Get the pattern for an instruction. 143 MatcherGen::MatcherGen(const PatternToMatch &pattern, 145 : Pattern(pattern), CGP(cgp), NextRecordedOperandNo(0), 147 // We need to produce the matcher tree for the patterns source pattern. To d [all...] |
| /external/tensorflow/tensorflow/python/keras/_impl/keras/ |
| backend.py | [all...] |
| /external/tensorflow/tensorflow/python/training/ |
| input.py | 58 def match_filenames_once(pattern, name=None): 59 """Save the list of files matching pattern, so it is only computed once. 64 pattern: A file pattern (glob), or 1D tensor of file patterns. 68 A variable that is initialized to the list of files matching the pattern(s). 70 with ops.name_scope(name, "matching_filenames", [pattern]) as name: 72 name=name, initial_value=io_ops.matching_files(pattern), [all...] |
| /external/toybox/kconfig/ |
| symbol.c | 721 struct symbol **sym_re_search(const char *pattern) 729 if (strlen(pattern) == 0) 731 if (regcomp(&re, pattern, REG_EXTENDED|REG_NOSUB|REG_ICASE))
|
| /frameworks/av/drm/mediadrm/plugins/mock/ |
| MockDrmCryptoPlugin.cpp | 797 const Pattern &pattern, const void *srcPtr, 802 "pattern:{encryptBlocks=%d, skipBlocks=%d} src=%p, " 807 (int)mode, pattern.mEncryptBlocks, pattern.mSkipBlocks, srcPtr,
|
| /frameworks/ml/nn/runtime/test/ |
| TestPartitioningRandom.cpp | 243 // Memory instance is assigned a number. The usage pattern is as 447 for (const auto& pattern : kOperationPatterns) { 448 result[pattern.mOperationType] = pattern.mActivationFunctionInputIndex; [all...] |
| /libcore/ojluni/src/main/java/javax/crypto/ |
| Cipher.java | 526 // ConcurrentMap<String,Pattern> for previously compiled patterns 527 private final static ConcurrentMap<String, Pattern> patternCache = 528 new ConcurrentHashMap<String, Pattern>(); 531 Pattern pattern = patternCache.get(regexp); 532 if (pattern == null) { 533 pattern = Pattern.compile(regexp); 534 patternCache.putIfAbsent(regexp, pattern); 536 return pattern.matcher(str.toUpperCase(Locale.ENGLISH)).matches() 2689 final String pattern = service.getAttribute(attr); local [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
| ccompiler.py | [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
| ccompiler.py | [all...] |
| /prebuilts/go/darwin-x86/src/cmd/go/internal/help/ |
| helpdoc.go | 70 An import path is a pattern if it includes one or more "..." wildcards, 72 strings containing slashes. Such a pattern expands to all package 77 First, /... at the end of the pattern can match an empty string, 79 Second, any slash-separated pattern element containing a wildcard never 85 and the pattern cmd/... matches it. 138 on the pattern syntax.
|
| /prebuilts/go/linux-x86/src/cmd/go/internal/help/ |
| helpdoc.go | 70 An import path is a pattern if it includes one or more "..." wildcards, 72 strings containing slashes. Such a pattern expands to all package 77 First, /... at the end of the pattern can match an empty string, 79 Second, any slash-separated pattern element containing a wildcard never 85 and the pattern cmd/... matches it. 138 on the pattern syntax.
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
| ccompiler.py | [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
| ccompiler.py | [all...] |
| /tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/ |
| AlignmentTest.java | 224 byte[] pattern = new byte[1024]; 225 new Random().nextBytes(pattern); 234 zos.write(pattern); [all...] |
| /external/annotation-tools/asmx/test/lib/ |
| log4j-1.2.9.jar | |
| /external/guice/extensions/persist/lib/ |
| log4j-1.2.14.jar | |
| /external/guice/lib/build/ |
| bnd-0.0.384.jar | |
| /external/slf4j/log4j-over-slf4j/compatibility/lib/ |
| log4j-1.2.14.jar | |
| /prebuilts/tools/common/m2/repository/log4j/log4j/1.2.12/ |
| log4j-1.2.12.jar | |
| /prebuilts/sdk/current/ |
| core.jar | |
| /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/ |
| prettify.js | 207 var pattern = '(?:^^|[+-]'; 209 pattern += '|' + preceders[i].replace(/([^=<>:&a-z])/g, '\\$1'); 211 pattern += ')\\s*'; // matches at end, and matches empty string 212 return pattern; 676 // since the pattern has the 'g' modifier and defines no capturing groups, 763 /** Given triples of [style, pattern, context] returns a lexing function, 772 * [style : string, pattern : RegExp, DEPRECATED, shortcut : string]. 776 * language of the portion of the token in $1 after pattern executes. 792 * Pattern must only match prefixes, and if it matches a prefix, then that 799 * character, gurantee that this pattern and only this pattern matches [all...] |