Searched defs:is8Bit (Results 1 - 12 of 12) 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());
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 DStringOperators.h47 bool is8Bit() function in class:WTF::StringAppend
51 return adapter1.is8Bit() && adapter2.is8Bit();
56 ASSERT(is8Bit());
93 bool is8Bit() { return m_buffer.is8Bit(); } function in class:WTF::StringTypeAdapter
H A DStringBuilder.h63 m_is8Bit = m_string.is8Bit();
67 if (string.is8Bit())
86 if (other.is8Bit())
100 if (string.is8Bit())
111 if (string.is8Bit())
197 if (is8Bit())
259 bool is8Bit() const { return m_is8Bit; } function in class:WTF::StringBuilder
324 if (s.is8Bit())
336 if (s.is8Bit())
356 if (a.is8Bit()) {
[all...]
H A DAtomicString.h98 bool is8Bit() const { return m_string.is8Bit(); } function in class:WTF::AtomicString
H A DStringImpl.h205 bool is8Bit() const { return m_is8Bit; } function in class:WTF::StringImpl
207 ALWAYS_INLINE const LChar* characters8() const { ASSERT(is8Bit()); return reinterpret_cast<const LChar*>(this + 1); }
208 ALWAYS_INLINE const UChar* characters16() const { ASSERT(!is8Bit()); return reinterpret_cast<const UChar*>(this + 1); }
228 ASSERT(hash == (is8Bit() ? StringHasher::computeHashAndMaskTop8Bits(characters8(), m_length) : StringHasher::computeHashAndMaskTop8Bits(characters16(), m_length)));
324 if (is8Bit())
617 if (is8Bit())
629 if (is8Bit())
650 if (b->is8Bit())
698 bool string1Is8Bit = string1->is8Bit();
699 bool string2Is8Bit = string2->is8Bit();
[all...]
H A DWTFString.h164 ASSERT(m_impl->is8Bit());
172 ASSERT(!m_impl->is8Bit());
180 bool is8Bit() const { return m_impl->is8Bit(); } function in class:WTF::String
186 return m_impl->length() * (is8Bit() ? sizeof(LChar) : sizeof(UChar));
523 ASSERT(is8Bit());
530 ASSERT(!is8Bit());
539 if (is8Bit())
562 if (is8Bit())
581 if (string.is8Bit()) {
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
H A DWebString.cpp68 bool WebString::is8Bit() const function in class:WebKit::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;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderText.h72 bool is8Bit() const { return m_text.is8Bit(); } function in class:WebCore::RenderText
212 return is8Bit() ? characters8()[i] : characters16()[i];
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSParserValues.h64 if (string.is8Bit()) {
82 bool is8Bit() const { return m_is8Bit; } function in struct:WebCore::CSSParserString
83 const LChar* characters8() const { ASSERT(is8Bit()); return m_data.characters8; }
84 const UChar* characters16() const { ASSERT(!is8Bit()); return m_data.characters16; }
94 if (is8Bit())
101 if (is8Bit())
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/core/platform/text/
H A DSegmentedString.h48 if (m_string.is8Bit()) {
61 bool is8Bit() { return m_is8Bit; } function in class:WebCore::SegmentedSubstring
112 if (is8Bit())
120 if (is8Bit())
348 if (m_currentString.is8Bit()) {
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLDocumentParser.cpp561 static void switchEncoding(xmlParserCtxtPtr ctxt, bool is8Bit) argument
567 if (is8Bit) {
579 bool is8Bit = chunk.is8Bit(); local
580 switchEncoding(ctxt, is8Bit);
581 if (is8Bit)
864 TemporaryChange<bool> encodingScope(m_isCurrentlyParsing8BitChunk, parseString.is8Bit());

Completed in 1005 milliseconds