Searched refs:inputChars (Results 1 – 5 of 5) sorted by relevance
/external/webkit/Source/WebCore/dom/ |
D | InputElement.cpp | 305 bool InputElement::isConformToInputMask(const InputElementData& data, const String& inputChars) in isConformToInputMask() argument 307 for (unsigned i = 0; i < inputChars.length(); ++i) in isConformToInputMask() 308 if (!isConformToInputMask(data, inputChars[i], i)) in isConformToInputMask()
|
/external/webkit/Source/WebCore/wml/ |
D | WMLInputElement.cpp | 440 bool WMLInputElement::isConformedToInputMask(const String& inputChars) in isConformedToInputMask() argument 442 for (unsigned i = 0; i < inputChars.length(); ++i) in isConformedToInputMask() 443 if (!isConformedToInputMask(inputChars[i], i + 1, false)) in isConformedToInputMask()
|
/external/icu4c/i18n/ |
D | rematch.cpp | 331 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1)); in appendReplacement() local 332 if (inputChars == NULL) { in appendReplacement() 336 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status); in appendReplacement() 337 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status); in appendReplacement() 338 uprv_free(inputChars); in appendReplacement() 523 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16)); in appendTail() local 524 if (inputChars == NULL) { in appendTail() 527 …utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // untermina… in appendTail() 529 utext_replace(dest, destLen, destLen, inputChars, len16, &status); in appendTail() 530 uprv_free(inputChars); in appendTail() [all …]
|
D | uregex.cpp | 453 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(regexp->fTextLength+1)); in uregex_getText() local 455 … utext_extract(inputText, 0, inputNativeLength, inputChars, regexp->fTextLength+1, status); in uregex_getText() 456 regexp->fText = inputChars; in uregex_getText()
|
/external/icu4c/test/intltest/ |
D | regextst.cpp | 3139 char *patternChars = NULL, *inputChars = NULL; in regex_find() local 3335 inputChars = new char[inputUTF8Length+1]; in regex_find() 3336 deTaggedInput.extract(inputChars, inputUTF8Length+1, UTF8Converter, status); in regex_find() 3337 utext_openUTF8(&inputText, inputChars, inputUTF8Length, &status); in regex_find() 3563 delete[] inputChars; in regex_find() 4157 char *inputChars = NULL; in PerlTestsUTF8() local 4351 … inputLength = matchString.extract(inputChars, inputCapacity, UTF8Converter.getAlias(), status); in PerlTestsUTF8() 4354 delete[] inputChars; in PerlTestsUTF8() 4356 inputChars = new char[inputCapacity]; in PerlTestsUTF8() 4357 matchString.extract(inputChars, inputCapacity, UTF8Converter.getAlias(), status); in PerlTestsUTF8() [all …]
|