Home
last modified time | relevance | path

Searched refs:matchPattern (Results 1 – 6 of 6) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xalan/templates/
DWhiteSpaceInfo.java69 public WhiteSpaceInfo(XPath matchPattern, boolean shouldStripSpace, Stylesheet thisSheet) in WhiteSpaceInfo() argument
74 setMatch(matchPattern); in WhiteSpaceInfo()
/external/skqp/src/ports/
DSkFontMgr_fontconfig.cpp804 FcPattern* matchPattern; in onMatchFamily() local
809 matchPattern = strongPattern; in onMatchFamily()
811 matchPattern = pattern; in onMatchFamily()
828 if (FontAccessible(font) && FontFamilyNameMatches(font, matchPattern)) { in onMatchFamily()
856 FcPattern* matchPattern; in onMatchFamilyStyle() local
861 matchPattern = strongPattern; in onMatchFamilyStyle()
863 matchPattern = pattern; in onMatchFamilyStyle()
868 … if (nullptr == font || !FontAccessible(font) || !FontFamilyNameMatches(font, matchPattern)) { in onMatchFamilyStyle()
/external/skia/src/ports/
DSkFontMgr_fontconfig.cpp803 FcPattern* matchPattern; in onMatchFamily() local
808 matchPattern = strongPattern; in onMatchFamily()
810 matchPattern = pattern; in onMatchFamily()
827 if (FontAccessible(font) && FontFamilyNameMatches(font, matchPattern)) { in onMatchFamily()
855 FcPattern* matchPattern; in onMatchFamilyStyle() local
860 matchPattern = strongPattern; in onMatchFamilyStyle()
862 matchPattern = pattern; in onMatchFamilyStyle()
867 … if (nullptr == font || !FontAccessible(font) || !FontFamilyNameMatches(font, matchPattern)) { in onMatchFamilyStyle()
/external/v8/src/torque/
Dearley-parser.cc140 PatternFunction matchPattern = pair.first; in MatchToken() local
141 if (matchPattern(&token_end) && token_end > *pos) { in MatchToken()
/external/linux-kselftest/tools/testing/selftests/tc-testing/creating-testcases/
DAddingTestCases.txt53 matchPattern: A regular expression to be applied against the output of the
57 matchCount: How many times the regex in matchPattern should match. A value
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DCompiler.java182 expr = matchPattern(opPos + 2); break; in compile()
678 protected Expression matchPattern(int opPos) throws TransformerException in matchPattern() method in Compiler