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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/class/class.mem/
p8-0x.cpp 8 virtual void g() override override; // expected-error {{class member already marked 'override'}}
9 virtual void h() final final; // expected-error {{class member already marked 'final'}}
20 void g() override; // expected-error {{only virtual member functions can be marked 'override'}}
21 int h override; // expected-error {{only virtual member functions can be marked 'override'}}
26 void g() final; // expected-error {{only virtual member functions can be marked 'final'}}
27 int h final; // expected-error {{only virtual member functions can be marked 'final'}}
36 virtual void g() override override {} // expected-error {{class member already marked 'override'}}
37 virtual void h() final final {} // expected-error {{class member already marked 'final'}}
46 void g() override {} // expected-error {{only virtual member functions can be marked 'override'}}
51 void g() final {} // expected-error {{only virtual member functions can be marked 'final'}
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
ins.h 18 byte marked; member in struct:Ins::__anon20285
29 return i->i.marked != 0;
33 i->i.marked = 1;
37 i->i.marked = 0;
  /external/clang/test/SemaCXX/
attr-unused.cpp 1 // RUN: %clang_cc1 -verify -Wunused -Wused-but-marked-unused -fsyntax-only %s
8 ns_unused::Int_unused i0; // expected-warning {{'Int_unused' was marked unused but was used}}
attr-sentinel.cpp 12 S(int,...) __attribute__((sentinel)); // expected-note {{marked sentinel}}
13 void a(int,...) __attribute__((sentinel)); // expected-note {{marked sentinel}}
14 void* operator new(size_t,...) __attribute__((sentinel)); // expected-note {{marked sentinel}}
15 void operator()(int,...) __attribute__((sentinel)); // expected-note {{marked sentinel}}
attr-deprecated.cpp 3 void f() __attribute__((deprecated)); // expected-note 2 {{'f' has been explicitly marked deprecated here}}
7 int b __attribute__((deprecated)); // expected-note 2 {{'b' has been explicitly marked deprecated here}}
29 virtual void f() __attribute__((deprecated)); // expected-note 4 {{'f' has been explicitly marked deprecated here}}
71 void foo(int) __attribute__((deprecated)); // expected-note {{'foo' has been explicitly marked deprecated here}}
73 void foo(short) __attribute__((deprecated)); // expected-note {{'foo' has been explicitly marked deprecated here}}
78 friend void foo(A*) __attribute__((deprecated)); // expected-note {{'foo' has been explicitly marked deprecated here}}
84 void foo(const Foo &f) __attribute__((deprecated)); // expected-note {{'foo' has been explicitly marked deprecated here}}
94 void foo(int) __attribute__((deprecated)); // expected-note 2 {{'foo' has been explicitly marked deprecated here}}
96 static void bar(int) __attribute__((deprecated)); // expected-note 3 {{'bar' has been explicitly marked deprecated here}}
123 void operator*(int) __attribute__((deprecated)); // expected-note {{'operator*' has been explicitly marked deprecated here}
    [all...]
  /external/markdown/tests/extensions-x-footnotes/
