Searched defs:Pattern (Results 1 - 4 of 4) sorted by relevance

/external/webkit/WebCore/platform/graphics/
H A DPattern.cpp28 #include "Pattern.h"
34 Pattern::Pattern(Image* image, bool repeatX, bool repeatY) function in class:WebCore::Pattern
45 Pattern::~Pattern()
50 void Pattern::setPatternSpaceTransform(const AffineTransform& patternSpaceTransformation)
57 void Pattern::platformDestroy()
61 void Pattern::setPlatformPatternSpaceTransform()
H A DPattern.h69 class Pattern : public RefCounted<Pattern> { class in namespace:WebCore
71 static PassRefPtr<Pattern> create(Image* tileImage, bool repeatX, bool repeatY)
73 return adoptRef(new Pattern(tileImage, repeatX, repeatY));
75 virtual ~Pattern();
81 // Pattern space is an abstract space that maps to the default user space by the transformation 'userSpaceTransformation'
91 Pattern(Image*, bool repeatX, bool repeatY);
/external/guava/src/com/google/common/base/
H A DCaseFormat.java21 import java.util.regex.Pattern;
34 LOWER_HYPHEN(Pattern.compile("[-]"), "-"),
39 LOWER_UNDERSCORE(Pattern.compile("[_]"), "_"),
44 LOWER_CAMEL(Pattern.compile("[A-Z]"), ""),
49 UPPER_CAMEL(Pattern.compile("[A-Z]"), ""),
54 UPPER_UNDERSCORE(Pattern.compile("[_]"), "_");
56 private final Pattern wordBoundary;
59 private CaseFormat(Pattern wordBoundary, String wordSeparator) {
/external/v8/tools/
H A Dtest.py1182 class Pattern(object): class in inherits:object
1200 return [ Pattern(s) for s in stripped if len(s) > 0 ]

Completed in 71 milliseconds