HomeSort by relevance Sort by last modified time
    Searched refs:str (Results 476 - 500 of 3694) sorted by null

<<11121314151617181920>>

  /external/embunit/inc/
stdImpl.h 49 int stdimpl_strlen(const char *str);
  /external/guava/src/com/google/common/io/
AppendableWriter.java 82 @Override public void write(String str) throws IOException {
84 target.append(str);
87 @Override public void write(String str, int off, int len) throws IOException {
90 target.append(str, off, off + len);
  /external/icu4c/test/cintltst/
cdtrgtst.h 42 void aux917(UDateFormat *fmt, UChar* str );
cposxtst.c 77 char str[128]; local
84 u_austrcpy(str, ustr);
88 set_num, msg_num, str, len, err);
92 str, DATA[i+2]);
  /external/icu4c/test/intltest/
dtfmttst.h 53 static void getFieldText(DateFormat* df, int32_t field, UDate date, UnicodeString& str);
65 virtual void tryPat994(SimpleDateFormat* format, const char* pat, const char* str, UDate expected);
81 virtual void testIt917(SimpleDateFormat* fmt, UnicodeString& str, UDate expected);
126 virtual void parse2DigitYear(DateFormat& fmt, const char* str, UDate expected);
  /external/icu4c/tools/pkgdata/
pkgtypes.h 30 const char *str; member in struct:_CharList
53 * Prepend string to CharList. Str is adopted!
55 CharList *pkg_prependToList(CharList *l, const char *str);
60 * Str is adopted!
62 CharList *pkg_appendToList(CharList *l, CharList** end, const char *str);
79 UBool pkg_listContains(CharList *l, const char *str);
  /external/ipsec-tools/src/racoon/
gcmalloc.h 84 strdup(const char *str)
87 return (GC_STRDUP(str));
95 #define racoon_strdup(str) GC_debug_strdup(str)
str2val.c 78 str2val(str, base, len)
79 const char *str;
91 for (p = str; *p != '\0'; p++) {
108 for (rp = dst, p = str; *p != '\0'; p++) {
  /external/libxslt/libxslt/
attrvt.c 172 const xmlChar *str; local
189 str = attr->children->content;
190 if ((xmlStrchr(str, '{') == NULL) &&
191 (xmlStrchr(str, '}') == NULL)) return;
195 "Found AVT %s: %s\n", attr->name, str);
219 cur = str;
224 ret = xmlStrncat(ret, str, cur - str);
226 str = cur;
230 ret = xmlStrncat(ret, str, cur - str)
364 int str; local
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-typed-test.cc 40 // Skips to the first non-space char in str. Returns an empty string if str
42 static const char* SkipSpaces(const char* str) {
43 while (IsSpace(*str))
44 str++;
45 return str;
  /external/openssl/crypto/des/t/
test 19 $str="this is and again into the breach";
20 ($k1,$k2)=DES::string_to_2keys($str);
  /external/oprofile/libregex/tests/
regex_test.cpp 49 string str(test);
50 rep.execute(str);
51 if (str != expect) {
55 << '"' << str << '"' << endl;
  /external/oprofile/libutil/
op_string.h 38 * @param str: string to test
41 * return non zero if prefix parameters is a prefix of str
43 int strisprefix(char const * str, char const * prefix);
  /external/oprofile/libutil++/
path_filter.cpp 22 bool path_filter::match(string const & str) const
27 string comp = op_dirname(str);
40 string const base = op_basename(str);
54 string compi = op_dirname(str);
  /external/protobuf/src/google/protobuf/stubs/
strutil.h 80 inline bool HasPrefixString(const string& str,
82 return str.size() >= prefix.size() &&
83 str.compare(0, prefix.size(), prefix) == 0;
86 inline string StripPrefixString(const string& str, const string& prefix) {
87 if (HasPrefixString(str, prefix)) {
88 return str.substr(prefix.size());
90 return str;
96 // Return true if str ends in suffix.
102 inline bool HasSuffixString(const string& str,
104 return str.size() >= suffix.size() &
    [all...]
  /external/quake/quake/src/QW/client/
screen.h 30 void SCR_CenterPrint (char *str);
  /external/srec/shared/include/
ESR_Locale.h 80 * @param str String representation of locale
84 ESR_SHARED_API ESR_ReturnCode ESR_str2locale(const LCHAR* str, ESR_Locale* locale);
  /external/v8/src/
conversions.h 97 String* str,
101 Vector<const char> str,
106 const char* str,
111 double StringToInt(UnicodeCache* unicode_cache, String* str, int radix);
  /external/valgrind/tsan/
suppressions.h 46 int ReadFromString(const string &str);
  /external/webkit/LayoutTests/fast/js/resources/
string-concatenate-outofmemory.js 14 function ensureStringIsUsable(testName, stringName, str) {
15 str[str.length - 1];
16 try { [str, str].join(str); } catch (o) { }
17 try { "a" + str; } catch (o) { }
18 try { str + "a"; } catch (o) { }
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/String/
regress-179068.js 42 * For that the script passes to eval() "str ='LONG_STRING_LITERAL';" where
53 * > var str = "";
54 * > eval("str='".concat(long_str, "';"));
55 * > var test_is_ok = (str.length == LONG_STR_SEED.length * N);
58 * > The testcase creates two identical strings, |long_str| and |str|. It
59 * > uses eval() simply to assign the value of |long_str| to |str|. Why is
60 * > it necessary to have the variable |str|, then? Why not just create
78 * > you have done: |eval("str='".concat(long_str, "';"))|, or can we simply
79 * > do |eval("str = long_str;")| ?
81 * The concat is a replacement for eval("str='"+long_str+"';"), but a
102 var str = ""; variable
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleRule.cpp 48 String str; local
51 str += ", ";
52 str += s->selectorText();
54 return str;
  /external/webkit/Source/WebCore/html/
HTMLBRElement.cpp 66 const AtomicString& str = attr->value(); local
67 if (!str.isEmpty()) {
68 if (equalIgnoringCase(str, "all"))
71 addCSSProperty(attr, CSSPropertyClear, str);
  /external/webkit/Source/WebCore/platform/text/qt/
TextBoundariesQt.cpp 45 QString str(reinterpret_cast<QChar const*>(buffer), len);
46 QTextBoundaryFinder iterator(QTextBoundaryFinder::Word, str);
69 QString str(reinterpret_cast<QChar const*>(buffer), len);
70 QTextBoundaryFinder iterator(QTextBoundaryFinder::Word, str);
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseStressTest.java 66 String str = new String(ch); local
68 strArr[0] = str;
88 String str = new String(ch); local
90 strArr[0] = str;

Completed in 618 milliseconds

<<11121314151617181920>>