HomeSort by relevance Sort by last modified time
    Searched refs:Ident (Results 1 - 25 of 52) 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/llvm/lib/Object/
ELFObjectFile.cpp 25 std::pair<unsigned char, unsigned char> Ident = getElfArchType(Object);
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/
asan_str_test.cc 32 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(strnlen(str, size))
    [all...]
asan_test.cc 175 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(x)
    [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);
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((T*)malloc(size))
    [all...]
asan_benchmarks_test.cc 74 Ident(stack);
79 Ident(&FunctionWithLargeStack)();
asan_noinst_test.cc 226 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(malloc(kLargeMallocSize)))
    [all...]
  /external/compiler-rt/lib/asan/lit_tests/
stack-use-after-return.cc 22 char *Ident(char *x) {
30 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 >]
parser.ml 28 | [< '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/
token.ml 12 | Ident of string | Number of float
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_test_utils.h 63 static T Ident(T t) {

Completed in 447 milliseconds

1 2 3