Home
last modified time | relevance | path

Searched refs:only (Results 1 – 25 of 3510) sorted by relevance

12345678910>>...141

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
Dp6.cpp5 struct only { struct
6 only(T);
7 template<typename U> only(U) = delete;
14 only<const char [16]> testA = a;
15 only<const char **> testP = p;
20 only<unsigned long long> testB = b; in h()
23 only<int> testC = c; in h()
32 only<int> testX = x; in p3example()
33 only<const int*> testV = v; in p3example()
34 only<const int> testU = u; in p3example()
[all …]
/external/clang/test/SemaObjCXX/
Dobjc-decls-inside-namespace.mm1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
5 @protocol P; //expected-error{{Objective-C declarations may only appear in global scope}}
7 @class Bar; //expected-error{{Objective-C declarations may only appear in global scope}}
9 @compatibility_alias Foo Bar; //expected-error{{Objective-C declarations may only appear in global …
11 @interface A //expected-error{{Objective-C declarations may only appear in global scope}}
14 @implementation A //expected-error{{Objective-C declarations may only appear in global scope}}
17 @protocol P //expected-error{{Objective-C declarations may only appear in global scope}}
20 @interface A(C) //expected-error{{Objective-C declarations may only appear in global scope}}
23 @implementation A(C) //expected-error{{Objective-C declarations may only appear in global scope}}
26 @interface B @end //expected-error{{Objective-C declarations may only appear in global scope}}
[all …]
/external/clang/test/CXX/expr/expr.unary/expr.new/
Dp2-cxx0x.cpp4 struct only { struct
5 only(T);
6 template<typename U> only(U) = delete;
10 only<const int*> p = new const auto (0); in f()
11 only<double*> q = new (auto) (0.0); in f()
21 only<int*> r = new auto(1); in p2example()
24 only<char*> testX = x; in p2example()
/external/mesa3d/src/gallium/docs/
Dd3d11ddi.txt74 …+ Gallium supports fixed function user clip planes, D3D10/D3D11 only support using the vertex shad…
80 + Gallium supports subrectangle fills of surfaces, D3D10 only supports full clears of views
84 AbandonCommandList (D3D11 only)
100 CalcDeferredContextHandleSize (D3D11 only)
101 CalcPrivateCommandListSize (D3D11 only)
102 CalcPrivateDeferredContextSize (D3D11 only)
103 CalcPrivateTessellationShaderSize (D3D11 only)
104 CalcPrivateUnorderedAccessViewSize (D3D11 only)
108 CheckDeferredContextHandleSizes (D3D11 only)
119 CommandListExecute (D3D11 only)
[all …]
/external/clang/test/PCH/
Darc.m2 … -triple x86_64-apple-darwin11 -fobjc-arc -include %S/Inputs/arc.h -fsyntax-only -emit-llvm-only %s
6 …-fblocks -triple x86_64-apple-darwin11 -fobjc-arc -include-pch %t -fsyntax-only -emit-llvm-only %s
9 …1 -fblocks -triple x86_64-apple-darwin11 -include-pch %t -fsyntax-only -emit-llvm-only %s 2>&1 | F…
11 …-triple x86_64-apple-darwin11 -fobjc-arc -include-pch %t -fsyntax-only -emit-llvm-only %s 2>&1 | F…
/external/clang/test/SemaCXX/
Dtrailing-return-0x.cpp4 struct only struct
6 only(T) {} in only() argument
9 only(U) in only() function
44 only<double> p1 = i(1.0);
71 only<int> p2 = xx.f(0L);
72 only<double> p3 = xx.g(0L, 1.0);
73 only<double> p4 = xx.get_nested<double>().h(0L, 1.0, 3.14f);
Ddependent-auto.cpp4 struct only { struct
5 only(T);
6 template<typename U> only(U) = delete; // expected-note {{here}}
12 only<int> check = x; in f()
30only<double*> test = p; // expected-error {{conversion function from 'char *' to 'only<double *>'}} in h()
/external/clang/test/SemaOpenCL/
Dinvalid-kernel-attrs.cl17 …void kernel8(){} // expected-error {{attribute 'reqd_work_group_size' can only be applied to a ker…
19 …void kernel9(){} // expected-error {{attribute 'work_group_size_hint' can only be applied to a ker…
21 …ar))) void kernel10(){} // expected-error {{attribute 'vec_type_hint' can only be applied to a ker…
23 …size(8,16,32))) = 0; // expected-error {{'reqd_work_group_size' attribute only applies to function…
25 …hint(8,16,32))) = 0; // expected-error {{'work_group_size_hint' attribute only applies to function…
27 …(vec_type_hint(char))) = 0; // expected-error {{'vec_type_hint' attribute only applies to function…
29 void f_kernel_image2d_t( kernel image2d_t image ) { // expected-error {{'kernel' attribute only app…
30 int __kernel x; // expected-error {{'__kernel' attribute only applies to functions}}
31 read_only int i; // expected-error {{'read_only' attribute only applies to parameters}}
32 __write_only int j; // expected-error {{'__write_only' attribute only applies to parameters}}
/external/clang/test/SemaObjC/
Dattr-malloc.m1 // RUN: %clang_cc1 -verify -fsyntax-only -fblocks %s
4 - (id) test1 __attribute((malloc)); // expected-warning {{attribute only applies to functions}}
5 - (int) test2 __attribute((malloc)); // expected-warning {{attribute only applies to functions}}
13 __attribute((malloc)) id (*f)(); // expected-warning {{attribute only applies to functions}}
14 __attribute((malloc)) bptr (*g)(); // expected-warning {{attribute only applies to functions}}
15 __attribute((malloc)) void *(^h)(); // expected-warning {{attribute only applies to functions}}
Dobjc-independent-class-attribute.m1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
10 …cted-warning {{'objc_independent_class' attribute may be put on a typedef only; attribute is ignor…
11 …cted-warning {{'objc_independent_class' attribute may be put on a typedef only; attribute is ignor…
17 …cted-warning {{'objc_independent_class' attribute may be put on a typedef only; attribute is ignor…
20 …cted-warning {{'objc_independent_class' attribute may be put on a typedef only; attribute is ignor…
Dblock-attr.m1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify -fblocks -fobjc-gc-only %s
2 …cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fsyntax-only -verify -fblocks -fobjc-gc-only %s
Dblock-on-method-param.m1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify -fblocks -Wno-objc-root-clas…
2 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fsyntax-only -verify -fblocks -W…
6 …__(byref))) id)errorp; // expected-error {{__block attribute not allowed, only allowed on local va…
10 …(byref))) id)errorp {} // expected-error {{__block attribute not allowed, only allowed on local va…
Dattr-objc-gc.m1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify %s
10 static int __attribute__((objc_gc(weak))) g; // expected-warning {{'objc_gc' only applies to pointe…
12 static __weak int h; // expected-warning {{'__weak' only applies to pointer types; type here is 'in…
16 static WEAK int h; // expected-warning {{'objc_gc' only applies to pointer types; type here is 'int…
18 /* expected-warning {{'__weak' only applies to pointer types; type here is 'int'}}*/ static __we\
Dprotocols.m1 // RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-declarations -verify %s
4 @required // expected-error {{directive may only be specified in protocols only}}
8 @optional // expected-error {{directive may only be specified in protocols only}}
Dns_returns_retained_block_return.m1 // RUN: %clang_cc1 -fblocks -fsyntax-only -verify -Wno-objc-root-class %s
2 // RUN: %clang_cc1 -x objective-c++ -fblocks -fsyntax-only -verify -Wno-objc-root-class %s
3 // RUN: %clang_cc1 -fblocks -fobjc-arc -fsyntax-only -verify -Wno-objc-root-class %s
4 // RUN: %clang_cc1 -x objective-c++ -fblocks -fobjc-arc -fsyntax-only -verify -Wno-objc-root-class …
/external/clang/test/Frontend/
Dstd.cl1 // RUN: %clang_cc1 %s -fsyntax-only -cl-std=CL
2 // RUN: %clang_cc1 %s -fsyntax-only -cl-std=CL1.1
3 // RUN: %clang_cc1 %s -fsyntax-only -cl-std=CL1.2
4 // RUN: %clang_cc1 %s -fsyntax-only -cl-std=CL2.0
5 // RUN: not %clang_cc1 %s -fsyntax-only -cl-std=invalid -DINVALID 2>&1 | FileCheck %s
/external/clang/test/Modules/
Drequire-modular-includes.m7 // RUN: -Werror -fsyntax-only -x objective-c -
14 // RUN: -fsyntax-only -x objective-c - 2>&1 | FileCheck %s
20 // RUN: -Werror -fsyntax-only -x objective-c -
27 // RUN: -fsyntax-only -x objective-c - 2>&1 | FileCheck %s
34 // RUN: -fsyntax-only -x objective-c - 2>&1 | FileCheck %s
40 // RUN: -Werror -fmodule-name=A -fsyntax-only -x objective-c -
46 // RUN: -Werror -fsyntax-only -x objective-c -
53 // RUN: -Werror -fsyntax-only -x objective-c -
60 // RUN: -Werror -fsyntax-only -x objective-c -
67 // RUN: -Werror -fsyntax-only -x objective-c -
[all …]
DWerror.m7 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
13 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella
18 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
25 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
31 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
37 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
46 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
50 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
56 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
63 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \
[all …]
/external/v8/src/base/
Dbuild_config.h111 #error Target architecture ia32 is only supported on ia32 host
115 #error Target architecture x64 is only supported on x64 host
119 #error Target architecture x32 is only supported on x64 host with x32 support
122 #error Target architecture arm is only supported on arm and ia32 host
125 #error Target architecture arm64 is only supported on arm64 and x64 host
128 #error Target architecture mips is only supported on mips and ia32 host
131 #error Target architecture mips64 is only supported on mips64 and x64 host
/external/skia/gyp/
Dcommon.gypi22 # Validate the 'skia_os' setting against 'OS', because only certain
23 # combinations work. You should only override 'skia_os' for certain
32 'error': '<!(skia_mesa=1 only supported with skia_os="mac" or "linux".)',
35 'error': '<!(skia_angle=1 only supported with skia_os="win".)',
38 'error': '<!(skia_arch_width can only be 32 or 64 bits not <(skia_arch_width) bits)',
41 'error': '<!(Skia ChromeOS build is only supported on Linux.)',
/external/clang/test/VFS/
Dmodule-import.m3 …N: %clang_cc1 -Werror -fmodules -fmodules-cache-path=%t -ivfsoverlay %t.yaml -I %t -fsyntax-only %s
12 // Import a submodule that is defined in actual_module2.map, which is only
21 …-fmodules -fmodules-cache-path=%t -ivfsoverlay %t.yaml -ivfsoverlay %t2.yaml -I %t -fsyntax-only %s
24 …ror -fmodules -fmodules-cache-path=%t -ivfsoverlay %t.yaml -I %t -fsyntax-only %s -DIMPORT2 2>&1 |…
27 …s-cache-path=%t -ivfsoverlay %t2.yaml -ivfsoverlay %t.yaml -I %t -fsyntax-only %s -DIMPORT2 2>&1 |…
Dreal-path-found-first.m15 // RUN: -ivfsoverlay %t.yaml -fsyntax-only %s -verify -Wauto-import \
21 // RUN: -ivfsoverlay %t.yaml -fsyntax-only %s -verify -Wauto-import \
30 // RUN: -ivfsoverlay %t.yaml -include-pch %t.pch -fsyntax-only %s \
36 // RUN: -ivfsoverlay %t.yaml -fsyntax-only -Wauto-import \
40 // RUN: -ivfsoverlay %t.yaml -fsyntax-only -Wauto-import \
52 // RUN: -ivfsoverlay %t.yaml -ivfsoverlay %t2.yaml -fsyntax-only %s -verify \
56 // RUN: -ivfsoverlay %t.yaml -ivfsoverlay %t2.yaml -fsyntax-only %s -verify \
62 // RUN: -ivfsoverlay %t.yaml -ivfsoverlay %t2.yaml -fsyntax-only - \
67 // RUN: -ivfsoverlay %t.yaml -ivfsoverlay %t2.yaml -fsyntax-only - \
/external/clang/test/ARCMT/
DGC-no-arc-runtime.m.result1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-runtime-has-weak -fobjc-arc…
2 // RUN: arcmt-test --args -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-gc-only -x objective…
4 // RUN: arcmt-test --args -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-gc-only -x objective…
DGC-no-arc-runtime.m1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-runtime-has-weak -fobjc-arc…
2 // RUN: arcmt-test --args -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-gc-only -x objective…
4 // RUN: arcmt-test --args -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-gc-only -x objective…
/external/libcxx/include/
Dstrstream53 typedef T1 strstate; // exposition only
54 static const strstate allocated; // exposition only
55 static const strstate constant; // exposition only
56 static const strstate dynamic; // exposition only
57 static const strstate frozen; // exposition only
58 strstate strmode; // exposition only
59 streamsize alsize; // exposition only
60 void* (*palloc)(size_t); // exposition only
61 void (*pfree)(void*); // exposition only
79 strstreambuf sb; // exposition only
[all …]

12345678910>>...141