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.h46 bool is8Bit() function in class:WTF::StringAppend
50 return adapter1.is8Bit() && adapter2.is8Bit();
55 ASSERT(is8Bit());
92 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
160 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
194 bool is8Bit() { return false; } function in class:WTF::StringTypeAdapter
222 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
253 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
280 bool is8Bit() { retur function in class:WTF::StringTypeAdapter
308 bool is8Bit() { return true; } function in class:WTF::StringTypeAdapter
336 bool is8Bit() { return m_buffer.isNull() || m_buffer.is8Bit(); } function in class:WTF::StringTypeAdapter
381 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.h94 bool is8Bit() const { return m_string.is8Bit(); } function in class:WTF::AtomicString
H A DStringImpl.h219 bool is8Bit() const { return m_is8Bit; } function in class:WTF::StringImpl
221 ALWAYS_INLINE const LChar* characters8() const { ASSERT(is8Bit()); return reinterpret_cast<const LChar*>(this + 1); }
222 ALWAYS_INLINE const UChar* characters16() const { ASSERT(!is8Bit()); return reinterpret_cast<const UChar*>(this + 1); }
242 ASSERT(hash == (is8Bit() ? StringHasher::computeHashAndMaskTop8Bits(characters8(), m_length) : StringHasher::computeHashAndMaskTop8Bits(characters16(), m_length)));
317 if (is8Bit())
613 if (is8Bit())
625 if (is8Bit())
646 if (b->is8Bit())
694 bool string1Is8Bit = string1->is8Bit();
695 bool string2Is8Bit = string2->is8Bit();
[all...]
H A DWTFString.h165 ASSERT(m_impl->is8Bit());
173 ASSERT(!m_impl->is8Bit());
181 bool is8Bit() const { return m_impl->is8Bit(); } function in class:WTF::String
187 return m_impl->length() * (is8Bit() ? sizeof(LChar) : sizeof(UChar));
505 ASSERT(is8Bit());
512 ASSERT(!is8Bit());
521 if (is8Bit())
544 if (is8Bit())
563 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.h76 bool is8Bit() const { return m_text.is8Bit(); } function in class:WebCore::RenderText
215 return is8Bit() ? characters8()[i] : characters16()[i];
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSParserValues.h64 if (string.is8Bit()) {
80 bool is8Bit() const { return m_is8Bit; } function in struct:WebCore::CSSParserString
81 const LChar* characters8() const { ASSERT(is8Bit()); return m_data.characters8; }
82 const UChar* characters16() const { ASSERT(!is8Bit()); return m_data.characters16; }
92 if (is8Bit())
99 bool match = is8Bit() ? WTF::equalIgnoringCase(str, characters8(), length()) : WTF::equalIgnoringCase(str, characters16(), length());
116 return is8Bit() ? WTF::equalIgnoringCase(str, characters8(), strLength) : WTF::equalIgnoringCase(str, characters16(), strLength);
119 operator String() const { return is8Bit() ? String(m_data.characters8, m_length) : StringImpl::create8BitIfPossible(m_data.characters16, m_length); }
120 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:WebCore::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.cpp541 static void switchEncoding(xmlParserCtxtPtr ctxt, bool is8Bit) argument
547 if (is8Bit) {
559 bool is8Bit = chunk.is8Bit(); local
560 switchEncoding(ctxt, is8Bit);
561 if (is8Bit)
879 TemporaryChange<bool> encodingScope(m_isCurrentlyParsing8BitChunk, parseString.is8Bit());

Completed in 385 milliseconds