Searched defs:String (Results 1 - 25 of 261) sorted by relevance

1234567891011

/external/v8/test/mjsunit/
H A Dgetter-in-value-prototype.js33 String.prototype.__defineGetter__('x', function() { return this; });
0 String.prototype.__defineGetter__('x', function() { return this; }); class
H A Dregexp-string-methods.js28 // Regexp shouldn't use String.prototype.slice()
29 var s = new String("foo");
31 String.prototype.slice = function() { return "x"; };
35 // Regexp shouldn't use String.prototype.charAt()
39 String.prototype.charAt = function(idx) { return 'g'; };
30 String.prototype.slice = function() { return "x"; }; class
H A Dindexed-value-properties.js28 // Test that the Number, String and Boolean prototypes are searched
49 String.prototype[0] = 0;
50 String.prototype[1] = return_one;
47 String.prototype[0] = 0; class
/external/v8/test/mjsunit/regress/
H A Dregress-760-1.js28 // Check that when valueOf for a String object is overwritten it is called and
33 String.prototype.valueOf = function() { return 'y' };
0 String.prototype.valueOf = function() { return 'y' }; class
H A Dregress-100702.js31 String.prototype.isThatMe = function () {
0 String.prototype.isThatMe = function () { class
H A Dregress-crbug-3184.js53 String.prototype.cap = function() {
57 String.prototype.cap = String.prototype.cap.wrap(
51 String.prototype.cap = function() { class
H A Dregress-900966.js29 String.prototype[10] = 'x';
28 String.prototype[10] = 'x'; class
/external/v8/test/message/
H A Doverwritten-builtins.js28 String.prototype.split = function() { return "SPLIT ERROR"; };
0 String.prototype.split = function() { return "SPLIT ERROR"; }; class
/external/clang/test/SemaCXX/
H A Dlookup-member.cpp5 class String;
8 using A::String;
9 class String;
13 char *String; member in union:value
/external/webkit/Source/WebCore/platform/text/
H A DLocalizedNumberNone.cpp40 double parseLocalizedNumber(const String&) argument
45 String formatLocalizedNumber(double, unsigned)
47 return String();
/external/webkit/Source/WebCore/platform/wx/
H A DSharedBufferWx.cpp33 PassRefPtr<SharedBuffer> SharedBuffer::createWithContentsOfFile(const String&) argument
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/
H A DNetscapePluginModuleNone.cpp36 bool NetscapePluginModule::getPluginInfo(const String&, PluginInfoStore::Plugin&) argument
/external/webkit/Source/JavaScriptCore/wtf/brew/
H A DStringBrew.cpp33 // String conversions
34 String::String(const AECHAR* string) function in class:WTF::String
/external/webkit/Source/WebCore/dom/
H A DBeforeProcessEvent.cpp32 String BeforeProcessEvent::text() const
35 return String();
38 void BeforeProcessEvent::setText(const String&) argument
/external/webkit/Source/WebCore/platform/text/cf/
H A DStringCF.cpp30 String::String(CFStringRef str) function in class:WTF::String
45 CFStringRef String::createCFString() const
/external/llvm/unittests/Support/
H A DRegexTest.cpp47 std::string String="axxb"; local
48 String[2] = '\0';
50 EXPECT_TRUE(r4.match(String, &Matches));
52 EXPECT_EQ(String, Matches[0].str());
55 String="YX99a:513b";
58 EXPECT_FALSE(r5.match(String));
60 String[3]='\0';
61 EXPECT_TRUE(r5.match(String));
/external/webkit/Source/JavaScriptCore/wtf/haiku/
H A DStringHaiku.cpp29 #include <String.h>
34 // String conversions
35 String::String(const BString& string) function in class:WTF::String
38 m_impl = String::fromUTF8(string.String(), string.Length()).impl();
43 String::operator BString() const
/external/webkit/Source/WebCore/inspector/
H A DInspectorClient.h53 virtual void updateInspectorStateCookie(const String&) { }; argument
55 bool doDispatchMessageOnFrontendPage(Page* frontendPage, const String& message);
/external/webkit/Source/WebCore/platform/
H A DKillRingNone.cpp31 void KillRing::append(const String&) argument
35 void KillRing::prepend(const String&) argument
39 String KillRing::yank()
41 return String();
/external/webkit/Source/WebCore/platform/win/
H A DTemporaryLinkStubs.cpp34 String signedPublicKeyAndChallengeString(unsigned, const String&, const KURL&) { notImplemented(); return String(); } argument
35 void getSupportedKeySizes(Vector<String>&) { notImplemented(); }
/external/webkit/Source/WebCore/plugins/
H A DPluginPackageNone.cpp31 void PluginPackage::determineQuirks(const String&) argument
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DWebPreferencesGtk.cpp39 void WebPreferences::platformUpdateStringValueForKey(const String&, const String&) argument
44 void WebPreferences::platformUpdateBoolValueForKey(const String&, bool) argument
49 void WebPreferences::platformUpdateUInt32ValueForKey(const String&, uint32_t) argument
54 void WebPreferences::platformUpdateDoubleValueForKey(const String&, double) argument
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DWebPageProxyQt.cpp33 String WebPageProxy::standardUserAgent(const String& applicationNameForUserAgent)
39 void WebPageProxy::saveRecentSearches(const String&, const Vector<String>&) argument
44 void WebPageProxy::loadRecentSearches(const String&, Vector<String>&) argument
H A DWebPreferencesQt.cpp35 void WebPreferences::platformUpdateStringValueForKey(const String&, const String&) argument
39 void WebPreferences::platformUpdateBoolValueForKey(const String&, bool) argument
43 void WebPreferences::platformUpdateUInt32ValueForKey(const String&, uint32_t) argument
47 void WebPreferences::platformUpdateDoubleValueForKey(const String&, double) argument
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
H A DWebContextMenuClientGtk.cpp47 void WebContextMenuClient::speak(const String&) argument

Completed in 7904 milliseconds

1234567891011