/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::__anon14568 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}}
|
overload-0x.cpp | 4 struct A { // expected-note {{candidate function (the implicit copy assignment operator) not viable: 'this' argument has type 'const test0::A', but method is not marked const}} expected-note {{candidate function (the implicit move assignment operator) not viable: 'this' argument has type 'const test0::A', but method is not marked const}} 5 A &operator=(void*); // expected-note {{candidate function not viable: 'this' argument has type 'const test0::A', but method is not marked const}}
|
/external/markdown/tests/extensions-x-footnotes/ |
named_markers.txt | 5 [^foo]: Footnote marked ``foo``. 6 [^bar]: This one is marked *bar*.
|
/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/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/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/ |
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}}
|
attr-unused.c | 1 // RUN: %clang_cc1 -verify -Wunused -Wused-but-marked-unused -Wunused-parameter -Wunused -fsyntax-only %s 23 Int_unused i1; // expected-warning {{'Int_unused' was marked unused but was used}} 26 struct Test0_unused s1; // expected-warning {{'Test0_unused' was marked unused but was used}} 42 return x; // expected-warning{{'x' was marked unused but was used}}
|
/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. -->
|
/system/core/include/utils/ |
BitSet.h | 29 // A simple set of 32 bits that can be individually marked or cleared. 42 // Returns the number of marked bits in the set. 45 // Returns true if the bit set does not contain any marked bits. 51 // Returns true if the specified bit is marked. 60 // Finds the first marked bit in the set. 65 // Result is undefined if all bits are marked. 68 // Finds the last marked bit in the set. 72 // Finds the first marked bit in the set and clears it. Returns the bit index. 81 // Result is undefined if all bits are marked. 88 // Finds the last marked bit in the set and clears it. Returns the bit index [all...] |
/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
|
/external/iptables/include/linux/netfilter/ |
xt_SECMARK.h | 11 * packets are being marked for.
|
/external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Misc/ |
VertexColor.j3md | 1 Exception VertexColor.j3md has been marked as obsolete. Please use Unshaded.j3md instead.
|
/external/kernel-headers/original/linux/netfilter/ |
xt_SECMARK.h | 9 * packets are being marked for.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/ |
xt_SECMARK.h | 9 * packets are being marked for.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
xt_SECMARK.h | 9 * packets are being marked for.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
xt_SECMARK.h | 9 * packets are being marked for.
|
/libcore/luni/src/main/java/java/security/cert/ |
X509Extension.java | 28 * Returns the set of OIDs of the extension(s) marked as CRITICAL, that this 31 * @return the set of extension OIDs marked as CRITIAL, an empty set if none 32 * are marked as CRITICAL, or {@code null} if no extensions are 49 * Returns the set of OIDs of the extension(s) marked as NON-CRITICAL, that 52 * @return the set of extension OIDs marked as NON-CRITIAL, an empty set if 53 * none are marked as NON-.CRITICAL, or {@code null} if no 59 * Returns whether this instance has an extension marked as CRITICAL that it
|