Home
last modified time | relevance | path

Searched refs:iarr (Results 1 – 9 of 9) sorted by relevance

/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
Dp1.cpp37 int iarr[10]; variable
48 X0<iarr> x0b; in test()
49 X0<&iarr> x0b_addr; // expected-error {{cannot be converted to a value of type 'int *'}} in test()
63 X2<iarr> x2b; // expected-error {{cannot bind to template argument of type 'int [10]'}} in test()
64 X2<&iarr> x2b_addr; // expected-error {{address taken}} in test()
/external/clang/test/CodeGenCXX/
Dreference-init.cpp15 int iarr[] = { 1 }; variable
16 int test() { return f(iarr); } in test()
/external/clang/test/SemaCXX/
Dwarn-memset-bad-sizeof.cpp96 int iarr[14]; in f() local
97 memset(&iarr[0], 0, sizeof iarr); in f()
Dconst-cast.cpp19 typedef iar &iarr; typedef
33 int (&rar)[100] = const_cast<iarr>(ar); in good_const_cast_test()
Dcxx1y-variable-templates_top_level.cpp349 int *iarr = arr<int>; in bar() local
350 iarr[0] = 1; in bar()
351 iarr[2] = 3; in bar()
352 iarr[6] = -2; in bar()
Dcstyle-cast.cpp21 typedef iar &iarr; typedef
Dfunctional-cast.cpp50 typedef iar &iarr; typedef
/external/clang/test/SemaTemplate/
Ddeduction.cpp87 int iarr[] = { 1 }; variable
88 void test_PR5911() { f(iarr); } in test_PR5911()
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
Dsrpc_params.cc55 free(arg->arrays.iarr); in FreeSrpcArg()