HomeSort by relevance Sort by last modified time
    Searched defs:String (Results 26 - 50 of 360) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-string.h 34 // This header file declares the String class and functions used internally by
45 // string.h is not guaranteed to provide strcpy on C++ Builder.
49 #include <string.h>
50 #include <string>
57 // String - an abstract class holding static string utilities.
58 class GTEST_API_ String {
62 // Clones a 0-terminated C string, allocating memory using new. The
64 // delete[]. Returns the cloned string, or NULL if the input is
67 // This is different from strdup() in string.h, which allocate
    [all...]
  /external/arduino/hardware/arduino/cores/arduino/
WString.h 2 WString.h - String library for Wiring & Arduino
25 #include <string.h>
28 class String
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 )
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/kde/
prototype_length.js 28 shouldBe("String.prototype.length","0");
41 String.prototype.length = 8;
42 shouldBe("String.prototype.length","0");
47 shouldBe("delete String.prototype.length","false");
59 for (i in String.prototype) { if (i == "length") foundStringPrototypeLength = true; }
  /external/chromium_org/v8/test/webkit/
primitive-method-this.js 31 String.prototype.thisType = function() { return typeof this; };
dfg-to-string-toString-becomes-bad-with-dictionary-string-prototype.js 25 "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; }
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringCF.cpp 32 String::String(CFStringRef str)
55 RetainPtr<CFStringRef> String::createCFString() const
  /external/chromium_org/v8/test/mjsunit/
indexed-value-properties.js 28 // Test that the Number, String and Boolean prototypes are searched
49 String.prototype[0] = 0;
50 String.prototype[1] = return_one;
value-wrapper.js 93 assertEquals('[object String]', 'xxx'.ObjectToString());
104 String.prototype.TypeOfThis = TypeOfThis;
110 String.prototype.ObjectValueOf = Object.prototype.valueOf;
114 String.prototype.ObjectToString = Object.prototype.toString;
121 String.prototype.TypeOfThis = 'x';
127 String.prototype.TypeOfThis = TypeOfThis;
136 delete String.prototype.TypeOfThis;
142 String.prototype.TypeOfThis = TypeOfThis;
eval-stack-trace.js 39 String.prototype.contains = function(pattern) {
value-callic-prototype-change.js 38 var s = String.fromCharCode(i);
42 String.prototype.toString = function() { return "ostehaps"; };
45 var s = String.fromCharCode(i);
  /external/v8/test/mjsunit/
indexed-value-properties.js 28 // Test that the Number, String and Boolean prototypes are searched
49 String.prototype[0] = 0;
50 String.prototype[1] = return_one;
value-wrapper.js 93 assertEquals('[object String]', 'xxx'.ObjectToString());
104 String.prototype.TypeOfThis = TypeOfThis;
110 String.prototype.ObjectValueOf = Object.prototype.valueOf;
114 String.prototype.ObjectToString = Object.prototype.toString;
121 String.prototype.TypeOfThis = 'x';
127 String.prototype.TypeOfThis = TypeOfThis;
136 delete String.prototype.TypeOfThis;
142 String.prototype.TypeOfThis = TypeOfThis;
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
String.java 19 * $Id: String.java 468655 2006-10-28 07:12:06Z minchau $
27 * The 'string()' operation expression executer.
29 public class String extends UnaryOperation
  /external/llvm/unittests/Support/
RegexTest.cpp 47 std::string String="axxb";
48 String[2] = '\0';
50 EXPECT_TRUE(r4.match(String, &Matches));
52 EXPECT_EQ(String, Matches[0].str());
54 std::string NulPattern="X[0-9]+X([a-f])?:([0-9]+)";
55 String="YX99a:513b";
58 EXPECT_FALSE(r5.match(String));
60 String[3]='\0';
61 EXPECT_TRUE(r5.match(String));
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
rvalue1.cpp 5 class String {
9 String(char *incp);
10 String(const String &constStringRef);
14 String::String(char *incp)
19 String::String(const String &constStringRef)
31 void foofun(String string
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
rvalue1.cpp 5 class String {
9 String(char *incp);
10 String(const String &constStringRef);
14 String::String(char *incp)
19 String::String(const String &constStringRef)
31 void foofun(String string
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-string.h 34 // This header file declares the String class and functions used internally by
44 #include <string.h>
50 // String - a UTF-8 string class.
52 // We cannot use std::string as Microsoft's STL implementation in
57 // Also, String is different from std::string in that it can represent
58 // both NULL and the empty string, while std::string cannot represent
61 // NULL and the empty string are considered different. NULL is les
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/
json2.js 33 level. If it is a string (such as '\t' or '&nbsp;'),
83 If the space parameter is a non-empty string, then that string will
120 if (typeof value === 'string') {
133 if (typeof value === 'string' &&
186 String.prototype.toJSON =
209 function quote(string) {
211 // If the string contains no control characters, no quote characters, and no
217 return escapable.test(string) ?
218 '"' + string.replace(escapable, function (a)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ParsedURL.js 31 * @param {string} url
90 * @param {string} url
91 * @return {!Array.<string>}
123 * @param {string} path
124 * @return {string}
155 * @param {string} baseURL
156 * @param {string} href
157 * @return {?string}
265 String.prototype.asParsedURL = function()
  /libcore/luni/src/test/java/tests/java/lang/String/
Tests.java 17 package tests.java.lang.String;
22 * Tests for the class {@link String}.
43 String s1 = "ABCDEFG";
44 String s2 = "abcdefg";
46 assertTrue(String.CASE_INSENSITIVE_ORDER.compare(s1, s2) == 0);
  /cts/tests/src/android/text/method/cts/
TextMethodUtils.java 36 Assert.assertEquals(String.valueOf(expected), String.valueOf(actual));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_callable.py 11 from lib2to3.fixer_util import Call, Name, String, Attr, touch_import
35 args = [func.clone(), String(u', ')]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_callable.py 11 from lib2to3.fixer_util import Call, Name, String, Attr, touch_import
35 args = [func.clone(), String(u', ')]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-string.h 34 // This header file declares the String class and functions used internally by
45 // string.h is not guaranteed to provide strcpy on C++ Builder.
49 #include <string.h>
52 #include <string>
57 // String - a UTF-8 string class.
59 // For historic reasons, we don't use std::string.
61 // TODO(wan@google.com): replace this class with std::string or
64 // Note that String can represent both NULL and the empty string,
230 operator ::std::string() const { return ::std::string(c_str(), length()); } function in class:testing::internal::String::operator::std
237 operator ::string() const { return ::string(c_str(), length()); } function in class:testing::internal::String::operator
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-string.h 34 // This header file declares the String class and functions used internally by
45 // string.h is not guaranteed to provide strcpy on C++ Builder.
49 #include <string.h>
52 #include <string>
57 // String - a UTF-8 string class.
59 // For historic reasons, we don't use std::string.
61 // TODO(wan@google.com): replace this class with std::string or
64 // Note that String can represent both NULL and the empty string,
230 operator ::std::string() const { return ::std::string(c_str(), length()); } function in class:testing::internal::String::operator::std
237 operator ::string() const { return ::string(c_str(), length()); } function in class:testing::internal::String::operator
    [all...]

Completed in 1775 milliseconds

12 3 4 5 6 7 8 91011>>