HomeSort by relevance Sort by last modified time
    Searched refs:m_is8Bit (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
TextRun.cpp 56 m_is8Bit = true;
59 m_is8Bit = string.is8Bit();
60 if (m_is8Bit)
TextRun.h 69 , m_is8Bit(true)
89 , m_is8Bit(false)
119 m_is8Bit = true;
123 m_is8Bit = true;
126 m_is8Bit = false;
147 m_is8Bit = true;
151 m_is8Bit = true;
154 m_is8Bit = false;
179 bool is8Bit() const { return m_is8Bit; }
183 void setText(const LChar* c, unsigned len) { m_data.characters8 = c; m_len = len; m_is8Bit = true;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringBuilder.h 44 , m_is8Bit(true)
63 m_is8Bit = m_string.is8Bit();
126 if (!m_is8Bit) {
142 if (m_is8Bit)
232 if (m_is8Bit)
239 ASSERT(m_is8Bit);
250 ASSERT(!m_is8Bit);
259 bool is8Bit() const { return m_is8Bit; }
267 m_is8Bit = true;
275 std::swap(m_is8Bit, stringBuilder.m_is8Bit)
    [all...]
StringBuilder.cpp 118 ASSERT(m_is8Bit);
132 ASSERT(!m_is8Bit);
146 ASSERT(m_is8Bit);
152 m_is8Bit = false;
166 ASSERT(m_is8Bit);
266 if (m_is8Bit) {
300 if (m_is8Bit) {
357 if (m_is8Bit)
StringImpl.h 126 , m_is8Bit(true)
142 , m_is8Bit(true)
153 , m_is8Bit(false)
165 , m_is8Bit(true)
205 bool is8Bit() const { return m_is8Bit; }
448 mutable unsigned m_is8Bit : 1;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSParserValues.h 41 m_is8Bit = true;
48 m_is8Bit = false;
61 m_is8Bit = true;
66 m_is8Bit = true;
69 m_is8Bit = false;
77 m_is8Bit = true;
82 bool is8Bit() const { return m_is8Bit; }
131 bool m_is8Bit;
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
TextBreakIterator.h 196 return !m_is8Bit && !m_iterator;
204 ASSERT(m_is8Bit);
211 ASSERT(m_is8Bit);
217 ASSERT(m_is8Bit);
221 bool m_is8Bit;
SegmentedString.h 37 , m_is8Bit(false)
49 m_is8Bit = true;
52 m_is8Bit = false;
56 m_is8Bit = false;
59 void clear() { m_length = 0; m_data.string16Ptr = 0; m_is8Bit = false;}
61 bool is8Bit() { return m_is8Bit; }
134 bool m_is8Bit;
TextBreakIteratorICU.cpp 567 : m_is8Bit(true)
576 m_is8Bit = string.is8Bit();
578 if (m_is8Bit) {
589 : m_is8Bit(false)
607 if (m_is8Bit)
615 if (!m_is8Bit)
627 if (!m_is8Bit)
634 if (!m_is8Bit)
641 if (!m_is8Bit)
652 if (!m_is8Bit)
    [all...]

Completed in 392 milliseconds