| /external/v8/test/cctest/ |
| test-mementos.cc | 41 // Allocate a string, the GC may suspect a memento behind the string. 42 Handle<SeqOneByteString> string = local 44 CHECK(*string); 46 // Create an allocation memento behind the string with a garbage allocation
|
| /external/v8/test/mjsunit/es6/ |
| string-endswith.js | 28 assertEquals(1, String.prototype.endsWith.length); 46 assertThrows("String.prototype.endsWith.call(null, 'test')", TypeError); 47 assertThrows("String.prototype.endsWith.call(null, null)", TypeError); 48 assertThrows("String.prototype.endsWith.call(undefined, undefined)", TypeError); 50 assertThrows("String.prototype.endsWith.apply(null, ['test'])", TypeError); 51 assertThrows("String.prototype.endsWith.apply(null, [null])", TypeError); 52 assertThrows("String.prototype.endsWith.apply(undefined, [undefined])", TypeError); 55 msg: "Empty string", val: "" 81 var s = String(v); 83 assertTrue(String.prototype.endsWith.call(v, v), e.msg) 313 var string = "I\\xF1t\\xEBrn\\xE2ti\\xF4n\\xE0liz\\xE6ti\\xF8n\\u2603\\uD83D\\uDCA9"; variable [all...] |
| string-startswith.js | 28 assertEquals(1, String.prototype.startsWith.length); 46 assertThrows("String.prototype.startsWith.call(null, 'test')", TypeError); 47 assertThrows("String.prototype.startsWith.call(null, null)", TypeError); 48 assertThrows("String.prototype.startsWith.call(undefined, undefined)", TypeError); 50 assertThrows("String.prototype.startsWith.apply(null, ['test'])", TypeError); 51 assertThrows("String.prototype.startsWith.apply(null, [null])", TypeError); 52 assertThrows("String.prototype.startsWith.apply(undefined, [undefined])", TypeError); 55 msg: "Empty string", val: "" 81 var s = String(v); 83 assertTrue(String.prototype.startsWith.call(v, v), e.msg) 298 var string = "I\\xF1t\\xEBrn\\xE2ti\\xF4n\\xE0liz\\xE6ti\\xF8n\\u2603\\uD83D\\uDCA9"; variable [all...] |
| /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/ |
| gtest-filepath.h | 43 #include "gtest/internal/gtest-string.h" 64 explicit FilePath(const std::string& pathname) : pathname_(pathname) { 77 const std::string& string() const { return pathname_; } function in class:testing::internal::FilePath 114 // the name, otherwise return the name string unmodified. 200 std::string pathname_;
|
| /frameworks/av/media/mtp/ |
| MtpDeviceInfo.cpp | 63 MtpStringBuffer string; local 70 if (!packet.getString(string)) return false; 71 mVendorExtensionDesc = strdup((const char *)string); 85 if (!packet.getString(string)) return false; 86 mManufacturer = strdup((const char *)string); 87 if (!packet.getString(string)) return false; 88 mModel = strdup((const char *)string); 89 if (!packet.getString(string)) return false; 90 mVersion = strdup((const char *)string); 91 if (!packet.getString(string)) return false [all...] |
| MtpObjectInfo.cpp | 59 MtpStringBuffer string; local 78 if (!packet.getString(string)) return false; 79 mName = strdup((const char *)string); 81 if (!packet.getString(string)) return false; 82 if (parseDateTime((const char*)string, time)) 85 if (!packet.getString(string)) return false; 86 if (parseDateTime((const char*)string, time)) 89 if (!packet.getString(string)) return false; 90 mKeywords = strdup((const char *)string);
|
| MtpStorageInfo.cpp | 49 MtpStringBuffer string; local 59 if (!packet.getString(string)) return false; 60 mStorageDescription = strdup((const char *)string); 61 if (!packet.getString(string)) return false; 62 mVolumeIdentifier = strdup((const char *)string);
|
| /frameworks/base/core/java/com/android/internal/util/ |
| ParcelableString.java | 23 * Helper class to adapt a simple String to cases where a Parcelable is expected. 27 public String string; field in class:ParcelableString 36 out.writeString(string); 44 ret.string = in.readString();
|
| /hardware/ti/omap4xxx/domx/mm_osal/src/ |
| timm_osal_trace.c | 115 char string[1000]; local 116 vsprintf(string, fmt, ap); 117 ALOGD("%s",string);
|
| /libcore/luni/src/main/native/ |
| ExecStrings.cpp | 38 char* string = const_cast<char*>(env_->GetStringUTFChars(java_string.get(), NULL)); local 39 array_[i] = string;
|
| /ndk/sources/cxx-stl/stlport/stlport/stl/ |
| msl_string.h | 22 # define string __msl_string macro 33 # include_next <string> 35 # include _STLP_NATIVE_HEADER(string) 43 # undef string macro
|
| /ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
| gtest-filepath.h | 43 #include "gtest/internal/gtest-string.h" 64 explicit FilePath(const std::string& pathname) : pathname_(pathname) { 77 const std::string& string() const { return pathname_; } function in class:testing::internal::FilePath 114 // the name, otherwise return the name string unmodified. 200 std::string pathname_;
|
| /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
| StrSegment.java | 20 * The information container class of segment in a string. 22 * This class defines information of a segment in a string, such as a character, a word or a clause. 28 /** The string */ 29 public String string; field in class:StrSegment 45 * @param str The string 47 public StrSegment(String str) { 57 this(new String(chars), -1, -1); 63 * @param str The string 67 public StrSegment(String str, int from, int to) [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
| AutoExpand.py | 1 import string namespace 16 wordchars = string.ascii_letters + string.digits + "_"
|
| testcode.py | 1 import string namespace 29 string.capwords(1)
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| badsyntax_future7.py | 3 from __future__ import nested_scopes; import string; from __future__ import \ 4 nested_scopes namespace
|
| /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
| AutoExpand.py | 1 import string namespace 16 wordchars = string.ascii_letters + string.digits + "_"
|
| testcode.py | 1 import string namespace 29 string.capwords(1)
|
| /prebuilts/gdb/linux-x86/lib/python2.7/test/ |
| badsyntax_future7.py | 3 from __future__ import nested_scopes; import string; from __future__ import \ 4 nested_scopes namespace
|
| /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
| msl_string.h | 22 # define string __msl_string macro 33 # include_next <string> 35 # include _STLP_NATIVE_HEADER(string) 43 # undef string macro
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
| AutoExpand.py | 1 import string namespace 16 wordchars = string.ascii_letters + string.digits + "_"
|
| testcode.py | 1 import string namespace 29 string.capwords(1)
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| badsyntax_future7.py | 3 from __future__ import nested_scopes; import string; from __future__ import \ 4 nested_scopes namespace
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
| AutoExpand.py | 1 import string namespace 16 wordchars = string.ascii_letters + string.digits + "_"
|
| testcode.py | 1 import string namespace 29 string.capwords(1)
|