Searched defs:string (Results 1 - 25 of 687) sorted by relevance

1234567891011>>

/external/bison/lib/
H A Dstrnlen.c29 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 Dxstrndup.c1 /* 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/clang/test/SemaTemplate/
H A Ddelegating-constructors.cpp5 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");
/external/javasqlite/src/main/java/SQLite/
H A DException.java12 * @param string error message
15 public Exception(String string) { argument
16 super(string);
/external/sonivox/jet_tools/JetCreator/
H A DJetSystemInfo.py25 import string namespace
38 for dir in string.split(os.environ['PYTHONPATH'], os.pathsep):
/external/stlport/stlport/stl/
H A D_string_fwd.h40 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/
H A Dregexp-standalones.js34 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/v8/test/mjsunit/regress/
H A Dregress-515.js38 var string = s + 'x' + s + 'x' + s; variable
40 string.replace(/x/g, "")
/external/webkit/Source/JavaScriptCore/API/
H A DJSStringRefBSTR.cpp34 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 DConstantMatcher.java24 * This StringMatcher matches any string or no string at all.
44 public boolean matches(String string) argument
H A DEmptyStringMatcher.java32 public boolean matches(String string) argument
34 return string.length() == 0;
H A DStringMatcher.java33 * 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 DAndMatcher.java44 public boolean matches(String string) argument
46 return matcher1.matches(string) &&
47 matcher2.matches(string);
H A DFixedStringMatcher.java24 * 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 DListMatcher.java52 public boolean matches(String string) argument
58 if (matcher.matches(string))
H A DNotMatcher.java42 public boolean matches(String string) argument
44 return !matcher.matches(string);
/external/webkit/Source/JavaScriptCore/wtf/brew/
H A DStringBrew.cpp34 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 DWKStringQt.cpp33 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 DWKURLQt.cpp41 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 Dkword.c54 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 Dnullable_string16.h18 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 Dvarint_bigendian.h40 #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 D2010-05-11-alwaysinlineinstantiation.cpp26 typedef basic_string<char> string; typedef
32 string s;
H A Dtemplate-dependent-bind-temporary.cpp4 struct string { struct
5 string (const string& );
6 string ();
7 ~string();
10 string operator + (char ch, const string&);
15 string result;
/external/pcre/
H A Dpcre_valid_utf8.c53 * Validate a UTF-8 string *
57 validate that a supposed UTF-8 string is actually valid. The early check means
58 that subsequent code can assume it is dealing with a valid string. The check
60 an invalid string are then undefined.
70 string points to the string
71 length length of string, or -1 if the string is zero-terminated
73 Returns: < 0 if the string is a valid UTF-8 string
92 _pcre_valid_utf8(USPTR string, int length) argument
[all...]

Completed in 505 milliseconds

1234567891011>>