HomeSort by relevance Sort by last modified time
    Searched refs:ustring (Results 51 - 72 of 72) sorted by null

1 23

  /external/webkit/JavaScriptCore/runtime/
JSGlobalObject.h 330 symbolTable().add(global.identifier.ustring().rep(), newEntry);
  /external/webkit/WebCore/platform/text/
String.cpp 43 using JSC::UString;
704 m_impl = StringImpl::create(str.ustring());
707 String::String(const UString& str)
714 String::operator UString() const
717 return UString();
718 return m_impl->ustring();
StringImpl.cpp 37 #include <runtime/UString.h>
1000 PassRefPtr<StringImpl> StringImpl::create(const JSC::UString& str)
1002 SharedUChar* sharedBuffer = const_cast<JSC::UString*>(&str)->rep()->sharedBuffer();
1012 JSC::UString StringImpl::ustring() function in class:WebCore::StringImpl
1016 return JSC::UString::Rep::create(sharedBuffer, const_cast<UChar*>(m_data), m_length);
1018 return JSC::UString(m_data, m_length);
  /external/chromium/third_party/icu/source/test/perf/ubrkperf/
ubrkperfold.cpp 63 #include <unicode/ustring.h>
  /external/icu4c/test/perf/ubrkperf/
ubrkperfold.cpp 63 #include <unicode/ustring.h>
  /external/webkit/WebCore/bindings/js/
JSDOMBinding.h 373 // See JavaScriptCore for explanation: Should be used for any UString that is already owned by another
375 JSC::JSValue jsOwnedStringOrNull(JSC::ExecState*, const JSC::UString&);
377 JSC::UString valueToStringWithNullCheck(JSC::ExecState*, JSC::JSValue); // null if the value is null
378 JSC::UString valueToStringWithUndefinedOrNullCheck(JSC::ExecState*, JSC::JSValue); // null if the value is null or undefined
439 return jsString(exec, stringImpl->ustring());
JSDOMBinding.cpp 561 JSString* wrapper = jsStringWithFinalizer(exec, stringImpl->ustring(), stringWrapperDestroyed, stringImpl);
576 JSValue jsOwnedStringOrNull(ExecState* exec, const UString& s)
623 UString valueToStringWithNullCheck(ExecState* exec, JSValue value)
626 return UString();
630 UString valueToStringWithUndefinedOrNullCheck(ExecState* exec, JSValue value)
633 return UString();
655 UString errorMessage = exception.toString(exec);
658 UString exceptionSourceURL = exceptionObject->get(exec, Identifier(exec, "sourceURL")).toString(exec);
SerializedScriptValue.cpp 59 m_names.append(String(propertyName.ustring()).crossThreadString().impl());
  /external/webkit/WebCore/bridge/
NP_jsobject.cpp 388 UString exception(message);
411 identifiers[i] = _NPN_GetStringIdentifier(propertyNames[i].ustring().UTF8String().c_str());
  /external/chromium/third_party/icu/
icuuc.scons 386 'source/common/ustring.c',
  /external/webkit/WebCore/plugins/
PluginView.cpp 85 using JSC::UString;
448 UString ustring = result.toString(exec); local
451 string = ustring;
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
NodesCodegen.cpp 77 static void substitute(UString& string, const UString& substring)
92 RegisterID* ThrowableExpressionData::emitThrowError(BytecodeGenerator& generator, ErrorType type, const char* messageTemplate, const UString& label)
94 UString message = messageTemplate;
104 return emitThrowError(generator, type, messageTemplate, label.ustring());
147 RefPtr<RegExp> regExp = RegExp::create(generator.globalData(), m_pattern.ustring(), m_flags.ustring());
    [all...]
  /external/chromium/third_party/icu/source/test/perf/collationperf/
collperf.cpp 71 #include <unicode/ustring.h>
    [all...]
  /external/chromium/third_party/icu/source/tools/dumpce/
dumpce.cpp 31 #include <unicode/ustring.h>
    [all...]
  /external/icu4c/test/perf/collationperf/
collperf.cpp 71 #include <unicode/ustring.h>
    [all...]
  /external/icu4c/tools/dumpce/
dumpce.cpp 31 #include <unicode/ustring.h>
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
utxttest.cpp 18 #include <unicode/ustring.h>
    [all...]
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm     [all...]
  /external/icu4c/test/intltest/
utxttest.cpp 18 #include <unicode/ustring.h>
    [all...]
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.cpp 49 static UString escapeQuotes(const UString& str)
51 UString result = str;
60 static UString valueToSourceString(ExecState* exec, JSValue val)
73 return makeString(valueToSourceString(exec, value), "(@k", UString::from(k - FirstConstantRegisterIndex), ")").UTF8String();
78 return makeString(ident.ustring(), "(@id", UString::from(id0), ")").UTF8String();
89 return makeString("r", UString::from(r)).UTF8String();
92 static UString regexpToSourceString(RegExp* regExp)
108 return makeString(regexpToSourceString(regexp), "(@re", UString::from(re), ")").UTF8String()
    [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 303 UString programSource = asString(program)->value(callFrame);
    [all...]
  /prebuilt/common/jython/
jython.jar 

Completed in 4268 milliseconds

1 23