HomeSort by relevance Sort by last modified time
    Searched defs:is8Bit (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringOperators.h 46 bool is8Bit()
50 return adapter1.is8Bit() && adapter2.is8Bit();
55 ASSERT(is8Bit());
92 bool is8Bit() { return m_buffer.is8Bit(); }
StringView.h 71 bool is8Bit() const { return m_impl->is8Bit(); }
77 ASSERT(is8Bit());
85 ASSERT(!is8Bit());
93 if (m_impl->is8Bit())
StringConcatenate.h 57 bool is8Bit() { return true; }
80 bool is8Bit() { return true; }
103 bool is8Bit() { return m_buffer <= 0xff; }
107 ASSERT(is8Bit());
128 bool is8Bit() { return true; }
160 bool is8Bit() { return true; }
194 bool is8Bit() { return false; }
222 bool is8Bit() { return true; }
253 bool is8Bit() { return true; }
280 bool is8Bit() { return true;
    [all...]
StringBuilder.h 63 m_is8Bit = m_string.is8Bit();
67 if (string.is8Bit())
86 if (other.is8Bit())
101 if (string.is8Bit())
112 if (string.is8Bit())
200 if (is8Bit())
262 bool is8Bit() const { return m_is8Bit; }
327 if (s.is8Bit())
339 if (s.is8Bit())
359 if (a.is8Bit()) {
    [all...]
AtomicString.h 98 bool is8Bit() const { return m_string.is8Bit(); }
StringImpl.h 220 bool is8Bit() const { return m_is8Bit; }
222 ALWAYS_INLINE const LChar* characters8() const { ASSERT(is8Bit()); return reinterpret_cast<const LChar*>(this + 1); }
223 ALWAYS_INLINE const UChar* characters16() const { ASSERT(!is8Bit()); return reinterpret_cast<const UChar*>(this + 1); }
243 ASSERT(hash == (is8Bit() ? StringHasher::computeHashAndMaskTop8Bits(characters8(), m_length) : StringHasher::computeHashAndMaskTop8Bits(characters16(), m_length)));
341 if (is8Bit())
634 if (is8Bit())
646 if (is8Bit())
667 if (b->is8Bit())
715 bool string1Is8Bit = string1->is8Bit();
716 bool string2Is8Bit = string2->is8Bit();
    [all...]
WTFString.h 159 ASSERT(m_impl->is8Bit());
167 ASSERT(!m_impl->is8Bit());
175 bool is8Bit() const { return m_impl->is8Bit(); }
181 return m_impl->length() * (is8Bit() ? sizeof(LChar) : sizeof(UChar));
509 ASSERT(is8Bit());
516 ASSERT(!is8Bit());
525 if (is8Bit())
548 if (is8Bit())
567 if (string.is8Bit()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebString.cpp 68 bool WebString::is8Bit() const
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/css/
CSSParserValues.h 64 if (string.is8Bit()) {
82 bool is8Bit() const { return m_is8Bit; }
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/rendering/
RenderText.h 74 bool is8Bit() const { return m_text.is8Bit(); }
214 return is8Bit() ? characters8()[i] : characters16()[i];
  /external/chromium_org/third_party/WebKit/Source/platform/text/
SegmentedString.h 49 if (m_string.is8Bit()) {
63 bool is8Bit() { return m_is8Bit; }
115 if (is8Bit())
123 if (is8Bit())
351 if (m_currentString.is8Bit()) {
  /dalvik/vm/compiler/codegen/x86/
AnalysisO1.cpp     [all...]
AnalysisO1.h 232 bool is8Bit;
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp 556 static void switchEncoding(xmlParserCtxtPtr ctxt, bool is8Bit)
562 if (is8Bit) {
574 bool is8Bit = chunk.is8Bit();
575 switchEncoding(ctxt, is8Bit);
576 if (is8Bit)
875 TemporaryChange<bool> encodingScope(m_isCurrentlyParsing8BitChunk, parseString.is8Bit());
    [all...]

Completed in 1542 milliseconds