HomeSort by relevance Sort by last modified time
    Searched full:default (Results 76 - 100 of 41679) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/oprofile/events/ppc/7450/
unit_masks 3 name:zero type:mandatory default:0x0
  /external/oprofile/events/ppc/e300/
unit_masks 3 name:zero type:mandatory default:0x0
  /external/oprofile/events/ppc/e500/
unit_masks 3 name:zero type:mandatory default:0x0
  /external/oprofile/events/ppc/e500v2/
unit_masks 3 name:zero type:mandatory default:0x0
  /external/oprofile/events/ppc64/970/
unit_masks 3 name:zero type:mandatory default:0x0
  /external/oprofile/events/ppc64/pa6t/
unit_masks 3 name:zero type:mandatory default:0x0
  /external/oprofile/events/ppc64/power4/
unit_masks 3 name:zero type:mandatory default:0x0
  /external/oprofile/events/ppc64/power5/
unit_masks 3 name:zero type:mandatory default:0x0
  /external/oprofile/events/rtc/
unit_masks 3 name:zero type:mandatory default:0x0
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
TestAnnotation2.java 11 TestAnnotation3[] arrAnno() default {};
12 String[] arrString() default {};
13 Class[] arrClass() default {};
14 TestEnum1[] arrEnum() default {};
  /art/test/004-annotations/src/android/test/anno/
AnnoFancyMethod.java 10 boolean callMe() default false;
12 AnnoFancyMethodEnum enumerated() default AnnoFancyMethodEnum.FOO;
13 Class someClass() default SomeClass.class;
  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoFancyMethod.java 10 boolean callMe() default false;
12 AnnoFancyMethodEnum enumerated() default AnnoFancyMethodEnum.FOO;
13 Class someClass() default SomeClass.class;
  /external/chromium_org/chrome/third_party/chromevox/chromevox/background/mathmaps/symbols/