named_markers.txt 5 [^foo]: Footnote marked ``foo``.
6 [^bar]: This one is marked *bar*.
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.deprecated/
p1.cpp 3 class [[deprecated]] C {}; // expected-note {{'C' has been explicitly marked deprecated here}}
6 typedef int t [[deprecated]]; // expected-note {{'t' has been explicitly marked deprecated here}}
9 [[deprecated]] int old = 42; // expected-note {{'old' has been explicitly marked deprecated here}}
12 struct S { [[deprecated]] int member = 42; } s; // expected-note {{'member' has been explicitly marked deprecated here}}
15 [[deprecated]] int f() { return 42; } // expected-note {{'f' has been explicitly marked deprecated here}}
18 enum [[deprecated]] e { E }; // expected-note {{'e' has been explicitly marked deprecated here}}
22 template <> class [[deprecated]] X<int> {}; // expected-note {{'X<int>' has been explicitly marked deprecated here}}
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
PackageVerificationStateTest.java 34 assertFalse("Verification should not be marked as complete yet",
42 assertTrue("Installation should be marked as allowed",
49 assertFalse("Verification should not be marked as complete yet",
57 assertFalse("Installation should be marked as allowed",
64 assertFalse("Verification should not be marked as complete yet",
69 assertFalse("Verification should not be marked as complete yet",
74 assertFalse("Verification should not be marked as complete yet",
82 assertFalse("Installation should be marked as allowed",
89 assertFalse("Verification should not be marked as complete yet",
94 assertFalse("Verification should not be marked as complete yet"
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfMarkInformationDictionary_autogen.cpp 11 bool SkPdfMarkInformationDictionary::Marked(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Marked", "");
20 return get("Marked", "") != NULL;
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfMarkInformationDictionary_autogen.cpp 11 bool SkPdfMarkInformationDictionary::Marked(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Marked", "");
20 return get("Marked", "") != NULL;
  /external/bsdiff/
README.android 6 Changes in the source are marked with "// android" comments.
  /external/chromium_org/tools/clang/plugins/tests/
overridden_methods.txt 2 ./overridden_methods.h:48:28: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
6 ./overridden_methods.h:52:34: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
10 ./overridden_methods.h:56:39: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
14 ./overridden_methods.h:58:53: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
18 ./overridden_methods.h:61:67: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
22 ./overridden_methods.h:63:39: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
26 ./overridden_methods.h:65:39: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
30 ./overridden_methods.h:67:46: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
34 overridden_methods.cpp:24:28: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
38 overridden_methods.cpp:28:34: warning: [chromium-style] Overriding method must be marked with OVERRIDE
    [all...]
  /external/clang/test/SemaObjC/
special-dep-unavail-warning.m 6 - (void) unavailMeth __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}}
7 - (void) depInA1 __attribute__((deprecated)); // expected-note {{'depInA1' has been explicitly marked deprecated here}}
9 - (void) depInA2 __attribute__((deprecated)); // expected-note {{'depInA2' has been explicitly marked deprecated here}}
10 - (void) unavailMeth2 __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}}
12 - (void) depunavailInA1 __attribute__((deprecated)) __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}}
13 - (void)FuzzyMeth __attribute__((deprecated)); // expected-note {{'FuzzyMeth' has been explicitly marked deprecated here}}
18 - (void) unavailMeth1 __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}}
19 - (void) depInA __attribute__((deprecated)); // expected-note {{'depInA' has been explicitly marked deprecated here}}
23 - (void) depunavailInA __attribute__((deprecated)) __attribute__((unavailable)); // expected-note {{has been explicitly marked unavailable here}}
26 - (void)FuzzyMeth1 __attribute__((deprecated)); // expected-note {{'FuzzyMeth1' has been explicitly marked deprecated here}
    [all...]
  /external/clang/test/CXX/class/
p2-0x.cpp 5 class B : A { }; // expected-error {{base 'A' is marked 'final'}}
12 struct B : A<int> { }; // expected-error {{base 'A' is marked 'final'}}
14 template<typename T> struct C : A<T> { }; // expected-error {{base 'A' is marked 'final'}}
25 struct C : A<int> { }; // expected-error {{base 'A' is marked 'final'}}
31 struct A final { virtual void func() = 0; }; // expected-warning {{abstract class is marked 'final'}} expected-note {{unimplemented pure virtual method 'func' in 'A'}}
34 struct C final : B { }; // expected-warning {{abstract class is marked 'final'}}
  /external/clang/test/Sema/
typeof-use-deprecated.c 3 struct s { int a; } __attribute__((deprecated)) x; // expected-warning {{'s' is deprecated}} expected-note 2 {{'s' has been explicitly marked deprecated here}}
7 union un{ int a; } __attribute__((deprecated)) u; // expected-warning {{'un' is deprecated}} expected-note 2 {{'un' has been explicitly marked deprecated here}}
11 enum E{ one} __attribute__((deprecated)) e; // expected-warning {{'E' is deprecated}} expected-note 2 {{'E' has been explicitly marked deprecated here}}
15 struct foo { int x; } __attribute__((deprecated)); // expected-note {{'foo' has been explicitly marked deprecated here}}
16 typedef struct foo bar __attribute__((deprecated)); // expected-note {{'bar' has been explicitly marked deprecated here}}
22 typedef struct gorf T __attribute__((deprecated)); // expected-note {{'T' has been explicitly marked deprecated here}}
attr-unavailable-message.c 4 int foo(int) __attribute__((__unavailable__("USE IFOO INSTEAD"))); // expected-note {{'foo' has been explicitly marked unavailable here}}
5 double dfoo(double) __attribute__((__unavailable__("NO LONGER"))); // expected-note 2 {{'dfoo' has been explicitly marked unavailable here}}
7 void bar() __attribute__((__unavailable__)); // expected-note {{explicitly marked unavailable}}
37 a = 1, // expected-note {{'a' has been explicitly marked deprecated here}}
38 b __attribute__((deprecated())) = 2, // expected-note {{'b' has been explicitly marked deprecated here}}
42 enum fee { // expected-note {{'fee' has been explicitly marked unavailable here}}
43 r = 1, // expected-note {{'r' has been explicitly marked unavailable here}}
attr-availability-ios.c 3 void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); // expected-note {{'f0' has been explicitly marked deprecated here}}
5 void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{'f2' has been explicitly marked deprecated here}}
7 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduced=2.0,deprecated=2.1,obsoleted=3.0))); // expected-note{{explicitly marked unavailable}}
9 void f5(int) __attribute__((availability(ios,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{'f5' has been explicitly marked deprecated here}}
11 void f6(int) __attribute__((availability(ios,introduced=2.0))); // expected-note {{'f6' has been explicitly marked deprecated here}}
attr-deprecated.c 3 int f() __attribute__((deprecated)); // expected-note 2 {{'f' has been explicitly marked deprecated here}}
5 void g(); // expected-note {{'g' has been explicitly marked deprecated here}}
7 extern int var __attribute__((deprecated)); // expected-note {{'var' has been explicitly marked deprecated here}}
20 extern int var; // expected-note {{'var' has been explicitly marked deprecated here}}
26 int old_fn(); // expected-note {{'old_fn' has been explicitly marked deprecated here}}
35 int x __attribute__((deprecated)); // expected-note 3 {{'x' has been explicitly marked deprecated here}}
44 typedef struct foo foo_dep __attribute__((deprecated)); // expected-note 12 {{'foo_dep' has been explicitly marked deprecated here}}
48 invalid_attribute)) bar_dep ; // expected-warning {{unknown attribute 'invalid_attribute' ignored}} expected-note 2 {{'bar_dep' has been explicitly marked deprecated here}}
105 enum __attribute__((deprecated)) Test20 { // expected-note {{'Test20' has been explicitly marked deprecated here}}
106 test20_a __attribute__((deprecated)), // expected-note {{'test20_a' has been explicitly marked deprecated here}
    [all...]
attr-sentinel.c 7 void foo1 (int x, ...) ATTR; // expected-note 3 {{function has been explicitly marked sentinel here}}
8 void foo5 (int x, ...) __attribute__ ((__sentinel__(1))); // expected-note {{function has been explicitly marked sentinel here}}
9 void foo6 (int x, ...) __attribute__ ((__sentinel__(5))); // expected-note {{function has been explicitly marked sentinel here}}
10 void foo7 (int x, ...) __attribute__ ((__sentinel__(0))); // expected-note {{function has been explicitly marked sentinel here}}
12 void foo12 (int x, ... ) ATTR; // expected-note {{function has been explicitly marked sentinel here}}
45 void (*b) (int arg, const char * format, ...) __attribute__ ((__sentinel__)); // expected-note {{function has been explicitly marked sentinel here}}
46 void (*z) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (2))); // expected-note {{function has been explicitly marked sentinel here}}
49 void (*y) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (5))); // expected-note {{function has been explicitly marked sentinel here}}
  /packages/inputmethods/LatinIME/java/res/xml/
