Searched defs:is8Bit (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringView.h71 bool is8Bit() const { return m_impl->is8Bit(); } function in class:WTF::StringView
77 ASSERT(is8Bit());
85 ASSERT(!is8Bit());
93 if (m_impl->is8Bit())
H A DStringOperators.h38 bool is8Bit();
71 bool StringAppend<StringType1, StringType2>::is8Bit() function in class:WTF::StringAppend
75 return adapter1.is8Bit() && adapter2.is8Bit();
81 ASSERT(is8Bit());
115 bool is8Bit() { return m_buffer.is8Bit(); } function in class:WTF::StringTypeAdapter
H A DStringConcatenate.h57 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
80 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
103 bool is8Bit() { return m_buffer <= 0xff; } function in class:WTF::StringTypeAdapter
107 ASSERT(is8Bit());
128 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
146 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
164 bool is8Bit() { return false; } function in class:WTF::StringTypeAdapter
185 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
203 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
224 bool is8Bit() { retur function in class:WTF::StringTypeAdapter
244 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
264 bool is8Bit() { return m_buffer.isNull() || m_buffer.is8Bit(); } function in class:WTF::StringTypeAdapter
284 bool is8Bit() { return m_adapter.is8Bit(); } function in class:WTF::StringTypeAdapter
[all...]
H A DStringBuilder.h63 m_is8Bit = m_string.is8Bit();
67 if (string.is8Bit())
86 if (other.is8Bit())
101 if (string.is8Bit())
112 if (string.is8Bit())
201 if (is8Bit())
263 bool is8Bit() const { return m_is8Bit; } function in class:WTF::StringBuilder
328 if (s.is8Bit())
340 if (s.is8Bit())
360 if (a.is8Bit()) {
[all...]
H A DAtomicString.h83 bool is8Bit() const { return m_string.is8Bit(); } function in class:WTF::AtomicString
H A DStringImpl.h232 bool is8Bit() const { return m_is8Bit; } function in class:WTF::StringImpl
234 ALWAYS_INLINE const LChar* characters8() const { ASSERT(is8Bit()); return reinterpret_cast<const LChar*>(this + 1); }
235 ALWAYS_INLINE const UChar* characters16() const { ASSERT(!is8Bit()); return reinterpret_cast<const UChar*>(this + 1); }
255 ASSERT(hash == (is8Bit() ? StringHasher::computeHashAndMaskTop8Bits(characters8(), m_length) : StringHasher::computeHashAndMaskTop8Bits(characters16(), m_length)));
331 if (is8Bit())
627 if (is8Bit())
639 if (is8Bit())
660 if (b->is8Bit())
708 bool string1Is8Bit = string1->is8Bit();
709 bool string2Is8Bit = string2->is8Bit();
[all...]
H A DWTFString.h153 ASSERT(m_impl->is8Bit());
161 ASSERT(!m_impl->is8Bit());
169 bool is8Bit() const { return m_impl->is8Bit(); } function in class:WTF::String
175 return m_impl->length() * (is8Bit() ? sizeof(LChar) : sizeof(UChar));
493 ASSERT(is8Bit());
500 ASSERT(!is8Bit());
509 if (is8Bit())
532 if (is8Bit())
551 if (string.is8Bit()) {
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebString.cpp68 bool WebString::is8Bit() const function in class:blink::WebString
70 return m_private->is8Bit();
75 return !m_private.isNull() && is8Bit() ? m_private->characters8() : 0;
80 return !m_private.isNull() && !is8Bit() ? m_private->characters16() : 0;
106 if (string.is8Bit())
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTScanner.h58 Run(Position start, Position end, bool is8Bit) argument
59 : m_start(start), m_end(end), m_is8Bit(is8Bit) { }
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderText.h77 bool is8Bit() const { return m_text.is8Bit(); } function in class:blink::RenderText
219 return is8Bit() ? characters8()[i] : characters16()[i];
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParserValues.h63 if (string.is8Bit()) {
79 bool is8Bit() const { return m_is8Bit; } function in struct:blink::CSSParserString
80 const LChar* characters8() const { ASSERT(is8Bit()); return m_data.characters8; }
81 const UChar* characters16() const { ASSERT(!is8Bit()); return m_data.characters16; }
91 if (is8Bit())
98 bool match = is8Bit() ? WTF::equalIgnoringCase(str, characters8(), length()) : WTF::equalIgnoringCase(str, characters16(), length());
115 return is8Bit() ? WTF::equalIgnoringCase(str, characters8(), strLength) : WTF::equalIgnoringCase(str, characters16(), strLength);
118 operator String() const { return is8Bit() ? String(m_data.characters8, m_length) : StringImpl::create8BitIfPossible(m_data.characters16, m_length); }
119 operator AtomicString() const { return is8Bit() ? AtomicString(m_data.characters8, m_length) : AtomicString(m_data.characters16, m_length); }
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DSegmentedString.h49 if (m_string.is8Bit()) {
63 bool is8Bit() { return m_is8Bit; } function in class:blink::SegmentedSubstring
115 if (is8Bit())
123 if (is8Bit())
347 if (m_currentString.is8Bit()) {
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLDocumentParser.cpp549 static void switchEncoding(xmlParserCtxtPtr ctxt, bool is8Bit) argument
555 if (is8Bit) {
567 bool is8Bit = chunk.is8Bit(); local
568 switchEncoding(ctxt, is8Bit);
569 if (is8Bit)
888 TemporaryChange<bool> encodingScope(m_isCurrentlyParsing8BitChunk, parseString.is8Bit());

Completed in 4129 milliseconds