HomeSort by relevance Sort by last modified time
    Searched defs:str (Results 1 - 25 of 4378) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Lexer/
cxx0x_raw_string_unterminated.cpp 3 const char *str = R"foo(abc variable
  /external/icu/icu4c/source/test/perf/DateFmtPerf/
breakdata.h 16 UnicodeString str = variable
  /external/clang/test/CodeGen/
writable-strings.c 4 char *str = "abc"; local
5 str[0] = '1';
6 printf("%s", str);
  /external/clang/test/PCH/
remap-file-from-pch.cpp 6 const char *str = STR; variable
  /external/libcxxabi/fuzz/
cxa_demangle_fuzzer.cpp 9 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/libxml2/python/tests/
serialize.py 12 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 != """<root><foo>hello</foo></root>"""
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...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/str/
path.go 5 package str package
  /prebuilts/go/linux-x86/src/cmd/go/internal/str/
path.go 5 package str package
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/fuzz/
cxa_demangle_fuzzer.cpp 9 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;
  /build/kati/
stringprintf.cc 23 string str; local
24 str.resize(128);
28 int ret = vsnprintf(&str[0], str.size(), format, args);
31 if (static_cast<size_t>(ret) < str.size()) {
32 str.resize(ret);
33 return str;
35 str.resize(ret + 1);
  /external/clang/test/CodeGenCXX/
2004-11-27-FriendDefaultArgCrash.cpp 6 struct str { struct in namespace:nm
debug-info-template-quals.cpp 14 basic_string<char> str; local
15 str.assign(c, str);
  /external/clang/test/Preprocessor/
stringize_space.c 15 #define str(x) #x macro
16 #define f(x) str(-x)
  /external/clang/test/SemaCXX/
warn-address.cpp 7 const char* str = ""; variable
19 if (str == "foo") {} // expected-warning{{unspecified}}
  /external/compiler-rt/test/asan/TestCases/Darwin/
suppressions-darwin.cc 25 CFStringRef str = local
suppressions-sandbox.cc 16 CFStringRef str = local
  /external/compiler-rt/test/asan/TestCases/Windows/
dll_intercept_strlen.cc 10 char str[] = "Hello!"; local
11 if (6 != strlen(str))
17 str[6] = '!'; // Removes '\0' at the end!
18 int len = strlen(str);
intercept_strlen.cc 8 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/compiler-rt/test/asan/TestCases/
alloca_big_alignment.cc 8 volatile char str[len] __attribute__((aligned(128))); local
9 assert(!(reinterpret_cast<long>(str) & 127L));
10 str[index] = '1'; // BOOM
alloca_instruments_all_paddings.cc 10 volatile char str[len] __attribute__((aligned(32))); local
11 assert(!(reinterpret_cast<long>(str) & 31L));
12 char *q = (char *)__asan_region_is_poisoned((char *)str, 64);
13 assert(q && ((q - str) == index));
alloca_overflow_partial.cc 8 volatile char str[len] __attribute__((aligned(32))); local
9 assert(!(reinterpret_cast<long>(str) & 31L));
10 str[index] = '1'; // BOOM
alloca_overflow_right.cc 8 volatile char str[len] __attribute__((aligned(32))); local
9 assert(!(reinterpret_cast<long>(str) & 31L));
10 str[index] = '1'; // BOOM
alloca_safe_access.cc 8 volatile char str[len] __attribute__((aligned(32))); local
9 assert(!(reinterpret_cast<long>(str) & 31L));
10 str[index] = '1';
alloca_underflow_left.cc 8 volatile char str[len] __attribute__((aligned(32))); local
9 assert(!(reinterpret_cast<long>(str) & 31L));
10 str[index] = '1'; // BOOM
vla_condition_overflow.cc 11 char str[len]; //NOLINT local
12 assert(!(reinterpret_cast<uintptr_t>(str) & 31L));
13 str[index] = '1'; // BOOM

Completed in 1010 milliseconds

1 2 3 4 5 6 7 8 91011>>