rows_number_password.xml 25 <!-- Note: This Spacer prevents the below key from being marked as a left edge key. -->
34 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
39 <!-- Note: This Spacer prevents the below key from being marked as a left edge key. -->
48 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
53 <!-- Note: This Spacer prevents the below key from being marked as a left edge key. -->
62 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
67 <!-- Note: This Spacer prevents the below key from being marked as a left edge key. -->
76 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
  /packages/inputmethods/LatinIME/java/res/xml-sw600dp/
rows_number_password.xml 25 <!-- Note: This Spacer prevents the below key from being marked as a left edge key. -->
34 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
39 <!-- Note: This Spacer prevents the below key from being marked as a left edge key. -->
48 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
53 <!-- Note: This Spacer prevents the below key from being marked as a left edge key. -->
62 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
67 <!-- Note: This Spacer prevents the below key from being marked as a left edge key. -->
76 <!-- Note: This Spacer prevents the above key from being marked as a right edge key. -->
  /external/chromium_org/third_party/skia/gm/rebaseline_server/testdata/inputs/gm-expectations/
ignored-tests.txt 2 # if they had been marked "ignore-failure": true in the per-builder
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p17-crash.cpp 3 // this used to crash due to templ<int>'s dtor not being marked as used by the
  /external/clang/test/CodeGen/
2004-03-07-ExternalConstant.c 4 extern const int a[]; // 'a' should be marked constant even though it's external!
2005-02-27-MarkGlobalConstant.c 4 // The synthetic global made by the CFE for big initializer should be marked

Completed in 1090 milliseconds

1 2 3 4 5 6 7 8 91011>>