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

1 2 3

  /external/icu4c/samples/ustring/
Makefile 11 TARGET=ustring
14 OBJECTS=ustring.o
  /external/webkit/JavaScriptCore/API/
OpaqueJSString.cpp 35 PassRefPtr<OpaqueJSString> OpaqueJSString::create(const UString& ustring)
37 if (!ustring.isNull())
38 return adoptRef(new OpaqueJSString(ustring.data(), ustring.size()));
42 UString OpaqueJSString::ustring() const function in class:OpaqueJSString
45 return UString(m_characters, m_length);
46 return UString::null();
JSProfilerPrivate.cpp 37 Profiler::profiler()->startProfiling(toJS(ctx), title->ustring());
44 profiler->stopProfiling(exec, title->ustring());
JSBase.cpp 53 SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber);
74 SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber);
OpaqueJSString.h 29 #include <runtime/UString.h>
48 static PassRefPtr<OpaqueJSString> create(const JSC::UString&);
53 JSC::UString ustring() const;
JSCallbackObjectFunctions.h 100 UString JSCallbackObject<Base>::className() const
102 UString thisClassName = classRef()->className();
120 propertyNameRef = OpaqueJSString::create(propertyName.ustring());
128 propertyNameRef = OpaqueJSString::create(propertyName.ustring());
147 if (staticValues->contains(propertyName.ustring().rep())) {
154 if (staticFunctions->contains(propertyName.ustring().rep())) {
200 propertyNameRef = OpaqueJSString::create(propertyName.ustring());
214 if (StaticValueEntry* entry = staticValues->get(propertyName.ustring().rep())) {
219 propertyNameRef = OpaqueJSString::create(propertyName.ustring());
236 if (StaticFunctionEntry* entry = staticFunctions->get(propertyName.ustring().rep()))
    [all...]
  /external/webkit/JavaScriptCore/runtime/
PropertyNameArray.cpp 31 void PropertyNameArray::add(UString::Rep* identifier)
33 ASSERT(identifier == &UString::Rep::empty() || identifier->isIdentifier());
38 if (identifier == m_data->propertyNameVector()[i].ustring().rep())
44 m_set.add(m_data->propertyNameVector()[i].ustring().rep());
JSVariableObject.cpp 39 if (symbolTable().contains(propertyName.ustring().rep()))
63 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep());
JSVariableObject.h 106 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep());
116 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep());
129 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep());
142 SymbolTable::iterator iter = symbolTable().find(propertyName.ustring().rep());
InternalFunction.cpp 43 putDirect(globalData->propertyNames->name, jsString(globalData, name.ustring()), DontDelete | ReadOnly | DontEnum);
46 const UString& InternalFunction::name(ExecState* exec)
51 const UString InternalFunction::displayName(ExecState* exec)
58 return UString::null();
61 const UString InternalFunction::calculatedDisplayName(ExecState* exec)
63 const UString explicitName = displayName(exec);
JSStaticScopeObject.h 50 symbolTable().add(ident.ustring().rep(), SymbolTableEntry(-1, attributes));
PropertyNameArray.h 71 void add(const Identifier& identifier) { add(identifier.ustring().rep()); }
72 void add(UString::Rep*);
73 void addKnownUnique(UString::Rep* identifier) { m_data->propertyNameVector().append(Identifier(m_globalData, identifier)); }
89 typedef HashSet<UString::Rep*, PtrHash<UString::Rep*> > IdentifierSet;
JSPropertyNameIterator.cpp 47 m_jsStrings[i] = jsOwnedString(exec, propertyNameVector[i].ustring());
  /external/webkit/WebCore/bridge/c/
c_class.cpp 77 Method* method = _methods.get(identifier.ustring().rep());
90 _methods.set(identifier.ustring().rep(), aMethod);
100 Field* aField = _fields.get(identifier.ustring().rep());
111 _fields.set(identifier.ustring().rep(), aField);
c_utility.cpp 76 UString ustring = value.toString(exec); local
77 CString cstring = ustring.UTF8String();
  /external/webkit/WebCore/bindings/js/
