HomeSort by relevance Sort by last modified time
    Searched full:auto (Results 1 - 25 of 8076) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/manual-tests/resources/
cursor-empty-url.css 1 #target { cursor: url(''), auto; }
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p2.cpp 6 void g() throw (auto(*)()->int);
10 operator auto(*)()->int(); // expected-error{{'auto' not allowed here}} expected-error {{C++ requires a type specifier}}
13 typedef auto Fun(int a) -> decltype(a + a);
14 typedef auto (*PFun)(int a) -> decltype(a + a);
16 void g(auto (*f)() -> int) {
18 catch (auto (&f)() -> int) { }
19 catch (auto (*const f[10])() -> int) { }
29 (void)typeid(auto(*)()->void);
30 (void)sizeof(auto(*)()->void)
    [all...]
p5.cpp 6 auto a; // expected-error{{'auto' not allowed in non-static struct member}}
7 auto *b; // expected-error{{'auto' not allowed in non-static struct member}}
8 const auto c; // expected-error{{'auto' not allowed in non-static struct member}}
10 void f() throw (auto); // expected-error{{'auto' not allowed here}}
12 friend auto; // expected-error{{'auto' not allowed in non-static struct member}
61 enum E : auto {}; \/\/ expected-error{{'auto' not allowed here}} enum
    [all...]
p3.cpp 4 auto a = a; // expected-error{{variable 'a' declared with 'auto' type cannot appear in its own initializer}}
5 auto *b = b; // expected-error{{variable 'b' declared with 'auto' type cannot appear in its own initializer}}
6 const auto c = c; // expected-error{{variable 'c' declared with 'auto' type cannot appear in its own initializer}}
7 if (auto d = d) {} // expected-error {{variable 'd' declared with 'auto' type cannot appear in its own initializer}}
8 auto e = ({ auto f = e; 0; }); // expected-error {{variable 'e' declared with 'auto' type cannot appear in its own (…)
    [all...]
p4.cpp 11 if (auto a = true) {
14 switch (auto a = 0) {
17 while (auto a = false) {
20 for (; auto a = false; ) {
23 new const auto (0);
24 new (auto) (0.0);
27 for (auto i : arr) {
32 static const auto n = 'x';
34 auto m = 0; // expected-error {{'auto' not allowed in non-static class member}
    [all...]
p7.cpp 4 auto a = 0, b = 0, c = 0;
5 auto d = 0, e = 0.0; // expected-error {{'int' in declaration of 'd' and deduced as 'double' in declaration of 'e'}}
7 auto v1 = 0, *p1 = &v1;
8 auto *p2 = 0, v2 = *p2; // expected-error {{incompatible initializer}}
11 auto &f = k, &g = a; // expected-error {{'const int' in declaration of 'f' and deduced as 'int' in declaration of 'g'}}
15 auto xa = x, xb = 0;
17 auto &&ra1 = a, rb1 = b; // expected-error {{'int &' in declaration of 'ra1' and deduced as 'int' in declaration of 'rb1'}}
18 auto &&ra2 = +a, rb2 = b;
22 auto a = 0,
27 auto d = 0, // expected-error {{'auto' deduced as 'int' in declaration of 'd' and deduced as 'double' i (…)
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p2-cxx0x.cpp 3 auto a() -> int; // ok
4 const auto b() -> int; // expected-error {{function with trailing return type must specify return type 'auto', not 'auto const'}}
5 auto *c() -> int; // expected-error {{function with trailing return type must specify return type 'auto', not 'auto *'}}
6 auto (d() -> int); // expected-error {{trailing return type may not be nested within parentheses}}
7 auto e() -> auto (*)() -> auto (*)() -> void; // ok: same as void (*(*e())())()
    [all...]
p8-0x.cpp 3 auto f() -> int[32]; // expected-error{{function cannot return array}}
4 auto g() -> int(int); // expected-error{{function cannot return function}}
5 auto h() -> auto() -> int; // expected-error{{function cannot return function}}
6 auto i() -> auto(*)() -> int;
  /ndk/tests/awk/gen-windows-host-path/
test-1.in 1 C:/cygwin/bin on /usr/bin type ntfs (binary,auto)
2 C:/cygwin/lib on /usr/lib type ntfs (binary,auto)
3 C:/cygwin on / type ntfs (binary,auto)
4 C: on /cygdrive/c type ntfs (binary,posix=0,user,noumount,auto)
5 D: on /cygdrive/d type udf (binary,posix=0,user,noumount,auto)
  /external/clang/test/PCH/
cxx-for-range.h 21 for (auto w : a)
22 for (auto x : S())
23 for (auto y : T())
24 for (auto z : U())
31 for (auto &v : a)
32 for (auto x : S())
33 for (auto y : T())
34 for (auto z : U())
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p2-cxx0x.cpp 10 only<const int*> p = new const auto (0);
11 only<double*> q = new (auto) (0.0);
13 new auto; // expected-error{{new expression for type 'auto' requires a constructor argument}}
14 new (const auto)(); // expected-error{{new expression for type 'auto const' requires a constructor argument}}
15 new (auto) (1,2,3); // expected-error{{new expression for type 'auto' contains multiple constructor arguments}}
19 only<int*> r = new auto(1);
20 auto x = new auto('a')
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p1-cxx0x.cpp 5 auto a[5] = b; // expected-error{{'a' declared as array of 'auto'}}
6 auto *c[5] = b; // expected-error{{'c' declared as array of 'auto *'}}
  /external/robolectric/src/main/java/android/os/
TestVibrator.java 7 // TODO Auto-generated method stub
12 // TODO Auto-generated method stub
18 // TODO Auto-generated method stub
23 // TODO Auto-generated method stub
  /external/clang/test/SemaCXX/
auto-cxx98.cpp 3 auto int a; // expected-warning {{'auto' storage class specifier is redundant and incompatible with C++11}}
4 int auto b; // expected-warning {{'auto' storage class specifier is redundant and incompatible with C++11}}
5 auto c; // expected-warning {{C++11 extension}} expected-error {{requires an initializer}}
6 static auto d = 0; // expected-warning {{C++11 extension}}
7 auto static e = 0; // expected-warning {{C++11 extension}}
auto-subst-failure.cpp 4 auto a = f(); // expected-error {{variable has incomplete type 'void'}}
5 auto &b = f(); // expected-error {{cannot form a reference to 'void'}}
6 auto *c = f(); // expected-error {{incompatible initializer of type 'void'}}
8 auto d(f()); // expected-error {{variable has incomplete type 'void'}}
9 auto &&e(f()); // expected-error {{cannot form a reference to 'void'}}
10 auto *g(f()); // expected-error {{incompatible initializer of type 'void'}}
12 (void)new auto(f()); // expected-error {{allocation of incomplete type 'void'}}
13 (void)new auto&(f()); // expected-error {{cannot form a reference to 'void'}}
14 (void)new auto*(f()); // expected-error {{incompatible constructor argument of type 'void'}}
redeclared-auto.cpp 4 auto a = 0; // expected-note 2{{here}}
5 auto a = 0; // expected-error {{redefinition}}
7 extern auto a; // expected-error {{requires an initializer}}
10 auto b = 0.0; // expected-error {{different type}}
17 auto S::a = 0; // expected-note 2{{here}}
18 auto S::a; // expected-error {{redefinition}} expected-error {{requires an initializer}}
21 auto S::b = 0.0; // expected-error {{different type}}
25 extern auto a; // expected-error {{requires an initializer}}
trailing-return-0x.cpp 15 auto f() -> int
20 auto g(); // expected-error{{return without trailing return type}}
22 int h() -> int; // expected-error{{trailing return type must specify return type 'auto', not 'int'}}
25 auto i() -> int;
28 using T = auto (int) -> auto (*)(char) -> void; // expected-note {{previous}}
29 using T = void; // expected-error {{type alias redefinition with different types ('void' vs 'auto (int) -> auto (*)(char) -> void')}}
31 using U = auto (int) -> auto (*)(char) -> void
    [all...]
auto-cxx0x.cpp 3 auto int a; // expected-warning {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
4 int auto b; // expected-error{{cannot combine with previous 'int' declaration specifier}}
  /ndk/tests/awk/gen-cygwin-deps-converter/
test-1.in 1 C:/cygwin/bin on /usr/bin type ntfs (binary,auto)
2 C:/cygwin/lib on /usr/lib type ntfs (binary,auto)
3 C:/cygwin on / type ntfs (binary,auto)
4 C: on /cygdrive/c type ntfs (binary,posix=0,user,noumount,auto)
5 D: on /cygdrive/d type udf (binary,posix=0,user,noumount,auto)
test-2.in 1 C:\cygwin/bin on /usr/bin type ntfs (binary,auto)
2 C:\cygwin/lib on /usr/lib type ntfs (binary,auto)
3 C:\cygwin on / type ntfs (binary,auto)
4 C: on /cygdrive/c type ntfs (binary,posix=0,user,noumount,auto)
5 D: on /cygdrive/d type udf (binary,posix=0,user,noumount,auto)
  /external/sonivox/arm-hybrid-22k/host_src/
eas_debugmsgs.h 0 /* Auto-generated from source file: eas_chorusdata.c */
2 /* Auto-generated from source file: eas_imelodydata.c */
3 /* Auto-generated from source file: eas_mididata.c */
4 /* Auto-generated from source file: eas_pan.c */
5 /* Auto-generated from source file: eas_wavefiledata.c */
6 /* Auto-generated from source file: eas_voicemgt.c */
7 /* Auto-generated from source file: eas_ota.c */
8 /* Auto-generated from source file: eas_mixbuf.c */
9 /* Auto-generated from source file: eas_rtttl.c */
10 /* Auto-generated from source file: eas_reverb.c *
    [all...]
  /external/sonivox/arm-fm-22k/host_src/
eas_debugmsgs.h 0 /* Auto-generated from source file: eas_chorusdata.c */
2 /* Auto-generated from source file: eas_imelodydata.c */
3 /* Auto-generated from source file: eas_mididata.c */
4 /* Auto-generated from source file: eas_pan.c */
5 /* Auto-generated from source file: eas_wavefiledata.c */
6 /* Auto-generated from source file: eas_voicemgt.c */
7 /* Auto-generated from source file: eas_ota.c */
8 /* Auto-generated from source file: eas_mixbuf.c */
9 /* Auto-generated from source file: eas_fmsndlib.c */
10 /* Auto-generated from source file: eas_rtttl.c *
    [all...]
  /bionic/libc/kernel/arch-arm/asm/arch/
mux.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
  /device/asus/deb/kernel-headers/media/
msm_cam_sensor.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
  /device/asus/flo/kernel-headers/media/
msm_cam_sensor.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]

Completed in 4737 milliseconds

1 2 3 4 5 6 7 8 91011>>