HomeSort by relevance Sort by last modified time
    Searched refs:RegularExpression (Results 1 - 14 of 14) sorted by null

  /external/webkit/WebCore/platform/text/
RegularExpression.h 33 class RegularExpression : public FastAllocBase {
35 RegularExpression(const String&, TextCaseSensitivity);
36 ~RegularExpression();
38 RegularExpression(const RegularExpression&);
39 RegularExpression& operator=(const RegularExpression&);
51 void replace(String&, const RegularExpression&, const String&);
RegularExpression.cpp 28 #include "RegularExpression.h"
35 class RegularExpression::Private : public RefCounted<RegularExpression::Private> {
50 inline JSRegExp* RegularExpression::Private::compile(const String& pattern, TextCaseSensitivity caseSensitivity)
57 LOG_ERROR("RegularExpression: pcre_compile failed with '%s'", errorMessage);
61 inline RegularExpression::Private::Private(const String& pattern, TextCaseSensitivity caseSensitivity)
67 inline PassRefPtr<RegularExpression::Private> RegularExpression::Private::create(const String& pattern, TextCaseSensitivity caseSensitivity)
72 RegularExpression::Private::~Private()
77 RegularExpression::RegularExpression(const String& pattern, TextCaseSensitivity caseSensitivity
    [all...]
  /external/webkit/WebKit/chromium/src/
WebRegularExpression.cpp 34 #include "RegularExpression.h"
41 class WebRegularExpressionPrivate : public RegularExpression {
48 RegularExpression* re = new RegularExpression(pattern, sensitivity);
  /external/icu4c/i18n/
uregex.cpp 31 struct RegularExpression: public UMemory {
33 RegularExpression();
34 ~RegularExpression();
49 RegularExpression::RegularExpression() {
61 RegularExpression::~RegularExpression() {
84 static UBool validateRE(const RegularExpression *re, UErrorCode *status, UBool requiresText = TRUE) {
124 RegularExpression *re = new RegularExpression;
    [all...]
  /external/webkit/WebCore/page/mac/
FrameMac.mm 51 #import "RegularExpression.h"
77 static RegularExpression* regExpForLabels(NSArray* labels)
87 DEFINE_STATIC_LOCAL(Vector<RegularExpression*>, regExps, ());
88 DEFINE_STATIC_LOCAL(RegularExpression, wordRegExp, ("\\w", TextCaseSensitive));
90 RegularExpression* result;
122 result = new RegularExpression(pattern, TextCaseInsensitive);
138 RegularExpression* last = regExps.last();
146 NSString* Frame::searchForNSLabelsAboveCell(RegularExpression* regExp, HTMLTableCellElement* cell, size_t* resultDistanceFromStartOfCell)
185 RegularExpression* regExp = regExpForLabels(labels);
260 replace(mutableStringToMatch, RegularExpression("\\d", TextCaseSensitive), " ")
    [all...]
  /external/webkit/WebCore/page/
Frame.h 64 class RegularExpression;
263 String searchForLabelsAboveCell(RegularExpression*, HTMLTableCellElement*, size_t* resultDistanceFromStartOfCell);
275 NSString* searchForNSLabelsAboveCell(RegularExpression*, HTMLTableCellElement*, size_t* resultDistanceFromStartOfCell);
Frame.cpp 65 #include "RegularExpression.h"
388 static RegularExpression* createRegExpForLabels(const Vector<String>& labels)
393 DEFINE_STATIC_LOCAL(RegularExpression, wordRegExp, ("\\w", TextCaseSensitive));
419 return new RegularExpression(pattern, TextCaseInsensitive);
422 String Frame::searchForLabelsAboveCell(RegularExpression* regExp, HTMLTableCellElement* cell, size_t* resultDistanceFromStartOfCell)
461 OwnPtr<RegularExpression> regExp(createRegExpForLabels(labels));
535 replace(mutableStringToMatch, RegularExpression("\\d", TextCaseSensitive), " ");
538 OwnPtr<RegularExpression> regExp(createRegExpForLabels(labels));
    [all...]
  /external/webkit/WebCore/html/
ValidityState.cpp 31 #include "RegularExpression.h"
172 DEFINE_STATIC_LOCAL(const RegularExpression, regExp, (emailPattern, TextCaseInsensitive));
HTMLInputElement.cpp 55 #include "RegularExpression.h"
245 RegularExpression patternRegExp(pattern, TextCaseSensitive);
    [all...]
  /external/webkit/WebCore/dom/
DOMImplementation.cpp 47 #include "RegularExpression.h"
290 DEFINE_STATIC_LOCAL(RegularExpression, xmlTypeRegExp, (String("^") + validChars + "+/" + validChars + "+\\+xml$", TextCaseSensitive));
  /external/webkit/WebCore/
Android.mk 548 platform/text/RegularExpression.cpp \
  /external/icu4c/common/unicode/
urename.h     [all...]
  /external/jdiff/
xerces.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 249 milliseconds