ScriptValue.cpp 39 #include <runtime/UString.h>
50 UString ustring; local
51 if (!m_value.get().getString(scriptState, ustring))
53 result = ustring;
  /external/chromium/third_party/icu/source/test/letest/
letsutil.cpp 30 char *getCString(const UnicodeString *uString)
32 if (uString == NULL) {
36 le_int32 uLength = uString->length();
37 le_int32 cLength = uString->extract(0, uLength, NULL, 0, US_INV);
40 uString->extract(0, uLength, cString, cLength, US_INV);
52 const UnicodeString ustring(uChars);
54 return getCString(&ustring);
57 char *getUTF8String(const UnicodeString *uString)
59 if (uString == NULL) {
63 le_int32 uLength = uString->length()
    [all...]
  /external/icu4c/test/letest/
letsutil.cpp 30 char *getCString(const UnicodeString *uString)
32 if (uString == NULL) {
36 le_int32 uLength = uString->length();
37 le_int32 cLength = uString->extract(0, uLength, NULL, 0, US_INV);
40 uString->extract(0, uLength, cString, cLength, US_INV);
52 const UnicodeString ustring(uChars);
54 return getCString(&ustring);
57 char *getUTF8String(const UnicodeString *uString)
59 if (uString == NULL) {
63 le_int32 uLength = uString->length()
    [all...]
  /external/webkit/WebCore/bridge/qt/
qt_class.cpp 129 UString ustring = identifier.ustring(); local
130 QString objName((const QChar*)ustring.rep()->data(), ustring.size());
qt_runtime.cpp 292 UString str = value.toString(exec);
307 UString ustring = value.toString(exec); local
308 ret = QVariant(QString((const QChar*)ustring.rep()->data(), ustring.size()));
331 UString ustring = (*it).ustring(); local
332 QString id = QString((const QChar*)ustring.rep()->data(), ustring.size())
406 UString ustring = val.toString(exec); local
420 UString ustring = val.toString(exec); local
429 UString ustring = value.toString(exec); local
445 UString ustring = value.toString(exec); local
487 UString ustring = value.toString(exec); local
536 UString ustring = value.toString(exec); local
556 UString ustring = value.toString(exec); local
    [all...]
qt_pixmapruntime.cpp 131 const UString ustring((UChar*)b64.utf16(), b64.length());
132 return jsString(exec, ustring);
225 arr.add(Identifier(exec, UString(QtPixmapToDataUrlMethod::name())));
226 arr.add(Identifier(exec, UString(QtPixmapCreateElementMethod::name())));
227 arr.add(Identifier(exec, UString(QtPixmapToStringMethod::name())));
228 arr.add(Identifier(exec, UString(QtPixmapWidthField::name())));
229 arr.add(Identifier(exec, UString(QtPixmapHeightField::name())));
247 UString ustring((UChar*)toStr.utf16(), toStr.length())
    [all...]
  /external/webkit/WebCore/platform/text/
AtomicString.cpp 38 using JSC::UString;
250 UString::Rep* string = identifier.ustring().rep();
262 PassRefPtr<StringImpl> AtomicString::add(const JSC::UString& ustring)
264 if (ustring.isNull())
267 UString::Rep* string = ustring.rep();
284 UString::Rep* string = identifier.ustring().rep()
    [all...]
  /external/webkit/WebCore/bridge/jni/jsc/
JavaClassJSC.cpp 66 m_fields.set(((UString)aField->name()).rep(), aField);
83 methodList = m_methods.get(((UString)aMethod->name()).rep());
86 m_methods.set(((UString)aMethod->name()).rep(), methodList);
118 MethodList* methodList = m_methods.get(identifier.ustring().rep());
127 return m_fields.get(identifier.ustring().rep());
  /external/icu4c/samples/
Makefile 23 ALLSUBDIRS = break case csdet datefmt msgfmt numfmt props translit ucnv udata ufortune uresb ustring citer uciter8
  /external/icu4c/samples/break/
ubreak.c 12 #include <unicode/ustring.h>

Completed in 607 milliseconds

1 2 3