Searched refs:jsString (Results 1 - 25 of 61) sorted by relevance

123

/external/webkit/JavaScriptCore/runtime/
H A DNativeErrorPrototype.cpp35 putDirect(exec->propertyNames().name, jsString(exec, name), 0);
36 putDirect(exec->propertyNames().message, jsString(exec, message), 0);
H A DNumberPrototype.cpp148 return jsString(exec, v.toString(exec));
162 return jsString(exec, UString::from(x));
201 return jsString(exec, startOfResultString);
212 return jsString(exec, v.toString(exec));
251 return jsString(exec, makeString(s, UString::from(x)));
273 return jsString(exec, makeString(s, m.substr(0, kMinusf), ".", m.substr(kMinusf)));
274 return jsString(exec, makeString(s, m.substr(0, kMinusf)));
324 return jsString(exec, UString::from(x));
384 return jsString(exec, buf);
396 return jsString(exe
[all...]
H A DOperations.cpp52 ? jsString(callFrame, asString(p1), asString(p2))
53 : jsString(callFrame, asString(p1), p2.toString(callFrame));
56 return jsString(callFrame, p1.toString(callFrame), asString(p2));
H A DJSString.h39 JSString* jsString(JSGlobalData*, const UString&); // returns empty string if passed null string
40 JSString* jsString(ExecState*, const UString&); // returns empty string if passed null string
50 // These functions are faster than just calling jsString.
146 void append(unsigned& index, JSString* jsString) argument
148 if (jsString->isRope()) {
149 for (unsigned i = 0; i < jsString->m_ropeLength; ++i)
150 append(index, jsString->m_fibers[i]);
152 append(index, jsString->string());
317 void appendStringInConstruct(unsigned& index, JSString* jsString) argument
319 if (jsString
436 inline JSString* jsString(JSGlobalData* globalData, const UString& s) function in namespace:JSC
485 inline JSString* jsString(ExecState* exec, const UString& s) { return jsString(&exec->globalData(), s); } function in namespace:JSC
[all...]
H A DError.cpp78 args.append(jsString(exec, name));
80 args.append(jsString(exec, message));
90 error->putWithAttributes(exec, Identifier(exec, "sourceURL"), jsString(exec, sourceURL), ReadOnly | DontDelete);
H A DStringConstructor.cpp38 return jsString(exec, impl);
82 return jsString(exec, args.at(0).toString(exec));
H A DErrorConstructor.cpp45 obj->putDirect(exec->propertyNames().message, jsString(exec, args.at(0).toString(exec)));
H A DInternalFunction.cpp43 putDirect(globalData->propertyNames->name, jsString(globalData, name.ustring()), DontDelete | ReadOnly | DontEnum);
H A DNativeErrorConstructor.cpp47 object->putDirect(exec->propertyNames().message, jsString(exec, args.at(0).toString(exec)));
H A DOperations.h38 ALWAYS_INLINE JSValue jsString(ExecState* exec, JSString* s1, JSString* s2) function in namespace:JSC
61 ALWAYS_INLINE JSValue jsString(ExecState* exec, const UString& u1, JSString* s2) function in namespace:JSC
79 ALWAYS_INLINE JSValue jsString(ExecState* exec, JSString* s1, const UString& u2) function in namespace:JSC
97 ALWAYS_INLINE JSValue jsString(ExecState* exec, Register* strings, unsigned count) function in namespace:JSC
131 ALWAYS_INLINE JSValue jsString(ExecState* exec, JSValue thisValue, const ArgList& args) function in namespace:JSC
334 ? jsString(callFrame, asString(v1), asString(v2))
335 : jsString(callFrame, asString(v1), v2.toPrimitiveString(callFrame));
H A DJSGlobalData.cpp95 JSCell* jsString = new (storage) JSString(JSString::VPtrStealingHack); local
96 JSGlobalData::jsStringVPtr = jsString->vptr();
97 jsString->~JSCell();
H A DJSStringBuilder.h42 return jsString(exec, UString::adopt(buffer));
H A DStringObject.cpp47 setInternalValue(jsString(exec, string));
/external/webkit/WebKitTools/DumpRenderTree/gtk/
H A DDumpRenderTreeGtk.h43 gchar* JSStringCopyUTF8CString(JSStringRef jsString);
H A DWorkQueueItemGtk.cpp30 gchar* JSStringCopyUTF8CString(JSStringRef jsString) argument
32 size_t dataSize = JSStringGetMaximumUTF8CStringSize(jsString);
34 JSStringGetUTF8CString(jsString, utf8, dataSize);
/external/webkit/WebCore/bindings/js/
H A DJSJavaScriptCallFrameCustom.cpp58 return jsString(exec, UString("function"));
60 return jsString(exec, UString("program"));
H A DScriptFunctionCall.cpp63 m_arguments.append(jsString(m_exec, argument));
74 m_arguments.append(jsString(m_exec, argument));
80 m_arguments.append(jsString(m_exec, argument));
86 m_arguments.append(jsString(m_exec, UString(argument)));
H A DJSHTMLInputElementCustom.cpp66 return jsString(exec, text);
67 return jsString(exec, type);
H A DJSClipboardCustom.cpp62 list.append(jsString(exec, UString(*it)));
97 return jsString(exec, result);
H A DJSSQLResultSetRowListCustom.cpp65 jsValue = jsString(exec, value.string());
H A DJSEventListener.cpp156 args.append(jsString(exec, message));
157 args.append(jsString(exec, url));
H A DJSCustomXPathNSResolver.cpp90 args.append(jsString(exec, prefix));
H A DScriptArray.cpp68 jsArray()->put(m_scriptState, index, jsString(m_scriptState, value));
H A DJSDOMBinding.h356 JSC::JSValue jsString(JSC::ExecState*, const String&); // empty if the string is null
358 JSC::JSValue jsString(JSC::ExecState*, const KURL&); // empty if the URL is null
359 inline JSC::JSValue jsString(JSC::ExecState* exec, const AtomicString& s) function in namespace:WebCore
361 return jsString(exec, s.string());
432 inline JSC::JSValue jsString(JSC::ExecState* exec, const String& s) function in namespace:WebCore
439 return jsString(exec, stringImpl->ustring());
H A DJSLazyEventListener.cpp104 args.append(jsString(exec, m_code));

Completed in 1430 milliseconds

123