greek-capital.json 7 "default": {
8 "default": "greek capital letter alpha",
17 "default": {
18 "default": "greek capital letter beta",
27 "default": {
28 "default": "greek capital letter gamma",
37 "default": {
38 "default": "greek capital letter delta",
47 "default": {
48 "default": "greek capital letter epsilon"
    [all...]
latin-lower-double-accent.json 7 "default": {
8 "default": "latin small letter u with diaeresis and macron",
17 "default": {
18 "default": "latin small letter u with diaeresis and acute",
27 "default": {
28 "default": "latin small letter u with diaeresis and caron",
37 "default": {
38 "default": "latin small letter u with diaeresis and grave",
47 "default": {
48 "default": "latin small letter a with diaeresis and macron"
    [all...]
latin-upper-double-accent.json 7 "default": {
8 "default": "latin capital letter u with diaeresis and macron",
17 "default": {
18 "default": "latin capital letter u with diaeresis and acute",
27 "default": {
28 "default": "latin capital letter u with diaeresis and caron",
37 "default": {
38 "default": "latin capital letter u with diaeresis and grave",
47 "default": {
48 "default": "latin capital letter a with diaeresis and macron"
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p1.cpp 6 A(int) = default; // expected-error {{only special member functions may be defaulted}}
10 void operator=(const A &) = default; // expected-error {{must return 'A &'}}
11 A(...) = default; // expected-error {{cannot be variadic}}
12 A(const A &, ...) = default; // expected-error {{cannot be variadic}}
15 A &operator=(A &&) & = default;
19 A(A &) = default;
20 A &operator=(A &) = default;
22 // -- not have default arguments
23 A(double = 0.0) = default; // expected-error {{cannot have default arguments}
    [all...]
p2.cpp 6 constexpr S1() = default; // expected-error {{defaulted definition of default constructor is not constexpr}}
7 constexpr S1(const S1&) = default;
8 constexpr S1(S1&&) = default;
9 constexpr S1 &operator=(const S1&) const = default; // expected-error {{explicitly-defaulted copy assignment operator may not have}}
10 constexpr S1 &operator=(S1&&) const = default; // expected-error {{explicitly-defaulted move assignment operator may not have}}
11 constexpr ~S1() = default; // expected-error {{destructor cannot be marked constexpr}}
20 constexpr S2() = default;
21 constexpr S2(const S2&) = default; // expected-error {{defaulted definition of copy constructor is not constexpr}}
22 constexpr S2(S2&&) = default; // expected-error {{defaulted definition of move constructor is not constexpr}
    [all...]
  /external/clang/test/CodeGenObjC/
hidden.m 12 __attribute__((visibility("default")))
13 @interface Default
17 @implementation Default
  /external/chromium_org/third_party/WebKit/Source/core/events/
MouseEvent.idl 36 void initMouseEvent([Default=Undefined] optional DOMString type,
37 [Default=Undefined] optional boolean canBubble,
38 [Default=Undefined] optional boolean cancelable,
39 [Default=Undefined] optional Window view,
40 [Default=Undefined] optional long detail,
41 [Default=Undefined] optional long screenX,
42 [Default=Undefined] optional long screenY,
43 [Default=Undefined] optional long clientX,
44 [Default=Undefined] optional long clientY,
45 [Default=Undefined] optional boolean ctrlKey
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-cursory-default-delete.cpp 6 non_copiable() = default;
13 non_const_copy() = default; // expected-note {{not viable}}
15 non_const_copy::non_const_copy(non_const_copy&) = default; // expected-note {{not viable}}
16 non_const_copy& non_const_copy::operator = (non_const_copy&) & = default; // expected-note {{not viable}}
17 non_const_copy& non_const_copy::operator = (non_const_copy&) && = default; // expected-note {{not viable}}
28 const non_const_copy cncc1; // expected-error {{default initialization of an object of const type 'const non_const_copy' requires a user-provided default constructor}}
34 non_const_derived(const non_const_derived&) = default; // expected-error {{requires it to be non-const}}
35 non_const_derived& operator =(non_const_derived&) = default;
39 bad_decls(volatile bad_decls&) = default; // expected-error {{may not be volatile}
    [all...]
  /dalvik/dx/tests/115-merge/testdata/
Annotated.java 19 String a() default "";
20 String[] b() default {};
21 Nested c() default @Nested;
22 Nested[] d() default {};
27 String e() default "";
28 int f() default 0;
29 long g() default 0L;
  /external/clang/test/CXX/class/
p6-0x.cpp 19 Trivial2() = default;
20 Trivial2(const Trivial2 &) = default;
21 Trivial2(Trivial2 &&) = default;
22 Trivial2 &operator=(const Trivial2 &) = default;
23 Trivial2 &operator=(Trivial2 &&) = default;
24 ~Trivial2() = default;
29 NonTrivial6::~NonTrivial6() = default;
  /external/clang/test/CXX/dcl.decl/dcl.init/
p6.cpp 5 // If a program calls for the default initialization of an object of a
7 // user-provided default constructor.
13 const NoUserDefault x1; // expected-error{{default initialization of an object of const type 'const NoUserDefault' requires a user-provided default constructor}}
15 const int x3; // expected-error{{default initialization of an object of const type 'const int'}}
21 const struct s0 s1::foo; // expected-error{{default initialization of an object of const type 'const struct s0' requires a user-provided default constructor}}
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p3.cpp 3 void nondecl(int (*f)(int x = 5)) // expected-error {{default arguments can only be specified}}
5 void (*f2)(int = 17) // expected-error {{default arguments can only be specified}}
6 = (void (*)(int = 42))f; // expected-error {{default arguments can only be specified}}
10 int (*f)(int = 17); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
11 void (*g())(int = 22); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
13 auto i(int) -> void (*)(int = 9); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
15 void mem8(int (*fp)(int) = (int (*)(int = 17))0); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
  /external/clang/test/Parser/
cxx-default-delete.cpp 4 int j = default; // expected-error{{special member functions}}
9 int q() = default, r; // expected-error{{only special member functions}} \
10 // expected-error{{'= default' is a function definition}}
11 int s, t() = default; // expected-error{{'= default' is a function definition}}
14 foo() = default;
22 int quux() = default; // expected-error{{constructor cannot have a return type}} expected-error {{member 'quux' has the same name as its class}}

Completed in 238 milliseconds

1 2 34 5 6 7 8 91011>>