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

1 2 3 4 5 6 7 8 910

  /external/webkit/WebCore/ForwardingHeaders/runtime/
UString.h 3 #include <JavaScriptCore/UString.h>
  /external/webkit/JavaScriptCore/runtime/
NativeErrorPrototype.h 30 NativeErrorPrototype(ExecState*, NonNullPassRefPtr<Structure>, const UString& name, const UString& message);
Error.h 32 class UString;
54 static JSObject* create(ExecState*, ErrorType, const UString& message, int lineNumber, intptr_t sourceID, const UString& sourceURL);
58 JSObject* throwError(ExecState*, ErrorType, const UString& message, int lineNumber, intptr_t sourceID, const UString& sourceURL);
59 JSObject* throwError(ExecState*, ErrorType, const UString& message);
RegExp.h 25 #include "UString.h"
41 static PassRefPtr<RegExp> create(JSGlobalData* globalData, const UString& pattern);
42 static PassRefPtr<RegExp> create(JSGlobalData* globalData, const UString& pattern, const UString& flags);
51 const UString& pattern() const { return m_pattern; }
56 int match(const UString&, int startOffset, Vector<int, 32>* ovector = 0);
60 RegExp(JSGlobalData* globalData, const UString& pattern);
61 RegExp(JSGlobalData* globalData, const UString& pattern, const UString& flags);
67 UString m_pattern; // FIXME: Just decompile m_regExp instead of storing this
    [all...]
Identifier.cpp 35 typedef HashMap<const char*, RefPtr<UString::Rep>, PtrHash<const char*> > LiteralIdentifierTable;
41 HashSet<UString::Rep*>::iterator end = m_table.end();
42 for (HashSet<UString::Rep*>::iterator iter = m_table.begin(); iter != end; ++iter)
46 std::pair<HashSet<UString::Rep*>::iterator, bool> add(UString::Rep* value)
48 std::pair<HashSet<UString::Rep*>::iterator, bool> result = m_table.add(value);
54 std::pair<HashSet<UString::Rep*>::iterator, bool> add(U value)
56 std::pair<HashSet<UString::Rep*>::iterator, bool> result = m_table.add<U, V>(value);
61 void remove(UString::Rep* r) { m_table.remove(r); }
66 HashSet<UString::Rep*> m_table
    [all...]
