Searched defs:String (Results 26 - 50 of 180) sorted by relevance

12345678

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringCF.cpp32 String::String(CFStringRef str) function in class:WTF::String
55 RetainPtr<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/arduino/hardware/arduino/cores/arduino/
H A DWString.h2 WString.h - String library for Wiring & Arduino
28 class String class
32 String( const char *value = "" );
33 String( const String &value );
34 String( const char );
35 String( const unsigned char );
36 String( const int, const int base=10);
37 String( const unsigned int, const int base=10 );
38 String( cons
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/
H A Djson2.js186 String.prototype.toJSON =
263 return isFinite(value) ? String(value) : 'null';
272 return String(value);
184 String.prototype.toJSON = class
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DParsedURL.js241 String.prototype.asParsedURL = function()
236 String.prototype.asParsedURL = function() class
/external/chromium_org/v8/test/webkit/
H A Ddfg-to-string-toString-becomes-bad-with-dictionary-string-prototype.js25 "Tests that we do ToString conversions correctly when String.prototype.valueOf is initially fine but then gets clobbered, and was a dictionary all along."
28 delete String.prototype.trim;
29 delete String.prototype.toLowerCase;
30 delete String.prototype.toLocaleUpperCase;
33 String.prototype["a" + i] = 42;
37 a = new String(a);
44 String.prototype.toString = function() { return 42; }
32 String.prototype["a" + i] = 42; class
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DString.java19 * $Id: String.java 468655 2006-10-28 07:12:06Z minchau $
29 public class String extends UnaryOperation class in inherits:UnaryOperation
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DExceptionStatePlaceholder.cpp43 void NoExceptionStateAssertionChecker::throwDOMException(const ExceptionCode&, const String&) argument
48 void NoExceptionStateAssertionChecker::throwTypeError(const String&) argument
53 void NoExceptionStateAssertionChecker::throwSecurityError(const String&, const String&) argument
/external/chromium_org/v8/test/mjsunit/
H A Dvalue-wrapper.js94 assertEquals('[object String]', 'xxx'.ObjectToString());
105 String.prototype.TypeOfThis = TypeOfThis;
111 String.prototype.ObjectValueOf = Object.prototype.valueOf;
115 String.prototype.ObjectToString = Object.prototype.toString;
122 String.prototype.TypeOfThis = 'x';
128 String.prototype.TypeOfThis = TypeOfThis;
137 delete String.prototype.TypeOfThis;
143 String.prototype.TypeOfThis = TypeOfThis;
102 String.prototype.TypeOfThis = TypeOfThis; class
H A Deval-stack-trace.js39 String.prototype.contains = function(pattern) {
37 String.prototype.contains = function(pattern) { class
H A Dvalue-callic-prototype-change.js38 var s = String.fromCharCode(i);
42 String.prototype.toString = function() { return "ostehaps"; };
45 var s = String.fromCharCode(i);
40 String.prototype.toString = function() { return "ostehaps"; }; class
H A Dstring-charat.js86 var c = String.fromCharCode(i);
94 assertEquals(String.fromCharCode(i), alphaStr.charAt(i));
97 // Test stealing String.prototype.{charAt,charCodeAt}.
99 charAt: String.prototype.charAt,
100 charCodeAt: String.prototype.charCodeAt,
232 String.prototype.charAt = function() { return "%"; };
238 delete String.prototype.charAt; // Restore the default.
247 String.prototype.charCodeAt = function() { return 42; };
253 delete String.prototype.charCodeAt; // Restore the default.
231 String.prototype.charAt = function() { return "%"; }; class
H A Dstring-charcodeat.js98 n.charCodeAt = String.prototype.charCodeAt;
106 n.charCodeAt = String.prototype.charCodeAt;
179 this.charCodeAt = String.prototype.charCodeAt;
218 String.prototype.x = String.prototype.charCodeAt;
211 String.prototype.x = String.prototype.charCodeAt; class
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dchromevox_json.js60 String.prototype.toJSON =
136 return isFinite(value) ? String(value) : 'null';
143 return String(value);
322 text = String(text);
58 String.prototype.toJSON = class
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_util.cpp23 const char String::kEmpty[] = "";
25 String::String() { Init(); } function in class:crazy::String
27 String::String(const String& other) { function in class:crazy::String
32 String::String(const char* str) { function in class:crazy::String
37 String::String(cha function in class:crazy::String
49 String::String(const char* str, size_t len) { function in class:crazy::String
[all...]
/external/chromium_org/v8/test/webkit/fast/js/
H A Dprimitive-property-access-edge-cases.js31 delete String.prototype.constructor;
37 String.prototype.__proto__ = { x: 1, y: 1 };
38 delete String.prototype.__proto__.x;
48 String.prototype.x = 1;
49 String.prototype.y = 1;
50 delete String.prototype.x;
103 shouldBeTrue("checkGet('hello', String)");
106 shouldBeTrue("checkSet('hello', String)");
109 shouldBeTrue("checkGetStrict('hello', String)");
112 shouldBeTrue("checkSetStrict('hello', String)");
46 String.prototype.x = 1; class
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-string.h34 // This header file declares the String class and functions used internally by
57 // String - a UTF-8 string class.
64 // Note that String can represent both NULL and the empty string,
79 // In order to make the representation efficient, the d'tor of String
80 // is not virtual. Therefore DO NOT INHERIT FROM String.
81 class GTEST_API_ String { class in namespace:testing::internal
92 static String ShowCStringQuoted(const char* c_str);
136 // Converts a wide C string to a String using the UTF-8 encoding.
140 static String ShowWideCString(const wchar_t* wide_c_str);
144 static String ShowWideCStringQuote
192 String() : c_str_(NULL), length_(0) {} function in class:testing::internal::String
195 String(const char* a_c_str) { // NOLINT function in class:testing::internal::String
208 String(const char* buffer, size_t a_length) { function in class:testing::internal::String
214 String(const String& str) : c_str_(NULL), length_(0) { *this = str; } function in class:testing::internal::String
226 String(const ::std::string& str) { function in class:testing::internal::String
233 String(const ::string& str) { function in class:testing::internal::String
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h34 // This header file declares the String class and functions used internally by
57 // String - a UTF-8 string class.
64 // Note that String can represent both NULL and the empty string,
79 // In order to make the representation efficient, the d'tor of String
80 // is not virtual. Therefore DO NOT INHERIT FROM String.
81 class GTEST_API_ String { class in namespace:testing::internal
92 static String ShowCStringQuoted(const char* c_str);
136 // Converts a wide C string to a String using the UTF-8 encoding.
140 static String ShowWideCString(const wchar_t* wide_c_str);
144 static String ShowWideCStringQuote
192 String() : c_str_(NULL), length_(0) {} function in class:testing::internal::String
195 String(const char* a_c_str) { // NOLINT function in class:testing::internal::String
208 String(const char* buffer, size_t a_length) { function in class:testing::internal::String
214 String(const String& str) : c_str_(NULL), length_(0) { *this = str; } function in class:testing::internal::String
226 String(const ::std::string& str) { function in class:testing::internal::String
233 String(const ::string& str) { function in class:testing::internal::String
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-string.h34 // This header file declares the String class and functions used internally by
57 // String - a UTF-8 string class.
64 // Note that String can represent both NULL and the empty string,
79 // In order to make the representation efficient, the d'tor of String
80 // is not virtual. Therefore DO NOT INHERIT FROM String.
81 class GTEST_API_ String { class in namespace:testing::internal
92 static String ShowCStringQuoted(const char* c_str);
136 // Converts a wide C string to a String using the UTF-8 encoding.
140 static String ShowWideCString(const wchar_t* wide_c_str);
144 static String ShowWideCStringQuote
192 String() : c_str_(NULL), length_(0) {} function in class:testing::internal::String
195 String(const char* a_c_str) { // NOLINT function in class:testing::internal::String
208 String(const char* buffer, size_t a_length) { function in class:testing::internal::String
214 String(const String& str) : c_str_(NULL), length_(0) { *this = str; } function in class:testing::internal::String
226 String(const ::std::string& str) { function in class:testing::internal::String
233 String(const ::string& str) { function in class:testing::internal::String
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-string.h34 // This header file declares the String class and functions used internally by
54 // String - a UTF-8 string class.
61 // Also, String is different from std::string in that it can represent
77 // In order to make the representation efficient, the d'tor of String
78 // is not virtual. Therefore DO NOT INHERIT FROM String.
79 class String { class in namespace:testing::internal
90 static String ShowCStringQuoted(const char* c_str);
134 // Converts a wide C string to a String using the UTF-8 encoding.
138 static String ShowWideCString(const wchar_t* wide_c_str);
142 static String ShowWideCStringQuote
190 String() : c_str_(NULL), length_(0) {} function in class:testing::internal::String
193 String(const char* c_str) { // NOLINT function in class:testing::internal::String
206 String(const char* buffer, size_t length) { function in class:testing::internal::String
212 String(const String& str) : c_str_(NULL), length_(0) { *this = str; } function in class:testing::internal::String
225 String(const ::std::string& str) { function in class:testing::internal::String
233 String(const ::string& str) { function in class:testing::internal::String
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.h51 static PassRefPtrWillBeRawPtr<CSSComputedStyleDeclaration> create(PassRefPtrWillBeRawPtr<Node> node, bool allowVisitedStyle = false, const String& pseudoElementName = String()) argument
62 String getPropertyValue(CSSPropertyID) const;
77 CSSComputedStyleDeclaration(PassRefPtrWillBeRawPtr<Node>, bool allowVisitedStyle, const String&);
89 virtual String item(unsigned index) const OVERRIDE;
91 virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValue(const String& propertyName) OVERRIDE;
92 virtual String getPropertyValue(const String& propertyName) OVERRIDE;
93 virtual String getPropertyPriority(const String
[all...]
H A DCSSRule.cpp54 void CSSRule::setCSSText(const String&) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DURLRegistry.h56 virtual URLRegistrable* lookup(const String&) { ASSERT_NOT_REACHED(); return 0; } argument
57 virtual bool contains(const String&) { ASSERT_NOT_REACHED(); return false; } argument
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp6.cpp46 struct String {}; struct
48 void f(Array<String>& v) {
52 // sort(Array<T>&), T is String
55 template<> void sort<String>(Array<String>& v); // // expected-error{{after instantiation}}
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DElementAndAttributePolicies.java43 final String elementName;
46 final ImmutableMap<String, AttributePolicy> attrPolicies;
50 String elementName,
52 Map<? extends String, ? extends AttributePolicy>
65 ImmutableMap.Builder<String, AttributePolicy> joinedAttrPolicies
67 for (Map.Entry<String, AttributePolicy> e : this.attrPolicies.entrySet()) {
68 String attrName = e.getKey();
76 for (Map.Entry<String, AttributePolicy> e : p.attrPolicies.entrySet()) {
77 String attrName = e.getKey();
104 Map<String, AttributePolic
49 ElementAndAttributePolicies( String elementName, ElementPolicy elPolicy, Map<? extends String, ? extends AttributePolicy> attrPolicies, boolean skipIfEmpty) argument
[all...]

Completed in 2956 milliseconds

12345678