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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/ManualTests/resources/
cursor-empty-url.css 1 #target { cursor: url(''), auto; }
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
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...]
p7-1y.cpp 20 auto x3a = i;
21 decltype(auto) x3d = i;
25 auto x4a = (i);
26 decltype(auto) x4d = (i);
30 auto x5a = f();
31 decltype(auto) x5d = f();
35 auto x6a = { 1, 2 };
36 decltype(auto) x6d = { 1, 2 }; // expected-error {{cannot deduce 'decltype(auto)' from initializer list}}
39 auto *x7a = &i
    [all...]
p2.cpp 6 void g() throw (auto(*)()->int);
10 operator auto(*)()->int(); // expected-error{{'auto' not allowed in conversion function type}} 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...]
p3-1y.cpp 6 decltype(auto) a = a; // expected-error{{variable 'a' declared with 'auto' type cannot appear in its own initializer}}
7 if (decltype(auto) b = b) {} // expected-error {{variable 'b' declared with 'auto' type cannot appear in its own initializer}}
8 decltype(auto) c = ({ decltype(auto) d = c; 0; }); // expected-error {{variable 'c' declared with 'auto' type cannot appear in its own initializer}}
12 decltype(auto) a; // expected-error{{declaration of variable 'a' with type 'decltype(auto)' requires an initializer}}
14 decltype(auto) *b; // expected-error{{cannot form pointer to 'decltype(auto)'}} expected-error{{declaration of v (…)
    [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...]
  /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}}
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}}
cxx1y-deduced-return-type.cpp 3 auto f(); // expected-note {{previous}}
6 auto &g();
7 auto g() -> auto &;
9 auto h() -> auto *;
10 auto *h();
13 operator auto(); // expected-note {{declared here}}
15 int conv1a = conv1; // expected-error {{function 'operator auto' with deduced return type cannot be used before it is defined}}
17 Conv1::operator auto() { return 123;
203 template<typename T, typename U> auto f() -> auto (T::*)(U) { function in namespace:Templates::DeduceInDeducedReturnType
    [all...]
  /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...]
  /external/chromium_org/chrome/browser/resources/
about_version_android.css 11 width: auto;
16 margin-left: auto;
17 margin-right: auto;
  /device/lge/hammerhead/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 807 milliseconds

1 2 3 4 5 6 7 8 91011>>