Searched defs:str (Results 1 - 25 of 2551) sorted by relevance

1234567891011>>

/external/clang/test/Lexer/
H A Dcxx0x_raw_string_unterminated.cpp3 const char *str = R"foo(abc variable
/external/icu/icu4c/source/test/perf/DateFmtPerf/
H A Dbreakdata.h16 UnicodeString str = variable
/external/c-ares/
H A Dares_free_string.c22 void ares_free_string(void *str) argument
24 free(str);
/external/clang/test/CodeGen/
H A Dwritable-strings.c4 char *str = "abc"; local
5 str[0] = '1';
6 printf("%s", str);
/external/clang/test/PCH/
H A Dremap-file-from-pch.cpp6 const char *str = STR; variable
/external/clang/test/CodeGenCXX/
H A D2004-11-27-FriendDefaultArgCrash.cpp6 struct str { struct in namespace:nm
/external/clang/test/Preprocessor/
H A Dstringize_space.c15 #define str(x) #x macro
16 #define f(x) str(-x)
/external/clang/test/SemaCXX/
H A Dwarn-address.cpp7 const char* str = ""; variable
19 if (str == "foo") {} // expected-warning{{unspecified}}
/external/compiler-rt/test/asan/TestCases/Darwin/
H A Dsuppressions-darwin.cc25 CFStringRef str = local
H A Dsuppressions-sandbox.cc16 CFStringRef str = local
/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_intercept_strlen.cc10 char str[] = "Hello!"; local
11 if (6 != strlen(str))
17 str[6] = '!'; // Removes '\0' at the end!
18 int len = strlen(str);
H A Dintercept_strlen.cc8 char str[] = "Hello"; local
9 if (5 != strlen(str))
16 str[5] = '!'; // Losing '\0' at the end.
17 int len = strlen(str);
25 // CHECK: 'str' <== Memory access at offset {{.*}} overflows this variable
/external/curl/src/
H A Dtool_strdup.c25 char *strdup(const char *str) argument
30 if(!str)
33 len = strlen(str);
42 memcpy(newstr, str, (len+1)*sizeof(char));
/external/google-benchmark/cmake/
H A Dgnu_posix_regex.cpp4 std::string str = "test0159"; local
10 return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
H A Dstd_regex.cpp4 const std::string str = "test0159"; local
8 return std::regex_search(str, re) ? 0 : -1;
/external/libcxx/test/libcxx/extensions/hash/
H A Dspecializations.pass.cpp18 char str[] = "test"; local
21 assert(__gnu_cxx::hash<char *>()(str) == std::hash<std::string>()("test"));
/external/libcxx/test/std/utilities/template.bitset/bitset.cons/
H A Dchar_ptr_ctor.pass.cpp11 // explicit bitset(const charT* str,
36 const char str[] ="1010101010"; local
37 std::bitset<N> v(str);
40 assert(v[i] == (str[M - 1 - i] == '1'));
/external/libcxx/utils/google-benchmark/cmake/
H A Dgnu_posix_regex.cpp4 std::string str = "test0159"; local
10 return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
H A Dstd_regex.cpp4 const std::string str = "test0159"; local
8 return std::regex_search(str, re) ? 0 : -1;
/external/libcxxabi/fuzz/
H A Dcxa_demangle_fuzzer.cpp9 char *str = new char[size+1]; local
10 memcpy(str, data, size);
11 str[size] = 0;
12 free(__cxa_demangle(str, 0, 0, 0));
13 delete [] str;
/external/libedit/src/
H A Dwcsdup.c27 wcsdup(const wchar_t *str) argument
32 _DIAGASSERT(str != NULL);
34 len = wcslen(str) + 1;
40 return wmemcpy(copy, str, len);
/external/libvncserver/libvncserver/
H A Dcutpaste.c35 void rfbGotXCutText(rfbScreenInfoPtr rfbScreen, char *str, int len) argument
37 rfbSendServerCutText(rfbScreen, str, len);
/external/libxml2/python/tests/
H A Dserialize.py12 str = doc.serialize() variable
13 if str != """<?xml version="1.0"?>
18 str = doc.serialize("iso-8859-1") variable
19 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
24 str = doc.serialize(format=1) variable
25 if str != """<?xml version="1.0"?>
32 str = doc.serialize("iso-8859-1", 1) variable
33 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
45 str = root.serialize() variable
46 if str !
49 str = root.serialize("iso-8859-1") variable
53 str = root.serialize(format=1) variable
59 str = root.serialize("iso-8859-1", 1) variable
71 str = doc.serialize() variable
77 str = doc.serialize("ISO-8859-1") variable
83 str = doc.serialize(format=1) variable
95 str = doc.serialize("iso-8859-1", 1) variable
113 str = root.serialize() variable
117 str = root.serialize("ISO-8859-1") variable
121 str = root.serialize(format=1) variable
131 str = root.serialize("iso-8859-1", 1) variable
[all...]
/external/openssh/openbsd-compat/
H A Dstrnlen.c28 strnlen(const char *str, size_t maxlen) argument
32 for (cp = str; maxlen != 0 && *cp != '\0'; cp++, maxlen--)
35 return (size_t)(cp - str);
/external/strace/
H A Dsocketcall.c34 const char *str = xlookup(socketcalls, call); local
36 if (str)
37 tprints(str);

Completed in 1375 milliseconds

1234567891011>>