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

1 23 4 5 6

  /external/webkit/Source/JavaScriptCore/runtime/
SymbolTable.h 122 typedef HashMap<RefPtr<StringImpl>, SymbolTableEntry, IdentifierRepHash, HashTraits<RefPtr<StringImpl> >, SymbolTableIndexHashTraits> SymbolTable;
JSStringBuilder.h 90 PassRefPtr<StringImpl> result = WTF::tryMakeString(string1, string2);
99 PassRefPtr<StringImpl> result = WTF::tryMakeString(string1, string2, string3);
108 PassRefPtr<StringImpl> result = WTF::tryMakeString(string1, string2, string3, string4);
117 PassRefPtr<StringImpl> result = WTF::tryMakeString(string1, string2, string3, string4, string5);
126 PassRefPtr<StringImpl> result = WTF::tryMakeString(string1, string2, string3, string4, string5, string6);
JSString.cpp 53 if (PassRefPtr<StringImpl> newImpl = StringImpl::tryCreateUninitialized(m_length, buffer))
85 StringImpl* string = static_cast<StringImpl*>(currentFiber);
88 StringImpl::copyChars(position, string->characters(), length);
131 StringImpl* fiberString = *it;
141 substringFibers[substringFiberCount++] = UString(StringImpl::create(fiberString, copyStart - fiberStart, copyEnd - copyStart));
178 StringImpl* matchString = 0;
185 StringImpl* string = *it;
200 StringImpl* string = *it
    [all...]
SmallStrings.h 64 StringImpl* singleCharacterStringRep(unsigned char character);
StructureTransitionTable.h 44 typedef std::pair<RefPtr<StringImpl>, unsigned> Key;
59 typedef WTF::HashTraits<RefPtr<StringImpl> > FirstTraits;
104 inline bool contains(StringImpl* rep, unsigned attributes) const;
105 inline Structure* get(StringImpl* rep, unsigned attributes) const;
Lookup.cpp 36 StringImpl* identifier = Identifier::add(globalData, values[i].key).leakRef();
63 if (StringImpl* key = table[i].key())
StringConstructor.cpp 36 PassRefPtr<StringImpl> impl = StringImpl::createUninitialized(length, buf);
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringConcatenate.h 196 PassRefPtr<StringImpl> tryMakeString(StringType1 string1, StringType2 string2)
207 RefPtr<StringImpl> resultImpl = StringImpl::tryCreateUninitialized(length, buffer);
220 PassRefPtr<StringImpl> tryMakeString(StringType1 string1, StringType2 string2, StringType3 string3)
233 RefPtr<StringImpl> resultImpl = StringImpl::tryCreateUninitialized(length, buffer);
248 PassRefPtr<StringImpl> tryMakeString(StringType1 string1, StringType2 string2, StringType3 string3, StringType4 string4)
263 RefPtr<StringImpl> resultImpl = StringImpl::tryCreateUninitialized(length, buffer);
280 PassRefPtr<StringImpl> tryMakeString(StringType1 string1, StringType2 string2, StringType3 string3, StringType4 string4, (…)
    [all...]
WTFString.cpp 43 : m_impl(characters ? StringImpl::create(characters, length) : 0)
60 m_impl = StringImpl::create(str, len);
65 : m_impl(characters ? StringImpl::create(characters, length) : 0)
71 : m_impl(characters ? StringImpl::create(characters) : 0)
82 // one String is pointing at this StringImpl, but even then it's going to require a
89 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + str.length(), data);
102 // one String is pointing at this StringImpl, but even then it's going to require a
108 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + 1, data)
    [all...]
StringBuilder.h 131 RefPtr<StringImpl> m_buffer;
  /external/webkit/Source/WebCore/platform/text/
