Searched refs:Ident (Results 1 - 25 of 60) 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/compiler-rt/lib/asan/tests/
H A Dasan_str_test.cc36 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_
[all...]
H A Dasan_test.cc102 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(ne
[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);
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((
[all...]
H A Dasan_interface_test.cc30 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(
[all...]
H A Dasan_benchmarks_test.cc74 Ident(stack);
79 Ident(&FunctionWithLargeStack)();
/external/llvm/lib/Object/
H A DELFObjectFile.cpp22 std::pair<unsigned char, unsigned char> Ident = local
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/
H A Dstack-use-after-return.cc34 char *Ident(char *x) { function
42 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 >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
/external/clang/lib/Sema/
H A DAttributeList.cpp26 IdentifierInfo *Ident) {
29 Result->Ident = Ident;
25 create(ASTContext &Ctx, SourceLocation Loc, IdentifierInfo *Ident) argument
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_test_utils.h78 static T Ident(T t) { function

Completed in 8177 milliseconds

123