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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p10.cpp 10 mutable int &f2; // expected-error{{'mutable' cannot be applied to references}}
11 mutable T1 f3; // expected-error{{'mutable' cannot be applied to references}}
12 mutable struct s1 {}; // expected-error{{'mutable' cannot be applied to non-data members}}
13 mutable void im0(); // expected-error{{'mutable' cannot be applied to functions}}
  /external/clang/test/Parser/
cxx11-stmt-attributes.cpp 30 alignas(8) ; // expected-error {{'alignas' attribute cannot be applied to a statement}}
31 [[noreturn]] { } // expected-error {{'noreturn' attribute cannot be applied to a statement}}
32 [[noreturn]] if (0) { } // expected-error {{'noreturn' attribute cannot be applied to a statement}}
33 [[noreturn]] for (;;); // expected-error {{'noreturn' attribute cannot be applied to a statement}}
34 [[noreturn]] do { // expected-error {{'noreturn' attribute cannot be applied to a statement}}
45 [[carries_dependency]] break; // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
57 [[carries_dependency]] ; // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
58 [[carries_dependency]] { } // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
59 [[carries_dependency]] if (0) { } // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
60 [[carries_dependency]] for (;;); // expected-error {{'carries_dependency' attribute cannot be applied to a statement}
    [all...]
cxx-reference.cpp 16 int & const X = val; // expected-error {{'const' qualifier may not be applied to a reference}}
17 int & volatile Y = val; // expected-error {{'volatile' qualifier may not be applied to a reference}}
18 int & const volatile Z = val; /* expected-error {{'const' qualifier may not be applied}} \
19 expected-error {{'volatile' qualifier may not be applied}} */
atomic.c 13 typedef const _Atomic(_Atomic int) const_atomic_int; // expected-error {{_Atomic cannot be applied to atomic type '_Atomic(int)'}}
15 typedef _Atomic(const_int) const_atomic_int; // expected-error {{_Atomic cannot be applied to qualified type 'const_int' (aka 'const int')}}
25 typedef _Atomic int_fn atomic_int_fn; // expected-error {{_Atomic cannot be applied to function type 'int_fn' (aka 'int ()')}}
27 typedef _Atomic atomic_int_array atomic_int_atomic_array; // expected-error {{_Atomic cannot be applied to array type 'atomic_int_array' (aka '_Atomic(int) [3]')}}
  /external/clang/test/Sema/
atomic-type.c 18 _Atomic(int()) error1; // expected-error {{_Atomic cannot be applied to function type}}
19 _Atomic(struct ErrorS) error2; // expected-error {{_Atomic cannot be applied to incomplete type}} expected-note {{forward declaration}}
20 _Atomic(int[10]) error3; // expected-error {{_Atomic cannot be applied to array type}}
21 _Atomic(const int) error4; // expected-error {{_Atomic cannot be applied to qualified type}}
22 _Atomic(_Atomic(int)) error5; // expected-error {{_Atomic cannot be applied to atomic type}}
alignas.c 11 _Alignas(1) char bitfield : 1; // expected-error {{'_Alignas' attribute cannot be applied to a bit-field}}
16 void f(_Alignas(1) char c) { // expected-error {{'_Alignas' attribute cannot be applied to a function parameter}}
17 _Alignas(1) register char k; // expected-error {{'_Alignas' attribute cannot be applied to a variable with 'register' storage class}}
21 // expected-warning@+4{{'_Alignof' applied to an expression is a GNU extension}}
22 // expected-warning@+4{{'_Alignof' applied to an expression is a GNU extension}}
23 // expected-warning@+4{{'_Alignof' applied to an expression is a GNU extension}}
PR2727.c 7 // sizeof applied to a type should not delete the type.
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifier.java 10 * This qualifier is applied to an annotation to denote that the annotation
20 * Describes the kinds of values the qualifier can be applied to. If a
22 * annotation can also be applied to the corresponding primitive numeric
TypeQualifierDefault.java 10 * This qualifier is applied to an annotation to denote that the annotation
12 * element it is applied to.
  /external/chromium_org/third_party/libusb/
README.chromium 17 - windows-build.patch has been applied.
18 - darwin-sigfpe.patch has been applied.
  /external/eigen/doc/examples/
class_CwiseUnaryOp_ptrfun.cpp 6 // define function to be applied coefficient-wise
  /external/clang/test/SemaObjC/
ibaction.m 7 + (void) __attribute__((ibaction)) myClassMethod:(id)msg; // expected-warning{{ibaction attribute can only be applied to Objective-C instance methods}}
12 + (void) __attribute__((ibaction)) myClassMethod:(id)msg {} // expected-warning{{ibaction attribute can only be applied to Objective-C instance methods}}
  /external/clang/test/SemaOpenCL/
invalid-kernel-attrs.cl 11 kernel __attribute__((vec_type_hint(int))) __attribute__((vec_type_hint(float))) void kernel5() {} //expected-warning{{attribute 'vec_type_hint' is already applied with different parameters}}
15 kernel __attribute__((work_group_size_hint(1,2,3))) __attribute__((work_group_size_hint(3,2,1))) void kernel7() {} //expected-warning{{attribute 'work_group_size_hint' is already applied with different parameters}}
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/sftp/
AttrTextHints.java 24 * The server has applied a heuristic or other mechanism and
36 * The server has applied a heuristic or other mechanism and
  /external/jsr305/ri/src/main/java/javax/annotation/
ParametersAreNonnullByDefault.java 11 * This annotation can be applied to a package, class or method to indicate that
17 * <li> there is a default parameter annotation applied to a more tightly nested
  /external/chromium/build/win/
chrome_win.croc 5 # List of rules, applied in order
  /external/chromium_org/build/win/
chrome_win.croc 5 # List of rules, applied in order
  /external/chromium_org/third_party/WebKit/ManualTests/
disable-javascript-reload.html 7 document.getElementById("console").innerHTML = "FAIL - disabled javascript hasn't been applied to refreshed webpage";
  /external/chromium_org/tools/valgrind/tsan_v2/
ignores.txt 1 # The rules in this file are only applied at compile time.
  /external/chromium_org/ui/base/clipboard/
clipboard_types.h 10 // This type designates which clipboard the action should be applied to.
  /external/clang/test/SemaCXX/
delete.cpp 8 delete a; // expected-warning {{'delete' applied to a pointer-to-array type}}
attr-selectany.cpp 4 __declspec(selectany) void foo() { } // expected-error{{'selectany' can only be applied to data items with external linkage}}
8 const __declspec(selectany) int x2 = 2; // expected-error{{'selectany' can only be applied to data items with external linkage}}
18 static __declspec(selectany) int x6 = 2; // expected-error{{'selectany' can only be applied to data items with external linkage}}
attr-cxx0x.cpp 14 void f(alignas(1) char c) { // expected-error {{'alignas' attribute cannot be applied to a function parameter}}
15 alignas(1) register char k; // expected-error {{'alignas' attribute cannot be applied to a variable with 'register' storage class}} expected-warning {{deprecated}}
17 } catch (alignas(4) int n) { // expected-error {{'alignas' attribute cannot be applied to a 'catch' variable}}
34 template<typename T> using align_alias_template = align_typedef alignas(8); // expected-error {{'alignas' attribute cannot be applied to types}}
36 static_assert(alignof(align_big) == alignof(int), "k's alignment is wrong"); // expected-warning{{'alignof' applied to an expression is a GNU extension}}
37 static_assert(alignof(align_small) == 1, "j's alignment is wrong"); // expected-warning{{'alignof' applied to an expression is a GNU extension}}
38 static_assert(alignof(align_multiple) == 8, "l's alignment is wrong"); // expected-warning{{'alignof' applied to an expression is a GNU extension}}
  /external/jmonkeyengine/engine/src/core/checkers/quals/
DefaultQualifier.java 10 * Applied to a declaration of a package, type, method, variable, etc.,
12 * applied to all types within the declaration for which no other
42 /** @return the locations to which the annotation should be applied */
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/javax/security/cert/
X509CertificateTest.java 101 // Test can not be applied.
135 // Test can not be applied.
163 // Test can not be applied.
190 // Test can not be applied.
224 // Test can not be applied.
237 // Test can not be applied.
250 // Test can not be applied.
263 // Test can not be applied.
276 // Test can not be applied.
289 // Test can not be applied
    [all...]

Completed in 1291 milliseconds

1 2 3 4 5 6 7 8 91011>>