NativeErrorPrototype.cpp 26 #include "UString.h"
32 NativeErrorPrototype::NativeErrorPrototype(ExecState* exec, NonNullPassRefPtr<Structure> structure, const UString& name, const UString& message)
Identifier.h 26 #include "UString.h"
39 Identifier(ExecState* exec, UString::Rep* rep) : _ustring(add(exec, rep)) { }
40 Identifier(ExecState* exec, const UString& s) : _ustring(add(exec, s.rep())) { }
44 Identifier(JSGlobalData* globalData, UString::Rep* rep) : _ustring(add(globalData, rep)) { }
45 Identifier(JSGlobalData* globalData, const UString& s) : _ustring(add(globalData, s.rep())) { }
50 const UString& ustring() const { return _ustring; } function in class:JSC::Identifier
57 static Identifier from(ExecState* exec, unsigned y) { return Identifier(exec, UString::from(y)); }
58 static Identifier from(ExecState* exec, int y) { return Identifier(exec, UString::from(y)); }
59 static Identifier from(ExecState* exec, double y) { return Identifier(exec, UString::from(y));
    [all...]
UString.cpp 25 #include "UString.h"
154 UString::Rep* UString::s_nullRep;
155 UString* UString::s_nullUString;
161 UString::s_nullRep = new UStringImpl(0, 0, UStringImpl::ConstructStaticString);
162 UString::s_nullUString = new UString;
165 UString::UString(const char* c
    [all...]
JSString.h 39 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
44 JSString* jsSingleCharacterSubstring(JSGlobalData*, const UString&, unsigned offset);
45 JSString* jsSingleCharacterSubstring(ExecState*, const UString&, unsigned offset);
46 JSString* jsSubstring(JSGlobalData*, const UString&, unsigned offset, unsigned length);
47 JSString* jsSubstring(ExecState*, const UString&, unsigned offset, unsigned length);
51 JSString* jsNontrivialString(JSGlobalData*, const UString&);
52 JSString* jsNontrivialString(ExecState*, const UString&);
58 // DOM object that contains a UString
59 JSString* jsOwnedString(JSGlobalData*, const UString&);
    [all...]
  /external/chromium/third_party/icu/source/tools/genrb/
ustr.h 39 struct UString {
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 *dst, const struct UString *src
    [all...]
read.h 46 struct UString *token,
48 struct UString *comment,
  /external/icu4c/tools/genrb/
ustr.h 39 struct UString {
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 *dst, const struct UString *src
    [all...]
read.h 46 struct UString *token,
48 struct UString *comment,
  /external/webkit/JavaScriptCore/parser/
SourceProvider.h 32 #include "UString.h"
41 SourceProvider(const UString& url, SourceBOMPresence hasBOMs = SourceCouldHaveBOMs)
48 virtual UString getRange(int start, int end) const = 0;
52 const UString& url() { return m_url; }
58 UString m_url;
64 static PassRefPtr<UStringSourceProvider> create(const UString& source, const UString& url)
69 UString getRange(int start, int end) const { return m_source.substr(start, end - start); }
74 UStringSourceProvider(const UString& source, const UString& url
    [all...]
  /external/webkit/JavaScriptCore/profiler/
Profiler.h 44 class UString;
55 static CallIdentifier createCallIdentifier(ExecState* exec, JSValue, const UString& sourceURL, int lineNumber);
57 void startProfiling(ExecState*, const UString& title);
58 PassRefPtr<Profile> stopProfiling(ExecState*, const UString& title);
61 void willExecute(ExecState*, const UString& sourceURL, int startingLineNumber);
63 void didExecute(ExecState*, const UString& sourceURL, int startingLineNumber);
CallIdentifier.h 30 #include <runtime/UString.h>
36 UString m_name;
37 UString m_url;
45 CallIdentifier(const UString& name, const UString& url, int lineNumber)
63 return UString::Rep::computeHash(reinterpret_cast<char*>(hashCodes), sizeof(hashCodes));
87 new (&slot) JSC::CallIdentifier(JSC::UString(), JSC::UString(), std::numeric_limits<unsigned>::max());
Profile.h 30 #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;
ProfileGenerator.h 39 class UString;
44 static PassRefPtr<ProfileGenerator> create(const UString& title, ExecState* originatingExec, unsigned uid);
47 const UString& title() const;
62 ProfileGenerator(const UString& title, ExecState* originatingExec, unsigned uid);
  /external/webkit/WebCore/bridge/jni/jsc/
JavaStringJSC.h 49 m_rep = UString().rep();
58 m_rep = UString(reinterpret_cast<const UChar*>(uc), size).rep();
67 m_utf8String = UString(m_rep).UTF8String();
73 UString uString() const { return UString(m_rep); }
76 RefPtr<UString::Rep> m_rep;
  /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();
  /external/webkit/JavaScriptCore/debugger/
DebuggerCallFrame.h 53 const UString* functionName() const;
54 UString calculatedFunctionName() const;
57 JSValue evaluate(const UString&, JSValue& exception) const;
  /external/webkit/WebCore/bindings/js/
ScriptCallFrame.cpp 35 #include <runtime/UString.h>
41 ScriptCallFrame::ScriptCallFrame(const UString& functionName, const UString& urlString, int lineNumber, const ArgList& args, unsigned skipArgumentCount)
ScriptString.h 35 #include <runtime/UString.h>
46 ScriptString(const JSC::UString& s) : m_str(s) {}
48 operator JSC::UString() const { return m_str; }
80 JSC::UString m_str;
  /external/webkit/JavaScriptCore/yarr/
RegexCompiler.h 39 const char* compileRegex(const UString& patternString, RegexPattern& pattern);
  /external/webkit/WebCore/inspector/
JavaScriptDebugListener.h 37 class UString;
50 virtual void failedToParseSource(JSC::ExecState*, const JSC::SourceCode& source, int errorLine, const JSC::UString& errorMessage) = 0;

Completed in 1582 milliseconds

1 2 3 4 5 6 7 8 910