TextEncoding.h 47 PassRefPtr<StringImpl> displayString(PassRefPtr<StringImpl> str) const
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageEditorClient.cpp 67 bool InjectedBundlePageEditorClient::shouldInsertText(WebPage* page, StringImpl* text, Range* rangeToReplace, EditorInsertAction action)
104 void InjectedBundlePageEditorClient::didBeginEditing(WebPage* page, StringImpl* notificationName)
110 void InjectedBundlePageEditorClient::didEndEditing(WebPage* page, StringImpl* notificationName)
116 void InjectedBundlePageEditorClient::didChange(WebPage* page, StringImpl* notificationName)
122 void InjectedBundlePageEditorClient::didChangeSelection(WebPage* page, StringImpl* notificationName)
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGInlineText.cpp 43 static PassRefPtr<StringImpl> applySVGWhitespaceRules(PassRefPtr<StringImpl> string, bool preserveWhiteSpace)
50 RefPtr<StringImpl> newString = string->replace('\t', ' ');
61 RefPtr<StringImpl> newString = string->replace('\n', StringImpl::empty());
62 newString = newString->replace('\r', StringImpl::empty());
67 RenderSVGInlineText::RenderSVGInlineText(Node* n, PassRefPtr<StringImpl> string)
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 146 typedef HashMap<RefPtr<StringImpl>, MethodList*> MethodListMap;
147 typedef HashMap<RefPtr<StringImpl>, Method*> MethodMap;
148 typedef HashMap<RefPtr<StringImpl>, Field*> FieldMap;
  /external/webkit/Source/JavaScriptCore/wtf/wx/
StringWx.cpp 75 m_impl = StringImpl::create(str, len);
  /external/webkit/Source/WebCore/rendering/
RenderCounter.h 46 virtual PassRefPtr<StringImpl> originalText() const;
RenderCombineText.cpp 30 RenderCombineText::RenderCombineText(Node* node, PassRefPtr<StringImpl> string)
49 void RenderCombineText::setTextInternal(PassRefPtr<StringImpl> text)
  /external/webkit/Source/WebCore/rendering/style/
ContentData.cpp 26 #include <wtf/text/StringImpl.h>
  /external/webkit/Source/JavaScriptCore/API/
JSClassRef.h 62 typedef HashMap<RefPtr<StringImpl>, StaticValueEntry*> OpaqueJSClassStaticValuesTable;
63 typedef HashMap<RefPtr<StringImpl>, StaticFunctionEntry*> OpaqueJSClassStaticFunctionsTable;
JSClassRef.cpp 86 StringImpl* impl = valueName.impl();
102 StringImpl* impl = functionName.impl();
171 staticValues->add(StringImpl::create(it->first->characters(), it->first->length()), entry);
183 staticFunctions->add(StringImpl::create(it->first->characters(), it->first->length()), entry);
  /external/webkit/Source/WebCore/svg/
SVGElement.h 132 virtual bool isSupported(StringImpl* feature, StringImpl* version) const;
  /external/webkit/Source/WebCore/dom/
CharacterData.cpp 38 StringImpl* dataImpl = data.impl() ? data.impl() : StringImpl::empty();
171 void CharacterData::setDataAndUpdate(PassRefPtr<StringImpl> newData, unsigned offsetOfReplacedData, unsigned oldLength, unsigned newLength)
175 RefPtr<StringImpl> oldData = m_data;
190 void CharacterData::dispatchModifiedEvent(StringImpl* oldData)
QualifiedName.h 30 StringImpl* m_prefix;
31 StringImpl* m_localName;
32 StringImpl* m_namespace;
  /external/webkit/Source/WebCore/platform/
Length.cpp 99 RefPtr<StringImpl> str = StringImpl::adopt(spacified);
123 RefPtr<StringImpl> str = string.impl()->simplifyWhiteSpace();
  /external/webkit/Source/JavaScriptCore/bytecode/
EvalCodeCache.h 76 typedef HashMap<RefPtr<StringImpl>, WriteBarrier<EvalExecutable> > EvalCacheMap;

Completed in 1053 milliseconds

1 23 4 5 6