Home
last modified time | relevance | path

Searched refs:matchString (Results 1 – 25 of 37) sorted by relevance

12

/external/cldr/tools/java/org/unicode/cldr/util/
DSimpleFactory.java147 private final String matchString; field in SimpleFactory.SimpleFactoryLookupKey
149 public SimpleFactoryLookupKey(String directory, String matchString) { in SimpleFactoryLookupKey() argument
151 this.matchString = matchString; in SimpleFactoryLookupKey()
159 result = prime * result + ((matchString == null) ? 0 : matchString.hashCode()); in hashCode()
182 if (matchString == null) { in equals()
183 if (other.matchString != null) { in equals()
186 } else if (!matchString.equals(other.matchString)) { in equals()
197 return matchString; in getMatchString()
202 … return "SimpleFactoryLookupKey [directory=" + directory + ", matchString=" + matchString + "]"; in toString()
214 private String matchString; field in SimpleFactory.SimpleFactoryCacheKey
[all …]
/external/llvm-project/flang/lib/Optimizer/Support/
DKindMapping.cpp136 static mlir::LogicalResult matchString(const char *&ptr, in matchString() function
147 if (mlir::succeeded(matchString(ptr, "Half"))) { in parseTypeID()
151 if (mlir::succeeded(matchString(ptr, "Float"))) { in parseTypeID()
155 if (mlir::succeeded(matchString(ptr, "Double"))) { in parseTypeID()
159 if (mlir::succeeded(matchString(ptr, "X86_FP80"))) { in parseTypeID()
163 if (mlir::succeeded(matchString(ptr, "FP128"))) { in parseTypeID()
167 if (mlir::succeeded(matchString(ptr, "PPC_FP128"))) { in parseTypeID()
/external/gptfdisk/
Dparttypes.cc520 string line, matchString = ""; in ShowAllTypes() local
526 matchString = ReadString(); in ShowAllTypes()
529 found = thisType->name.find(matchString); in ShowAllTypes()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSimpleDateFormat.java2923 protected int matchString(String text, int start, int field, String[] data, Calendar cal) in matchString() method in SimpleDateFormat
2925 return matchString(text, start, field, data, null, cal); in matchString()
2949 …private int matchString(String text, int start, int field, String[] data, String monthPattern, Cal… in matchString() method in SimpleDateFormat
3262 ps = matchString(text, start, Calendar.ERA, formatData.narrowEras, null, cal); in subParse()
3264 ps = matchString(text, start, Calendar.ERA, formatData.eraNames, null, cal); in subParse()
3266 ps = matchString(text, start, Calendar.ERA, formatData.eras, null, cal); in subParse()
3315 … int newStart = matchString(text, start, Calendar.YEAR, formatData.shortYearNames, null, cal); in subParse()
3355 matchString(text, start, Calendar.MONTH, formatData.months, in subParse()
3357 matchString(text, start, Calendar.MONTH, formatData.standaloneMonths, in subParse()
3366 matchString(text, start, Calendar.MONTH, formatData.shortMonths, in subParse()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSimpleDateFormat.java2907 protected int matchString(String text, int start, int field, String[] data, Calendar cal) in matchString() method in SimpleDateFormat
2909 return matchString(text, start, field, data, null, cal); in matchString()
2933 …private int matchString(String text, int start, int field, String[] data, String monthPattern, Cal… in matchString() method in SimpleDateFormat
3244 ps = matchString(text, start, Calendar.ERA, formatData.narrowEras, null, cal); in subParse()
3246 ps = matchString(text, start, Calendar.ERA, formatData.eraNames, null, cal); in subParse()
3248 ps = matchString(text, start, Calendar.ERA, formatData.eras, null, cal); in subParse()
3297 … int newStart = matchString(text, start, Calendar.YEAR, formatData.shortYearNames, null, cal); in subParse()
3337 matchString(text, start, Calendar.MONTH, formatData.months, in subParse()
3339 matchString(text, start, Calendar.MONTH, formatData.standaloneMonths, in subParse()
3348 matchString(text, start, Calendar.MONTH, formatData.shortMonths, in subParse()
[all …]
/external/antlr/runtime/ObjC/Framework/examples/fuzzy/
DFuzzy.m150 [self matchString:@"import"]; if ( state.failed ) return ;
225 [self matchString:@"return"]; if ( state.failed ) return ;
296 [self matchString:@"class"]; if ( state.failed ) return ;
349 [self matchString:@"extends"]; if ( state.failed ) return ;
405 [self matchString:@"implements"]; if ( state.failed ) return ;
779 [self matchString:@"throws"]; if ( state.failed ) return ;
974 [self matchString:@"[]"]; if ( state.failed ) return ;
1096 [self matchString:@"if"]; if ( state.failed ) return ;
1107 [self matchString:@"while"]; if ( state.failed ) return ;
1118 [self matchString:@"switch"]; if ( state.failed ) return ;
[all …]
/external/icu/icu4c/source/i18n/
Dsmpdtfmt.cpp2875 int32_t SimpleDateFormat::matchString(const UnicodeString& text, in matchString() function in SimpleDateFormat
3149 …ps = matchString(text, start, UCAL_ERA, fSymbols->fNarrowEras, fSymbols->fNarrowErasCount, NULL, c… in subParse()
3151 … ps = matchString(text, start, UCAL_ERA, fSymbols->fEraNames, fSymbols->fEraNamesCount, NULL, cal); in subParse()
3153 … ps = matchString(text, start, UCAL_ERA, fSymbols->fEras, fSymbols->fErasCount, NULL, cal); in subParse()
3228 …int32_t newStart = matchString(text, start, UCAL_YEAR, fSymbols->fShortYearNames, fSymbols->fShort… in subParse()
3283 …newStart = matchString(text, start, UCAL_MONTH, fSymbols->fMonths, fSymbols->fMonthsCount, wideMon… in subParse()
3289 …newStart = matchString(text, start, UCAL_MONTH, fSymbols->fShortMonths, fSymbols->fShortMonthsCoun… in subParse()
3293 …newStart = matchString(text, start, UCAL_MONTH, fSymbols->fStandaloneMonths, fSymbols->fStandalone… in subParse()
3299 …newStart = matchString(text, start, UCAL_MONTH, fSymbols->fStandaloneShortMonths, fSymbols->fStand… in subParse()
3354 if ((newStart = matchString(text, start, UCAL_DAY_OF_WEEK, in subParse()
[all …]
/external/antlr/runtime/ObjC/Framework/
DLexer.h70 - (void) matchString:(NSString *)aString;
DLexer.m224 - (void) matchString:(NSString *)aString
/external/antlr/runtime/ObjC/Framework/examples/LL-star/
DSimpleCLexer.m320 [self matchString:@"=="];
355 [self matchString:@"char"];
390 [self matchString:@"for"];
425 [self matchString:@"int"];
460 [self matchString:@"void"];
/external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCLexer.m82 [self matchString:@"for"];
117 [self matchString:@"char"];
152 [self matchString:@"int"];
187 [self matchString:@"void"];
612 [self matchString:@"=="];
/external/skia/src/utils/
DSkJSON.cpp342 p = this->matchString(p, p_stop, [this](const char* key, size_t size, const char* eos) { in parse()
360 p = this->matchString(p, p_stop, [this](const char* str, size_t size, const char* eos) { in parse()
691 const char* matchString(const char* p, const char* p_stop, MatchFunc&& func) { in matchString() function in skjson::__anon1ee7b4cf0211::DOMParser
/external/skqp/src/utils/
DSkJSON.cpp334 p = this->matchString(p, p_stop, [this](const char* key, size_t size, const char* eos) { in parse()
352 p = this->matchString(p, p_stop, [this](const char* str, size_t size, const char* eos) { in parse()
683 const char* matchString(const char* p, const char* p_stop, MatchFunc&& func) { in matchString() function in skjson::__anon18ad0a460211::DOMParser
/external/python/setuptools/setuptools/_vendor/
Dpyparsing.py2371 def __init__( self, matchString ): argument
2373 self.match = matchString
2374 self.matchLen = len(matchString)
2376 self.firstMatchChar = matchString[0]
2417 def __init__( self, matchString, identChars=None, caseless=False ): argument
2421 self.match = matchString
2422 self.matchLen = len(matchString)
2424 self.firstMatchChar = matchString[0]
2434 self.caselessmatch = matchString.upper()
2474 def __init__( self, matchString ): argument
[all …]
/external/python/setuptools/pkg_resources/_vendor/
Dpyparsing.py2371 def __init__( self, matchString ): argument
2373 self.match = matchString
2374 self.matchLen = len(matchString)
2376 self.firstMatchChar = matchString[0]
2417 def __init__( self, matchString, identChars=None, caseless=False ): argument
2421 self.match = matchString
2422 self.matchLen = len(matchString)
2424 self.firstMatchChar = matchString[0]
2434 self.caselessmatch = matchString.upper()
2474 def __init__( self, matchString ): argument
[all …]
/external/antlr/runtime/ObjC/Framework/examples/treeparser/
DLangLexer.m116 [self matchString:@"int"];
151 [self matchString:@"float"];
/external/icu/icu4c/source/test/intltest/
Dregextst.cpp3195 UnicodeString matchString; // The marked up string to be used as input in Extended() local
3261 matchString = quotedStuffMat.group(2, status); in Extended()
3280 regex_find(testPattern, testFlags, matchString, srcPath, lineNum); in Extended()
4188 UnicodeString matchString = fields[1]; in PerlTests() local
4189 matchString.findAndReplace(nulnulSrc, nulnul); in PerlTests()
4190 matchString.findAndReplace(ffffSrc, ffff); in PerlTests()
4195 matchString.findAndReplace(UNICODE_STRING_SIMPLE("\\n"), "\n"); in PerlTests()
4202 RegexMatcher *testMat = testPat->matcher(matchString, status); in PerlTests()
4573 UnicodeString matchString = fields[1]; in PerlTestsUTF8() local
4574 matchString.findAndReplace(nulnulSrc, nulnul); in PerlTestsUTF8()
[all …]
/external/icu/icu4c/source/i18n/unicode/
Dsmpdtfmt.h1358 int32_t matchString(const UnicodeString& text, int32_t start, UCalendarDateFields field,
/external/icu/libicu/cts_headers/unicode/
Dsmpdtfmt.h1358 int32_t matchString(const UnicodeString& text, int32_t start, UCalendarDateFields field,
/external/antlr/runtime/ObjC/Framework/examples/scopes/
DSymbolTableLexer.m218 [self matchString:@"int"];
253 [self matchString:@"method"];
/external/antlr/runtime/ObjC/Framework/examples/hoistedPredicates/
DTLexer.m82 [self matchString:@"enum"];
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DLexer.as154 public function matchString(s:String):void { method in org.antlr.runtime.Lexer
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DIBMCalendarTest.java1994 … int matchIndex = matchString("Monday March 28, 2016", 0, Calendar.DAY_OF_WEEK, matchData, cal); in TestSimpleDateFormatCoverage()
1996 … matchIndex = matchString("Monday March 28, 2016 AD", 17, Calendar.YEAR, matchData, cal); in TestSimpleDateFormatCoverage()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DIBMCalendarTest.java1997 … int matchIndex = matchString("Monday March 28, 2016", 0, Calendar.DAY_OF_WEEK, matchData, cal); in TestSimpleDateFormatCoverage()
1999 … matchIndex = matchString("Monday March 28, 2016 AD", 17, Calendar.YEAR, matchData, cal); in TestSimpleDateFormatCoverage()
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
DActionScript.stg707 matchString(<string>); <checkRuleBacktrackFailure()>
714 matchString(<string>); <checkRuleBacktrackFailure()><\n>

12