HomeSort by relevance Sort by last modified time
    Searched refs:Ident (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
templateid.cpp 8 template <typename> class Ident {}; // expected-note {{previous use is here}}
11 template <typename> void Ident();
13 class Ident<int> AIdent; // expected-error {{refers to a function template}}
14 class ::Ident<int> AnotherIdent;
17 class Ident<int> GlobalIdent;
18 union Ident<int> GlobalIdent2; // expected-error {{ tag type that does not match }}
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 36 EXPECT_DEATH(Ident(strlen(str - 1)), LeftOOBReadMessage(1));
37 EXPECT_DEATH(Ident(strlen(str - 5)), LeftOOBReadMessage(5));
39 EXPECT_DEATH(Ident(strlen(str + length + 1)), RightOOBReadMessage(0));
43 EXPECT_DEATH(Ident(strlen(str)), RightOOBReadMessage(0));
44 EXPECT_DEATH(Ident(strlen(str + length)), RightOOBReadMessage(0));
50 size_t length = Ident(10);
51 char *heap_string = Ident((char*)malloc(length + 1));
69 EXPECT_EQ(0U, wcslen(Ident(L"")));
72 EXPECT_EQ(hello_len, wcslen(Ident(L"Hello, World!")));
73 wchar_t *heap_string = Ident((wchar_t*)malloc(hello_size))
    [all...]
asan_test.cc 102 char *x = Ident((char*)calloc(1, size));
109 free(Ident(x));
113 free(Ident(malloc(Ident(1 << 27)))); // Try to drain the quarantine.
186 long double *p = Ident(new long double[10]);
187 EXPECT_DEATH(Ident(p)[12] = 0, "WRITE of size 1[026]");
188 EXPECT_DEATH(Ident(p)[0] = Ident(p)[12], "READ of size 1[026]");
189 delete [] Ident(p);
208 Packed5 *p = Ident(new Packed5[2])
    [all...]
asan_mem_test.cc 18 size_t size = Ident(sizeof(T) * length);
19 T *array = Ident((T*)malloc(size));
20 int element = Ident(42);
21 int zero = Ident(0);
22 void *(*MEMSET)(void *s, int c, size_t n) = Ident(memset);
108 if (!Ident(AllocateTwoAdjacentArrays)(&x1, &x2, size))
112 EXPECT_DEATH(Ident(memset)(x1, 0, size * 2),
125 size_t size = Ident(sizeof(T) * length);
126 T *src = Ident((T*)malloc(size));
127 T *dest = Ident((T*)malloc(size))
    [all...]
asan_interface_test.cc 30 char *array = Ident((char*)malloc(kArraySize));
31 int *int_ptr = Ident(new int);
63 void *zero_alloc = Ident(malloc(0));
80 array = Ident((char*)malloc(kMallocSize));
94 free(Ident(malloc(kLargeMallocSize))); // Drain quarantine.
98 free(Ident(malloc(kLargeMallocSize)));
112 free(Ident(malloc(kManyThreadsMallocSizes[size_index])));
116 free(Ident(malloc(1 << 20)));
138 int *x = Ident(new int);
139 delete Ident(x)
    [all...]
asan_benchmarks_test.cc 74 Ident(stack);
79 Ident(&FunctionWithLargeStack)();
  /external/llvm/lib/Object/
ELFObjectFile.cpp 22 std::pair<unsigned char, unsigned char> Ident =
29 if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB)
41 else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB)
53 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB)
65 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB) {
  /external/compiler-rt/test/asan/TestCases/
stack-use-after-return.cc 34 char *Ident(char *x) {
42 return Ident(local);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 12 | Ident of string | Number of float
parser.ml 26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
lexer.ml 47 | id -> [< 'Token.Ident id; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 12 | Ident of string | Number of float
parser.ml 26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
lexer.ml 47 | id -> [< 'Token.Ident id; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 12 | Ident of string | Number of float
parser.ml 26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
lexer.ml 47 | id -> [< 'Token.Ident id; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 12 | Ident of string | Number of float
lexer.ml 52 | id -> [< 'Token.Ident id; stream >]
parser.ml 28 | [< 'Token.Ident id; stream >] ->
58 'Token.Ident id ?? "expected identifier after for";
130 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
135 | [< 'Token.Ident id;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 12 | Ident of string | Number of float
lexer.ml 54 | id -> [< 'Token.Ident id; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 12 | Ident of string | Number of float
  /external/clang/lib/Sema/
AttributeList.cpp 26 IdentifierInfo *Ident) {
29 Result->Ident = Ident;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_test_utils.h 78 static T Ident(T t) {

Completed in 404 milliseconds

1 2 3