HomeSort by relevance Sort by last modified time
    Searched refs:StringImpl (Results 26 - 50 of 143) sorted by null

12 3 4 5 6

  /external/webkit/Source/WebCore/platform/text/mac/
StringMac.mm 34 m_impl = StringImpl::empty();
38 m_impl = StringImpl::create(buffer.data(), size);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFenced.h 46 RefPtr<StringImpl> m_separators;
  /external/webkit/Source/JavaScriptCore/wtf/
WTFThreadData.h 53 typedef HashMap<const char*, RefPtr<StringImpl>, PtrHash<const char*> > LiteralIdentifierTable;
60 std::pair<HashSet<StringImpl*>::iterator, bool> add(StringImpl* value);
62 std::pair<HashSet<StringImpl*>::iterator, bool> add(U value);
64 bool remove(StringImpl* r)
66 HashSet<StringImpl*>::iterator iter = m_table.find(r);
76 HashSet<StringImpl*> m_table;
Forward.h 43 class StringImpl;
62 using WTF::StringImpl;
  /external/webkit/Source/JavaScriptCore/runtime/
UString.h 26 #include <wtf/text/StringImpl.h>
47 // Construct a string referencing an existing StringImpl.
48 UString(StringImpl* impl) : m_impl(impl) { }
49 UString(PassRefPtr<StringImpl> impl) : m_impl(impl) { }
50 UString(RefPtr<StringImpl> impl) : m_impl(impl) { }
58 static UString adopt(Vector<UChar, inlineCapacity>& vector) { return StringImpl::adopt(vector); }
63 StringImpl* impl() const { return m_impl.get(); }
113 RefPtr<StringImpl> m_impl;
118 StringImpl* rep1 = s1.impl();
119 StringImpl* rep2 = s2.impl()
    [all...]
UStringConcatenate.h 63 PassRefPtr<StringImpl> resultImpl = WTF::tryMakeString(string1, string2);
72 PassRefPtr<StringImpl> resultImpl = WTF::tryMakeString(string1, string2, string3);
81 PassRefPtr<StringImpl> resultImpl = WTF::tryMakeString(string1, string2, string3, string4);
90 PassRefPtr<StringImpl> resultImpl = WTF::tryMakeString(string1, string2, string3, string4, string5);
99 PassRefPtr<StringImpl> resultImpl = WTF::tryMakeString(string1, string2, string3, string4, string5, string6);
108 PassRefPtr<StringImpl> resultImpl = WTF::tryMakeString(string1, string2, string3, string4, string5, string6, string7);
117 PassRefPtr<StringImpl> resultImpl = WTF::tryMakeString(string1, string2, string3, string4, string5, string6, string7, string8);
RegExpKey.h 47 RefPtr<StringImpl> pattern;
65 RegExpKey(RegExpFlags flags, const PassRefPtr<StringImpl> pattern)
71 RegExpKey(RegExpFlags flags, const RefPtr<StringImpl>& pattern)
InitializeThreading.cpp 51 // StringImpl::empty() does not construct its static string in a threadsafe fashion,
53 StringImpl::empty();
RopeImpl.cpp 43 static_cast<StringImpl*>(fiber)->deref();
RopeImpl.h 29 #include <wtf/text/StringImpl.h>
36 // Each Fiber in a rope is either StringImpl or another RopeImpl.
59 static_cast<StringImpl*>(fiber)->deref();
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringBuilder.cpp 43 m_string = StringImpl::empty();
51 : StringImpl::create(m_buffer, 0, m_length);
76 m_string = StringImpl::create(m_string.impl(), 0, newSize);
97 RefPtr<StringImpl> buffer = StringImpl::createUninitialized(requiredLength, m_bufferCharacters);
166 m_string = StringImpl::createUninitialized(m_length, result);
AtomicString.h 48 ATOMICSTRING_CONVERSION AtomicString(StringImpl* imp) : m_string(add(imp)) { }
96 static void remove(StringImpl*);
119 static PassRefPtr<StringImpl> add(const char*);
120 static PassRefPtr<StringImpl> add(const UChar*, unsigned length);
121 static PassRefPtr<StringImpl> add(const UChar*, unsigned length, unsigned existingHash);
122 static PassRefPtr<StringImpl> add(const UChar*);
123 ALWAYS_INLINE PassRefPtr<StringImpl> add(StringImpl* r)
129 static PassRefPtr<StringImpl> addSlowCase(StringImpl*);
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/qt/
StringQt.cpp 40 m_impl = StringImpl::create(reinterpret_cast_ptr<const UChar*>(qstr.constData()), qstr.length());
47 m_impl = StringImpl::create(reinterpret_cast_ptr<const UChar*>(ref.unicode()), ref.length());
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaStringJSC.h 74 StringImpl* impl() const { return m_impl.get(); }
77 RefPtr<StringImpl> m_impl;
  /external/webkit/Source/WebCore/platform/
ThreadGlobalData.cpp 34 #include <wtf/text/StringImpl.h>
76 StringImpl::empty();
  /external/webkit/Source/WebCore/rendering/
RenderCombineText.h 30 RenderCombineText(Node*, PassRefPtr<StringImpl>);
44 virtual void setTextInternal(PassRefPtr<StringImpl>);
RenderText.h 35 RenderText(Node*, PassRefPtr<StringImpl>);
45 virtual PassRefPtr<StringImpl> originalText() const;
53 StringImpl* text() const { return m_text.impl(); }
94 void setText(PassRefPtr<StringImpl>, bool force = false);
95 void setTextWithOffset(PassRefPtr<StringImpl>, unsigned offset, unsigned len, bool force = false);
140 virtual void setTextInternal(PassRefPtr<StringImpl>);
RenderBR.cpp 32 : RenderText(node, StringImpl::create("\n"))
RenderQuote.h 41 virtual PassRefPtr<StringImpl> originalText() const;
  /external/webkit/Source/JavaScriptCore/wtf/haiku/
StringHaiku.cpp 40 m_impl = StringImpl::empty();
  /external/webkit/Source/JavaScriptCore/bytecode/
JumpTable.h 48 typedef HashMap<RefPtr<StringImpl>, OffsetLocation> StringOffsetTable;
54 inline int32_t offsetForValue(StringImpl* value, int32_t defaultOffset)
64 inline CodeLocationLabel ctiForValue(StringImpl* value)
  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMString.cpp 29 class WebDOMStringPrivate : public WTF::StringImpl {
48 WTF::StringImpl::create(data, length).get()));
108 return WTF::AtomicString(static_cast<WTF::StringImpl *>(m_private));
  /external/webkit/Source/WebCore/rendering/style/
ContentData.h 73 StringImpl* text() const
78 void setText(PassRefPtr<StringImpl> text)
118 StringImpl* m_text;
  /external/webkit/Source/WebKit/chromium/src/
WebString.cpp 42 class WebStringPrivate : public WTF::StringImpl {
61 WTF::StringImpl::create(data, length).get()));
126 return WTF::AtomicString(static_cast<WTF::StringImpl *>(m_private));
  /external/webkit/Source/WebCore/bridge/jni/
JavaString.h 63 StringImpl* impl() const { return m_impl.impl(); }

Completed in 278 milliseconds

12 3 4 5 6