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

123

/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSStringRefQt.cpp44 RefPtr<OpaqueJSString> jsString = OpaqueJSString::create(qString); local
46 if (jsString)
47 return JSRetainPtr<JSStringRef>(Adopt, jsString.release().leakRef());
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/
H A DWKStringPrivate.h36 WK_EXPORT WKStringRef WKStringCreateWithJSString(JSStringRef jsString);
/macosx-10.9.5/JavaScriptCore-7537.78.1/profiler/
H A DProfilerBytecode.cpp39 result->putDirect(exec->vm(), exec->propertyNames().opcode, jsString(exec, String::fromUTF8(opcodeNames[m_opcodeID])));
40 result->putDirect(exec->vm(), exec->propertyNames().description, jsString(exec, String::fromUTF8(m_description)));
H A DProfilerOSRExitSite.cpp41 result->putDirectIndex(exec, i, jsString(exec, toString(RawPointer(m_codeAddresses[i]))));
H A DProfilerBytecodes.cpp59 result->putDirect(exec->vm(), exec->propertyNames().inferredName, jsString(exec, m_inferredName));
60 result->putDirect(exec->vm(), exec->propertyNames().sourceCode, jsString(exec, m_sourceCode));
61 result->putDirect(exec->vm(), exec->propertyNames().hash, jsString(exec, String::fromUTF8(toCString(m_hash))));
H A DProfilerCompiledBytecode.cpp50 result->putDirect(exec->vm(), exec->propertyNames().description, jsString(exec, String::fromUTF8(m_description)));
H A DProfilerOSRExit.cpp53 result->putDirect(exec->vm(), exec->propertyNames().exitKind, jsString(exec, exitKindToString(m_exitKind)));
H A DProfilerBytecodeSequence.cpp80 header->putDirectIndex(exec, i, jsString(exec, String::fromUTF8(m_header[i])));
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DOperations.h40 ALWAYS_INLINE JSValue jsString(ExecState* exec, JSString* s1, JSString* s2) function in namespace:JSC
56 ALWAYS_INLINE JSValue jsString(ExecState* exec, const String& u1, const String& u2, const String& u3) function in namespace:JSC
68 return jsString(exec, jsString(vm, u2), jsString(vm, u3));
70 return jsString(exec, jsString(vm, u1), jsString(vm, u3));
72 return jsString(exec, jsString(v
80 ALWAYS_INLINE JSValue jsString(ExecState* exec, Register* strings, unsigned count) function in namespace:JSC
[all...]
H A DNativeErrorPrototype.cpp39 putDirect(exec->vm(), exec->propertyNames().name, jsString(exec, nameAndMessage), DontEnum);
H A DNumberPrototype.cpp384 return JSValue::encode(jsString(exec, String::numberToStringECMAScript(x)));
394 return JSValue::encode(jsString(exec, String(builder.Finalize())));
417 return JSValue::encode(jsString(exec, String::numberToStringECMAScript(x)));
424 return JSValue::encode(jsString(exec, String(numberToFixedWidthString(x, decimalPlaces, buffer))));
448 return JSValue::encode(jsString(exec, String::numberToStringECMAScript(x)));
452 return JSValue::encode(jsString(exec, String::numberToStringECMAScript(x)));
455 return JSValue::encode(jsString(exec, String(numberToFixedPrecisionString(x, significantFigures, buffer))));
484 return JSValue::encode(jsString(vm, vm->numericStrings.add(value)));
487 return JSValue::encode(jsString(exec, toStringWithRadix(value, radix)));
507 return JSValue::encode(jsString(v
[all...]
H A DJSString.h40 JSString* jsString(VM*, const String&); // returns empty string if passed null string
41 JSString* jsString(ExecState*, const String&); // returns empty string if passed null string
50 // These functions are faster than just calling jsString.
212 friend JSValue jsString(ExecState*, JSString*, JSString*);
230 bool append(JSString* jsString) argument
234 if (static_cast<int32_t>(m_jsString->length() + jsString->length()) < 0) {
238 m_jsString->append(m_vm, m_index++, jsString);
290 void append(VM& vm, size_t index, JSString* jsString) argument
292 m_fibers[index].set(vm, this, jsString);
293 m_length += jsString
[all...]
H A DOperations.cpp51 return jsString(callFrame, asString(p1), p2.toString(callFrame));
54 return jsString(callFrame, p1.toString(callFrame), asString(p2));
H A DErrorInstance.h63 putDirect(vm, vm.propertyNames->message, jsString(&vm, message), DontEnum);
H A DInternalFunction.cpp47 putDirect(vm, vm.propertyNames->name, jsString(&vm, name), DontDelete | ReadOnly | DontEnum);
H A DStringPrototype.cpp159 return jsString(exec, string);
270 return jsString(exec, StringImpl::create(source.impl(), std::max(0, position), std::min(sourceSize, length)));
295 return jsString(exec, impl.release());
313 return jsString(exec, impl.release());
325 return jsString(exec, StringImpl::create(source.impl(), std::max(0, position), std::min(sourceSize, length)));
368 return jsString(exec, impl.release());
399 return jsString(exec, impl.release());
625 static inline EncodedJSValue replaceUsingStringSearch(ExecState* exec, JSString* jsString, JSValue searchValue) argument
627 const String& string = jsString->value(exec);
635 return JSValue::encode(jsString);
1172 JSString* jsString = 0; local
[all...]
H A DJSString.cpp42 JSString* jsString = m_jsString; local
43 RELEASE_ASSERT(jsString);
46 append(jsString);
H A DErrorPrototype.cpp126 return JSValue::encode(message.isString() ? message : jsString(exec, messageString));
H A DJSCJSValue.cpp301 return jsString(&vm, vm.numericStrings.add(asInt32()));
303 return jsString(&vm, vm.numericStrings.add(asDouble()));
H A DJSStringBuilder.h131 return jsString(exec, String::adopt(buffer8));
136 return jsString(exec, String::adopt(buffer16));
H A DStringConstructor.cpp82 return jsString(exec, impl);
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSInjectedScriptHostCustom.cpp136 return jsString(exec, String("string"));
138 return jsString(exec, String("array"));
140 return jsString(exec, String("boolean"));
142 return jsString(exec, String("number"));
144 return jsString(exec, String("date"));
146 return jsString(exec, String("regexp"));
148 return jsString(exec, String("node"));
150 return jsString(exec, String("array"));
152 return jsString(exec, String("array"));
154 return jsString(exe
[all...]
H A DJSJavaScriptCallFrameCustom.cpp66 return jsString(exec, ASCIILiteral("function"));
68 return jsString(exec, ASCIILiteral("program"));
H A DJSHTMLCanvasElementCustom.cpp139 JSValue result = JSC::jsString(exec, canvas->toDataURL(type, qualityPtr, ec));
H A DScriptFunctionCall.cpp68 m_arguments.append(jsString(m_exec, String(argument)));

Completed in 152 milliseconds

123