OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:int_1
(Results
1 - 5
of
5
) sorted by null
/external/clang/test/SemaCXX/
address-space-newdelete.cpp
6
typedef int __attribute__((address_space(1)))
int_1
;
typedef
9
(void)new
int_1
; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
11
(void)new
int_1
[5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
15
(void)new (p)
int_1
; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
17
(void)new (p)
int_1
[5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
21
void test_delete(
int_1
*ip1) {
address-space-references.cpp
3
typedef int __attribute__((address_space(1)))
int_1
;
typedef
6
void f0(
int_1
&); // expected-note{{candidate function not viable: 1st argument ('int') is in address space 0, but parameter must be in address space 1}} \
8
void f0(const
int_1
&); // expected-note{{candidate function not viable: 1st argument ('int') is in address space 0, but parameter must be in address space 1}} \
13
static
int_1
i1;
/external/clang/test/SemaTemplate/
address-spaces.cpp
13
typedef int __attribute__((address_space(1)))
int_1
;;
typedef
30
int check_remove0[is_same<remove_pointer<int_1_ptr>::type,
int_1
>::value? 1 : -1];
33
int check_remove3[is_same<remove_pointer<int_2_ptr>::type,
int_1
>::value? -1 : 1];
72
static int __attribute__((address_space(1)))
int_1
;
local
73
identity<int> ii = accept_arg_in_address_space_1(
int_1
);
74
identity<int __attribute__((address_space(1)))> ii2 = accept_any_arg(
int_1
);
/external/mesa3d/src/compiler/glsl/
test_optpass.cpp
60
int
int_1
;
local
93
&int_0, &
int_1
, &int_2, &int_3, &int_4) == 5) {
94
return do_lower_jumps(ir, int_0 != 0,
int_1
!= 0, int_2 != 0,
123
"( %d , %d , %d , %d ) ", &int_0, &
int_1
, &int_2,
126
int_0 != 0,
int_1
!= 0,
/external/libbrillo/brillo/
flag_helper_unittest.cc
222
DEFINE_int32(
int_1
, 0, "Test int flag");
228
const char* argv[] = {"test_program", "--
int_1
=value", "--help"};
245
" --
int_1
\\(Test int flag\\) type: int default: 0\n"
296
DEFINE_int32(
int_1
, 0, "Test int flag");
298
const char* argv[] = {"test_program", "--
int_1
=value"};
311
"ERROR: illegal value 'value' specified for int flag '
int_1
'");
Completed in 1467 milliseconds