Searched refs:UString (Results 1 - 25 of 192) sorted by relevance

12345678

/external/webkit/Source/WebCore/ForwardingHeaders/runtime/
H A DUString.h3 #include <JavaScriptCore/UString.h>
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrSyntaxChecker.h29 #include <runtime/UString.h>
33 const char* checkSyntax(const UString& pattern);
/external/icu4c/tools/genrb/
H A Dustr.h39 struct UString { struct
45 void ustr_init(struct UString *s);
48 ustr_initChars(struct UString *s, const char* source, int32_t length, UErrorCode *status);
50 void ustr_deinit(struct UString *s);
52 void ustr_setlen(struct UString *s, int32_t len, UErrorCode *status);
54 void ustr_cpy(struct UString *dst, const struct UString *src,
57 void ustr_cat(struct UString *dst, const struct UString *src,
60 void ustr_ncat(struct UString *ds
[all...]
H A Dread.h46 struct UString *token,
48 struct UString *comment,
/external/webkit/Source/JavaScriptCore/runtime/
H A DError.h37 class UString;
40 JSObject* createError(JSGlobalObject*, const UString&);
41 JSObject* createEvalError(JSGlobalObject*, const UString&);
42 JSObject* createRangeError(JSGlobalObject*, const UString&);
43 JSObject* createReferenceError(JSGlobalObject*, const UString&);
44 JSObject* createSyntaxError(JSGlobalObject*, const UString&);
45 JSObject* createTypeError(JSGlobalObject*, const UString&);
46 JSObject* createURIError(JSGlobalObject*, const UString&);
48 JSObject* createError(ExecState*, const UString&);
49 JSObject* createEvalError(ExecState*, const UString
[all...]
H A DUString.h30 class UString { class in namespace:JSC
33 UString() { } function in class:JSC::UString
36 UString(const UChar* characters, unsigned length);
39 UString(const UChar*);
42 UString(const char* characters, unsigned length);
45 UString(const char* characters);
48 UString(StringImpl* impl) : m_impl(impl) { } function in class:JSC::UString
49 UString(PassRefPtr<StringImpl> impl) : m_impl(impl) { } function in class:JSC::UString
50 UString(RefPtr<StringImpl> impl) : m_impl(impl) { } function in class:JSC::UString
53 ALWAYS_INLINE ~UString() { }
[all...]
H A DUStringBuilder.h36 void append(const UString& str) { append(String(str.impl())); }
38 UString toUString() { return toString().impl(); }
H A DUString.cpp25 #include "UString.h"
57 COMPILE_ASSERT(sizeof(UString) == sizeof(void*), UString_should_stay_small);
60 UString::UString(const UChar* characters, unsigned length) function in class:JSC::UString
66 UString::UString(const UChar* characters) function in class:JSC::UString
79 UString::UString(const char* characters, unsigned length) function in class:JSC::UString
85 UString::UString(cons function in class:JSC::UString
[all...]
H A DRegExp.h25 #include "UString.h"
36 RegExpFlags regExpFlags(const UString&);
40 static PassRefPtr<RegExp> create(JSGlobalData* globalData, const UString& pattern, RegExpFlags);
47 const UString& pattern() const { return m_patternString; }
52 int match(const UString&, int startOffset, Vector<int, 32>* ovector = 0);
60 RegExp(JSGlobalData* globalData, const UString& pattern, RegExpFlags);
71 void matchCompareWithInterpreter(const UString&, int startOffset, int* offsetVector, int jitResult);
74 UString m_patternString;
H A DNativeErrorPrototype.h31 NativeErrorPrototype(ExecState*, JSGlobalObject*, Structure*, const UString&, NativeErrorConstructor*);
H A DNumericStrings.h29 #include "UString.h"
37 UString add(double d)
43 entry.value = UString::number(d);
47 UString add(int i)
55 entry.value = UString::number(i);
59 UString add(unsigned i)
67 entry.value = UString::number(i);
76 UString value;
82 const UString& lookupSmallString(unsigned i)
86 smallIntCache[i] = UString
[all...]
H A DInternalFunction.cpp51 const UString& InternalFunction::name(ExecState* exec)
56 const UString InternalFunction::displayName(ExecState* exec)
63 return UString();
66 const UString InternalFunction::calculatedDisplayName(ExecState* exec)
68 const UString explicitName = displayName(exec);
H A DInternalFunction.h38 const UString& name(ExecState*);
39 const UString displayName(ExecState*);
40 const UString calculatedDisplayName(ExecState*);
H A DError.cpp42 JSObject* createError(JSGlobalObject* globalObject, const UString& message)
48 JSObject* createEvalError(JSGlobalObject* globalObject, const UString& message)
54 JSObject* createRangeError(JSGlobalObject* globalObject, const UString& message)
60 JSObject* createReferenceError(JSGlobalObject* globalObject, const UString& message)
66 JSObject* createSyntaxError(JSGlobalObject* globalObject, const UString& message)
72 JSObject* createTypeError(JSGlobalObject* globalObject, const UString& message)
78 JSObject* createURIError(JSGlobalObject* globalObject, const UString& message)
84 JSObject* createError(ExecState* exec, const UString& message)
89 JSObject* createEvalError(ExecState* exec, const UString& message)
94 JSObject* createRangeError(ExecState* exec, const UString
[all...]
H A DErrorInstance.h37 static ErrorInstance* create(JSGlobalData*, Structure*, const UString&);
49 explicit ErrorInstance(JSGlobalData*, Structure*, const UString&);
H A DExceptionHelpers.cpp53 virtual UString toString(ExecState*) const { return "JavaScript execution exceeded timeout."; }
70 virtual UString toString(ExecState*) const { return "JavaScript execution terminated."; }
90 UString message(makeUString("Can't find variable: ", ident.ustring()));
96 UString errorMessage = makeUString("'", value.toString(exec), "' is not a valid argument for '", op, "'");
105 UString errorMessage = makeUString("'", value.toString(exec), "' is not a constructor");
114 UString errorMessage = makeUString("'", value.toString(exec), "' is not a function");
123 UString errorMessage = makeUString("'", value.toString(exec), "' is not an object");
130 JSObject* createErrorForInvalidGlobalAssignment(ExecState* exec, const UString& propertyName)
/external/webkit/Source/JavaScriptCore/API/
H A DOpaqueJSString.cpp35 PassRefPtr<OpaqueJSString> OpaqueJSString::create(const UString& ustring)
42 UString OpaqueJSString::ustring() const
45 return UString(m_characters, m_length);
46 return UString();
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfile.h30 #include <runtime/UString.h>
38 static PassRefPtr<Profile> create(const UString& title, unsigned uid);
41 const UString& title() const { return m_title; }
59 Profile(const UString& title, unsigned uid);
65 UString m_title;
H A DProfiler.h45 class UString;
57 static CallIdentifier createCallIdentifier(ExecState* exec, JSValue, const UString& sourceURL, int lineNumber);
59 void startProfiling(ExecState*, const UString& title);
60 PassRefPtr<Profile> stopProfiling(ExecState*, const UString& title);
64 void willExecute(ExecState* callerCallFrame, const UString& sourceURL, int startingLineNumber);
66 void didExecute(ExecState* callerCallFrame, const UString& sourceURL, int startingLineNumber);
H A DCallIdentifier.h30 #include <runtime/UString.h>
39 UString m_name;
40 UString m_url;
48 CallIdentifier(const UString& name, const UString& url, int lineNumber)
90 new (&slot) JSC::CallIdentifier(JSC::UString(), JSC::UString(), std::numeric_limits<unsigned>::max());
/external/webkit/Source/JavaScriptCore/parser/
H A DSourceProvider.h33 #include "UString.h"
43 SourceProvider(const UString& url, SourceProviderCache* cache = 0)
56 virtual UString getRange(int start, int end) const = 0;
60 const UString& url() { return m_url; }
73 UString m_url;
81 static PassRefPtr<UStringSourceProvider> create(const UString& source, const UString& url)
86 UString getRange(int start, int end) const
94 UStringSourceProvider(const UString& source, const UString
[all...]
H A DSourceCode.h63 UString toString() const
66 return UString();
85 inline SourceCode makeSource(const UString& source, const UString& url = UString(), int firstLine = 1) argument
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerCallFrame.h53 const UString* functionName() const;
54 UString calculatedFunctionName() const;
57 JSValue evaluate(const UString&, JSValue& exception) const;
H A DDebuggerCallFrame.cpp39 const UString* DebuggerCallFrame::functionName() const
53 UString DebuggerCallFrame::calculatedFunctionName() const
56 return UString();
60 return UString();
86 JSValue DebuggerCallFrame::evaluate(const UString& script, JSValue& exception) const
/external/webkit/Source/WebCore/bridge/jni/jsc/
H A DJavaStringJSC.h51 m_impl = UString().impl();
60 m_impl = UString(reinterpret_cast<const UChar*>(uc), size).impl();
69 m_utf8String = UString(m_impl).utf8();

Completed in 557 milliseconds

12345678