HomeSort by relevance Sort by last modified time
    Searched refs:matchLength (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseTextInputType.cpp 61 int matchLength = 0;
63 int matchOffset = ScriptRegexp(pattern, TextCaseSensitive).match(value, 0, &matchLength);
64 return matchOffset || matchLength != valueLength;
EmailInputType.cpp 142 int matchLength;
143 int matchOffset = regExp.match(address, 0, &matchLength);
145 return !matchOffset && matchLength == addressLength;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptRegexp.h 47 int match(const String&, int startFrom = 0, int* matchLength = 0) const;
ScriptRegexp.cpp 59 int ScriptRegexp::match(const String& string, int startFrom, int* matchLength) const
61 if (matchLength)
62 *matchLength = 0;
99 if (matchLength) {
101 *matchLength = match->Length();
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTScanner.cpp 56 unsigned matchLength = m_is8Bit ? m_end.characters8 - m_data.characters8 : m_end.characters16 - m_data.characters16;
57 if (matchLength < charactersCount)
75 size_t matchLength = run.length();
76 if (toMatch.length() > matchLength)
80 matched = WTF::equal(toMatch.impl(), m_data.characters8, matchLength);
82 matched = WTF::equal(toMatch.impl(), m_data.characters16, matchLength);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.cpp     [all...]
AtomicString.h 106 template<unsigned matchLength>
107 bool startsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const
108 { return m_string.startsWith<matchLength>(prefix, caseSensitive); }
114 template<unsigned matchLength>
115 bool endsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const
116 { return m_string.endsWith<matchLength>(prefix, caseSensitive); }
StringImpl.h 397 bool startsWith(const char*, unsigned matchLength, bool caseSensitive) const;
398 template<unsigned matchLength>
399 bool startsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const { return startsWith(prefix, matchLength - 1, caseSensitive); }
403 bool endsWith(const char*, unsigned matchLength, bool caseSensitive) const;
404 template<unsigned matchLength>
405 bool endsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const { return endsWith(prefix, matchLength - 1, caseSensitive); }
WTFString.h 263 template<unsigned matchLength>
264 bool startsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const
265 { return m_impl ? m_impl->startsWith<matchLength>(prefix, caseSensitive) : !matchLength; }
271 template<unsigned matchLength>
272 bool endsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const
273 { return m_impl ? m_impl->endsWith<matchLength>(prefix, caseSensitive) : !matchLength; }
  /external/chromium_org/third_party/icu/source/i18n/unicode/
tznames.h 303 * @param matchLength The match length.
308 void addZone(UTimeZoneNameType nameType, int32_t matchLength,
314 * @param matchLength The match length.
319 void addMetaZone(UTimeZoneNameType nameType, int32_t matchLength,
  /external/icu/icu4c/source/i18n/unicode/
tznames.h 301 * @param matchLength The match length.
306 void addZone(UTimeZoneNameType nameType, int32_t matchLength,
312 * @param matchLength The match length.
317 void addMetaZone(UTimeZoneNameType nameType, int32_t matchLength,
  /external/chromium_org/third_party/icu/source/i18n/
tznames.cpp 317 int32_t matchLength;
320 MatchInfo(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const UnicodeString* mzID) {
322 this->matchLength = matchLength;
354 TimeZoneNames::MatchInfoCollection::addZone(UTimeZoneNameType nameType, int32_t matchLength,
359 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, &tzID, NULL);
371 TimeZoneNames::MatchInfoCollection::addMetaZone(UTimeZoneNameType nameType, int32_t matchLength,
376 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID);
408 return match->matchLength;
tznames_impl.h 119 virtual UBool handleMatch(int32_t matchLength,
tzgnames.cpp 114 int32_t matchLength;
168 return minfo->matchLength;
192 UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
212 GNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
239 gmatch->matchLength = matchLength;
245 if (matchLength > fMaxMatchLen) {
246 fMaxMatchLen = matchLength;
    [all...]
tznames_impl.cpp 760 int32_t matchLength;
773 UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
793 ZNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
815 fResults->addZone(nameinfo->type, matchLength, UnicodeString(nameinfo->tzID, -1), status);
818 fResults->addMetaZone(nameinfo->type, matchLength, UnicodeString(nameinfo->mzID, -1), status);
820 if (U_SUCCESS(status) && matchLength > fMaxMatchLen) {
821 fMaxMatchLen = matchLength;
    [all...]
  /external/icu/icu4c/source/i18n/
tznames.cpp 317 int32_t matchLength;
320 MatchInfo(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const UnicodeString* mzID) {
322 this->matchLength = matchLength;
354 TimeZoneNames::MatchInfoCollection::addZone(UTimeZoneNameType nameType, int32_t matchLength,
359 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, &tzID, NULL);
371 TimeZoneNames::MatchInfoCollection::addMetaZone(UTimeZoneNameType nameType, int32_t matchLength,
376 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID);
408 return match->matchLength;
tznames_impl.h 119 virtual UBool handleMatch(int32_t matchLength,
tzgnames.cpp 114 int32_t matchLength;
168 return minfo->matchLength;
192 UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
212 GNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
239 gmatch->matchLength = matchLength;
245 if (matchLength > fMaxMatchLen) {
246 fMaxMatchLen = matchLength;
    [all...]
tznames_impl.cpp 760 int32_t matchLength;
773 UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
793 ZNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
815 fResults->addZone(nameinfo->type, matchLength, UnicodeString(nameinfo->tzID, -1), status);
818 fResults->addMetaZone(nameinfo->type, matchLength, UnicodeString(nameinfo->mzID, -1), status);
820 if (U_SUCCESS(status) && matchLength > fMaxMatchLen) {
821 fMaxMatchLen = matchLength;
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ucnv_ext.cpp 118 * - the returned matchLength is not offset by 2
129 int32_t i, j, idx, length, matchLength;
141 i=j=matchLength=0;
175 matchLength=i+j;
214 matchLength=i+j;
223 if(matchLength==0) {
230 return matchLength;
524 * the matchLength is 2 if only firstCP matched, and >2 if firstCP and
541 int32_t i, j, idx, length, matchLength;
579 i=j=matchLength=0
    [all...]
  /external/icu/icu4c/source/common/
ucnv_ext.cpp 118 * - the returned matchLength is not offset by 2
129 int32_t i, j, idx, length, matchLength;
141 i=j=matchLength=0;
175 matchLength=i+j;
214 matchLength=i+j;
223 if(matchLength==0) {
230 return matchLength;
524 * the matchLength is 2 if only firstCP matched, and >2 if firstCP and
541 int32_t i, j, idx, length, matchLength;
579 i=j=matchLength=0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ContentSearchUtils.cpp 74 int matchLength;
75 if (regex->match(line, 0, &matchLength) != -1)
InspectorStyleSheet.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp     [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java     [all...]

Completed in 564 milliseconds

1 2