Searched refs:Ident (Results 1 - 25 of 52) sorted by relevance

123

/external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
H A Dtemplateid.cpp8 template <typename> class Ident {}; // expected-note {{previous use is here}} class
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/llvm/lib/Object/
H A DELFObjectFile.cpp25 std::pair<unsigned char, unsigned char> Ident = getElfArchType(Object); local
31 if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB)
41 else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB)
51 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB)
61 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB) {
/external/compiler-rt/lib/asan/tests/
H A Dasan_str_test.cc32 EXPECT_DEATH(Ident(strlen(str - 1)), LeftOOBReadMessage(1));
33 EXPECT_DEATH(Ident(strlen(str - 5)), LeftOOBReadMessage(5));
35 EXPECT_DEATH(Ident(strlen(str + length + 1)), RightOOBReadMessage(0));
39 EXPECT_DEATH(Ident(strlen(str)), RightOOBReadMessage(0));
40 EXPECT_DEATH(Ident(strlen(str + length)), RightOOBReadMessage(0));
46 size_t length = Ident(10);
47 char *heap_string = Ident((char*)malloc(length + 1));
66 size_t size = Ident(123);
69 Ident(strnlen(str - 1, 0));
70 Ident(strnle
[all...]
H A Dasan_test.cc175 long double *p = Ident(new long double[10]);
176 EXPECT_DEATH(Ident(p)[12] = 0, "WRITE of size 10");
177 EXPECT_DEATH(Ident(p)[0] = Ident(p)[12], "READ of size 10");
178 delete [] Ident(p);
188 Packed5 *p = Ident(new Packed5[2]);
191 delete [] Ident(p);
196 int *x = Ident(new int);
197 delete Ident(x);
211 delete Ident(
[all...]
H A Dasan_mem_test.cc18 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);
107 if (!Ident(AllocateTwoAdjacentArrays)(&x1, &x2, size))
111 EXPECT_DEATH(Ident(memset)(x1, 0, size * 2),
124 size_t size = Ident(sizeof(T) * length);
125 T *src = Ident((T*)malloc(size));
126 T *dest = Ident((
[all...]
H A Dasan_benchmarks_test.cc74 Ident(stack);
79 Ident(&FunctionWithLargeStack)();
H A Dasan_noinst_test.cc226 Ident(n_frames);
252 Ident(n_frames);
367 char *array = Ident((char*)malloc(kArraySize));
368 int *int_ptr = Ident(new int);
397 void *zero_alloc = Ident(malloc(0));
414 array = Ident((char*)malloc(kMallocSize));
424 int *x = Ident(new int);
425 delete Ident(x);
426 delete Ident(x);
439 free(Ident(mallo
[all...]
/external/compiler-rt/lib/asan/lit_tests/
H A Dstack-use-after-return.cc22 char *Ident(char *x) { function
30 return Ident(&local);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dparser.ml26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
H A Dlexer.ml47 | id -> [< 'Token.Ident id; stream >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dparser.ml26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
H A Dlexer.ml47 | id -> [< 'Token.Ident id; stream >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dparser.ml26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
H A Dlexer.ml47 | id -> [< 'Token.Ident id; stream >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dlexer.ml52 | id -> [< 'Token.Ident id; stream >]
H A Dparser.ml28 | [< '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/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dlexer.ml54 | id -> [< 'Token.Ident id; stream >]
H A Dparser.ml28 | [< 'Token.Ident id; stream >] ->
58 'Token.Ident id ?? "expected identifier after for";
143 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
155 | [< 'Token.Ident id;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_test_utils.h63 static T Ident(T t) { function

Completed in 1389 milliseconds

123