/external/v8/test/mjsunit/ |
H A D | error-tostring.js | 29 // Test default string representation of an Error object. 35 // Test printing of cyclic errors which return the empty string for 56 // on a given Error object. Verify the produced string representation. 74 var string = Error.prototype.toString.call(e); variable 75 return [string,seq];
|
H A D | regexp-standalones.js | 34 var string = 'aaa\n789\r\nccc\r\n345'; variable 36 var result = string.match(pattern); 42 result = string.match(pattern); 47 string = 'aaa\n789\r\nccc\r\nddd'; 49 result = string.match(pattern); 54 result = string.match(pattern); 60 string = '\u00BF\u00CD\u00BB\u00A7'; 61 result = string.match(pattern); 63 assertEquals(string, result[0], "12"); 65 string [all...] |
/external/bison/lib/ |
H A D | strnlen.c | 29 strnlen (const char *string, size_t maxlen) argument 31 const char *end = memchr (string, '\0', maxlen); 32 return end ? (size_t) (end - string) : maxlen;
|
H A D | xstrndup.c | 1 /* Duplicate a bounded initial segment of a string, with out-of-memory 33 xstrndup (const char *string, size_t n) argument 35 char *s = strndup (string, n);
|
/external/javasqlite/src/main/java/SQLite/ |
H A D | Exception.java | 12 * @param string error message 15 public Exception(String string) { argument 16 super(string);
|
/external/sonivox/jet_tools/JetCreator/ |
H A D | JetSystemInfo.py | 25 import string
namespace 38 for dir in string.split(os.environ['PYTHONPATH'], os.pathsep):
|
/external/stlport/stlport/stl/ |
H A D | _string_fwd.h | 40 typedef basic_string<char, char_traits<char>, allocator<char> > string; typedef 48 //This function limits header dependency between exception and string 50 const char* _STLP_CALL __get_c_string(const string& __str);
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-515.js | 38 var string = s + 'x' + s + 'x' + s; variable 40 string.replace(/x/g, "")
|
/external/webkit/Source/JavaScriptCore/API/ |
H A D | JSStringRefBSTR.cpp | 34 JSStringRef JSStringCreateWithBSTR(BSTR string) argument 36 return JSStringCreateWithCharacters(string ? string : L"", string ? SysStringLen(string) : 0); 39 BSTR JSStringCopyBSTR(const JSStringRef string) argument 41 return SysAllocStringLen(JSStringGetCharactersPtr(string), JSStringGetLength(string));
|
/external/proguard/src/proguard/util/ |
H A D | ConstantMatcher.java | 24 * This StringMatcher matches any string or no string at all. 44 public boolean matches(String string) argument
|
H A D | EmptyStringMatcher.java | 32 public boolean matches(String string) argument 34 return string.length() == 0;
|
H A D | StringMatcher.java | 33 * Checks whether the given string matches. 34 * @param string the string to match. 35 * @return a boolean indicating whether the string matches the criterion. 37 public boolean matches(String string); argument
|
H A D | AndMatcher.java | 44 public boolean matches(String string) argument 46 return matcher1.matches(string) && 47 matcher2.matches(string);
|
H A D | FixedStringMatcher.java | 24 * This StringMatcher tests whether strings start with a given fixed string 50 public boolean matches(String string) argument 52 return string.startsWith(fixedString) && 54 nextMatcher.matches(string.substring(fixedString.length())));
|
H A D | ListMatcher.java | 52 public boolean matches(String string) argument 58 if (matcher.matches(string))
|
H A D | NotMatcher.java | 42 public boolean matches(String string) argument 44 return !matcher.matches(string);
|
/external/webkit/Source/JavaScriptCore/wtf/brew/ |
H A D | StringBrew.cpp | 34 String::String(const AECHAR* string) argument 37 const UChar* str = reinterpret_cast<const UChar*>(string); 38 const size_t len = std_wstrlen(string);
|
/external/webkit/Source/WebKit2/UIProcess/API/cpp/qt/ |
H A D | WKStringQt.cpp | 33 WTF::String string(qString); 34 return toCopiedAPI(string); 41 const WTF::String& string = toImpl(stringRef)->string(); local 42 return QString(reinterpret_cast<const QChar*>(string.characters()), string.length());
|
H A D | WKURLQt.cpp | 41 const WTF::String& string = toImpl(urlRef)->string(); local 42 return QUrl(QString(reinterpret_cast<const QChar*>(string.characters()), string.length()));
|
/external/bluetooth/bluez/tools/ |
H A D | kword.c | 54 int rfcomm_find_keyword(struct keyword_t *keyword, char *string) argument 56 while (keyword->string) { 57 if (!strcmp(string, keyword->string))
|
/external/chromium/base/ |
H A D | nullable_string16.h | 18 NullableString16(const string16& string, bool is_null) argument 19 : string_(string), is_null_(is_null) { 22 const string16& string() const { return string_; } function in class:NullableString16
|
/external/chromium/sdch/open-vcdiff/src/ |
H A D | varint_bigendian.h | 40 #include <string> 77 typedef std::string string; typedef in class:open_vcdiff::VarintBE 108 static void AppendToString(SignedIntegerType value, string* s);
|
/external/clang/test/CodeGenCXX/ |
H A D | 2010-05-11-alwaysinlineinstantiation.cpp | 26 typedef basic_string<char> string; typedef 32 string s;
|
H A D | template-dependent-bind-temporary.cpp | 4 struct string { struct 5 string (const string& ); 6 string (); 7 ~string(); 10 string operator + (char ch, const string&); 15 string result;
|
/external/clang/test/SemaTemplate/ |
H A D | delegating-constructors.cpp | 5 class string class in namespace:PR10457 7 string(const char* str, unsigned); 11 string(const char (&str)[N]) function in class:PR10457::string 12 : string(str) {} // expected-error{{constructor for 'string<6>' creates a delegation cycle}} 16 string s("hello");
|