OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:removeCharacters
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/clipboard/
ClipboardUtilitiesPosix.cpp
49
name = name.
removeCharacters
(&isInvalidFileCharacter);
50
extension = extension.
removeCharacters
(&isInvalidFileCharacter);
ClipboardUtilitiesWin.cpp
41
// is intended for use with
removeCharacters
.
63
name = name.
removeCharacters
(&isInvalidFileCharacter);
64
extension = extension.
removeCharacters
(&isInvalidFileCharacter);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
EmailInputType.cpp
240
String noLineBreakValue = proposedValue.
removeCharacters
(isHTMLLineBreak);
TextFieldInputType.cpp
429
return limitLength(proposedValue.
removeCharacters
(isASCIILineBreak), HTMLInputElement::maximumLength);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.h
381
PassRefPtr<StringImpl>
removeCharacters
(CharacterMatchFunctionPtr);
383
ALWAYS_INLINE PassRefPtr<StringImpl>
removeCharacters
(const CharType* characters, CharacterMatchFunctionPtr);
StringImpl.cpp
886
ALWAYS_INLINE PassRefPtr<StringImpl> StringImpl::
removeCharacters
(const CharType* characters, CharacterMatchFunctionPtr findMatch)
918
PassRefPtr<StringImpl> StringImpl::
removeCharacters
(CharacterMatchFunctionPtr findMatch)
921
return
removeCharacters
(characters8(), findMatch);
922
return
removeCharacters
(characters16(), findMatch);
[
all
...]
WTFString.cpp
408
String String::
removeCharacters
(CharacterMatchFunctionPtr findMatch) const
412
return m_impl->
removeCharacters
(findMatch);
[
all
...]
WTFString.h
338
String
removeCharacters
(CharacterMatchFunctionPtr) const;
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
XSSAuditor.cpp
73
return string.
removeCharacters
(&isNonCanonicalCharacter);
/external/chromium_org/third_party/WebKit/Source/platform/network/
ResourceResponse.cpp
629
const String safeHeader = header.
removeCharacters
(isControlCharacter);
Completed in 199 milliseconds