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

<<41424344454647484950>>

  /external/googletest/googletest/test/
gtest_list_tests_unittest.py 166 expected_output_re.pattern)))
  /external/icu/icu4c/source/common/unicode/
uset.h 276 * Creates a set from the given pattern. See the UnicodeSet class
277 * description for the syntax of the pattern language.
278 * @param pattern a string specifying what characters are in the set
279 * @param patternLength the length of the pattern, or -1 if null
285 uset_openPattern(const UChar* pattern, int32_t patternLength,
289 * Creates a set from the given pattern. See the UnicodeSet class
290 * description for the syntax of the pattern language.
291 * @param pattern a string specifying what characters are in the set
292 * @param patternLength the length of the pattern, or -1 if null
294 * @param options bitmask for options to apply to the pattern
    [all...]
  /external/icu/icu4c/source/i18n/
decimfmtimpl.cpp 50 const UnicodeString &pattern,
69 applyPattern(pattern, FALSE, parseError, status);
75 const UnicodeString &pattern,
86 applyPattern(pattern, FALSE, parseError, status);
787 const UnicodeString &pattern, UErrorCode &status) {
789 applyPattern(pattern, FALSE, perror, status);
795 const UnicodeString &pattern, UErrorCode &status) {
797 applyPattern(pattern, FALSE, perror, status);
803 const UnicodeString &pattern,
805 applyPattern(pattern, FALSE, perror, status)
    [all...]
number_modifiers.cpp 284 const UnicodeString& pattern = symbols.getPatternForCurrencySpacing( local
288 if (pattern.compare(u"[:digit:]", -1) == 0) {
290 } else if (pattern.compare(u"[:^S:]", -1) == 0) {
293 return UnicodeSet(pattern, status);
  /external/icu/icu4c/source/i18n/unicode/
ulocdata.h 160 * @param options Bitmask for options to apply to the exemplar pattern.
255 * Returns locale display pattern associated with a locale.
259 * @param pattern locale display pattern for locale.
261 * pattern with.
265 * than patternCapacity, the returned pattern will be truncated.
271 UChar *pattern,
  /external/icu/icu4c/source/test/intltest/
dtfmttst.h 101 * Test the day of year pattern.
107 virtual void tryPattern(SimpleDateFormat& sdf, UDate d, const char* pattern, UDate expected);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatRegressionTestJ.java 77 logln( "Pattern = " + aSimpleDF.toPattern());
148 //pattern "s.S, parse '1ms'"
165 logln("Pattern = " + aSimpleDF.toPattern());
211 final String pattern = new String("yyyy.MM.dd G 'at' hh:mm:ss z"); local
212 SimpleDateFormat sdf = new SimpleDateFormat(pattern, Locale.JAPAN);
240 final String pattern = new String("EEEE, MMMM d, yyyy"); local
241 SimpleDateFormat sdf = new SimpleDateFormat(pattern);
  /external/libtextclassifier/datetime/
extractor.h 36 // The uncompiled pattern and information about the pattern groups.
40 const DatetimeModelPattern* pattern; member in struct:libtextclassifier2::CompiledRule
  /external/ltp/include/
tst_fs.h 141 * Creates/ovewrites a file with specified pattern
143 * @pattern: pattern
147 int tst_fill_file(const char *path, char pattern, size_t bs, size_t bcount);
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_has_key.py 42 PATTERN = """
76 self.pattern.match(node.parent)):
78 # pattern when its parent matches the second alternative
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_has_key.py 41 PATTERN = """
75 self.pattern.match(node.parent)):
77 # pattern when its parent matches the second alternative
  /external/python/cpython3/Tools/msi/
make_zip.py 173 def rglob(root, pattern, condition):
175 recurse = pattern[:3] in {'**/', '**\\'}
178 for f in d.glob(pattern[3:] if recurse else pattern):
  /external/stressapptest/src/
disk_blocks.h 31 class Pattern;
60 void set_pattern(Pattern *p) { pattern_ = p; }
61 Pattern *pattern() { return pattern_; } function in class:BlockData
67 Pattern *pattern_;
pattern.cc 15 // pattern.cc : library of stressful data patterns
21 #include "pattern.h"
48 {1, 1, 2, 1} // Weight for choosing 32/64/128/256 bit wide of this pattern
236 Pattern::Pattern() {
240 Pattern::~Pattern() {
246 // Calculate CRC for this pattern. This must match
248 int Pattern::CalculateCrc() {
262 a1 += pattern(i)
    [all...]
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
TestFormats.py 145 pattern=".*", useTempInput=False):
154 self.pattern = re.compile(pattern)
173 not self.pattern.match(filename) or
  /external/v8/src/builtins/
builtins-constructor.h 25 Node* EmitFastCloneRegExp(Node* closure, Node* literal_index, Node* pattern,
  /external/v8/testing/gtest/test/
gtest_list_tests_unittest.py 166 expected_output_re.pattern)))
  /external/vogar/src/vogar/
ExpectationStore.java 32 import java.util.regex.Pattern;
38 * "java.util"), its expected result, and an optional pattern to match
40 * <li>Failure expectations include a pattern that may match the output of any
49 private static final int PATTERN_FLAGS = Pattern.MULTILINE | Pattern.DOTALL;
150 Pattern pattern = Expectation.MATCH_ALL_PATTERN; local
170 } else if (name.equals("pattern")) {
171 pattern = Pattern.compile(reader.nextString(), PATTERN_FLAGS)
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_list_tests_unittest.py 166 expected_output_re.pattern)))
  /frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/
CryptoPlugin.h 41 using ::android::hardware::drm::V1_0::Pattern;
76 const Pattern& pattern,
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDrm.h 100 CryptoPlugin::Pattern pattern; member in struct:android::NuPlayerDrm::CryptoInfo
  /frameworks/compile/mclinker/lib/LD/
GarbageCollection.cpp 30 #define fnmatch0(pattern, string) (fnmatch(pattern, string, 0) == 0)
34 #define fnmatch0(pattern, string) (PathMatchSpec(string, pattern) == true)
  /hardware/interfaces/drm/1.0/default/
CryptoPlugin.h 34 using ::android::hardware::drm::V1_0::Pattern;
64 const hidl_array<uint8_t, 16>& iv, Mode mode, const Pattern& pattern,
  /libcore/luni/src/main/native/
java_util_regex_Matcher.cpp 214 icu::RegexPattern* pattern = reinterpret_cast<icu::RegexPattern*>(static_cast<uintptr_t>(patternAddr)); local
216 icu::RegexMatcher* result = pattern->matcher(status);
247 icu::RegexPattern* pattern = reinterpret_cast<icu::RegexPattern*>(static_cast<uintptr_t>(patternAddr)); local
251 jint result = pattern->groupNumberFromName(groupName.unicodeString(), status);
  /libcore/ojluni/src/main/java/sun/security/util/
DerOutputStream.java 494 String pattern = null; local
497 pattern = "yyMMddHHmmss'Z'";
500 pattern = "yyyyMMddHHmmss'Z'";
503 SimpleDateFormat sdf = new SimpleDateFormat(pattern, Locale.US);

Completed in 1379 milliseconds

<<41424344454647484950>>