Home
last modified time | relevance | path

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

12345678910>>...296

/external/deqp-deps/glslang/Test/
Dhlsl.intrinsics.negative.comp7 // asdouble(inF0, inF1); // expected error: only integer inputs
8 // CheckAccessFullyMapped(3.0); // expected error: only valid on integers
9 // clip(inF0); // expected error: only valid in pixel stage
10 // countbits(inF0); // expected error: only integer inputs
11 // cross(inF0, inF1); // expected error: only on float3 inputs
12 // D3DCOLORtoUBYTE4(inF0); // expected error: only on float4 inputs
13 // ddx(inF0); // expected error: only valid in pixel stage
14 // ddx_coarse(inF0); // expected error: only valid in pixel stage
15 // ddx_fine(inF0); // expected error: only valid in pixel stage
16 // ddy(inF0); // expected error: only valid in pixel stage
[all …]
Dhlsl.intrinsics.negative.vert18 // AllMemoryBarrier(); // expected error: only valid in compute stage
19 // AllMemoryBarrierWithGroupSync(); // expected error: only valid in compute stage
20 // asdouble(inF0, inF1); // expected error: only integer inputs
21 // CheckAccessFullyMapped(3.0); // expected error: only valid on integers
22 …// CheckAccessFullyMapped(3); // expected error: only valid in pixel & compute stag…
23 // clip(inF0); // expected error: only valid in pixel stage
24 // countbits(inF0); // expected error: only integer inputs
25 // cross(inF0, inF1); // expected error: only on float3 inputs
26 // D3DCOLORtoUBYTE4(inF0); // expected error: only on float4 inputs
27 …// DeviceMemoryBarrier(); // expected error: only valid in pixel & compute stag…
[all …]
Dhlsl.intrinsics.negative.frag5 asdouble(inF0, inF1); // expected error: only integer inputs
6 CheckAccessFullyMapped(3.0); // expected error: only valid on integers
7 countbits(inF0); // expected error: only integer inputs
8 cross(inF0, inF1); // expected error: only on float3 inputs
9 D3DCOLORtoUBYTE4(inF0); // expected error: only on float4 inputs
10 determinant(inF0); // expected error: only valid on mats
11 // DeviceMemoryBarrierWithGroupSync(); // TODO: expected error: only valid in compute stage
12 f16tof32(inF0); // expected error: only integer inputs
13 firstbithigh(inF0); // expected error: only integer inputs
14 firstbitlow(inF0); // expected error: only integer inputs
[all …]
/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/libmtp/logs/
Dmtp-detect-philips-sa5145.txt86 PTP: request code 0x9801 sending req wrote only 0 bytes instead of 16
88 PTP: request code 0x9801 sending req wrote only 0 bytes instead of 16
90 PTP: request code 0x9801 sending req wrote only 0 bytes instead of 16
92 PTP: request code 0x9801 sending req wrote only 0 bytes instead of 16
94 PTP: request code 0x9801 sending req wrote only 0 bytes instead of 16
96 PTP: request code 0x9801 sending req wrote only 0 bytes instead of 16
98 PTP: request code 0x9801 sending req wrote only 0 bytes instead of 16
100 PTP: request code 0x9801 sending req wrote only 0 bytes instead of 16
102 PTP: request code 0x9801 sending req wrote only 0 bytes instead of 16
104 PTP: request code 0x9801 sending req wrote only 0 bytes instead of 16
[all …]
/external/clang/test/SemaObjC/
Dattr-cf_returns.m1 // RUN: %clang_cc1 -verify -fsyntax-only -fobjc-arc -fblocks %s
13 int x CF_RETURNS_RETAINED; // expected-warning{{'cf_returns_retained' attribute only applies to fun…
14 int y CF_RETURNS_NOT_RETAINED; // expected-warning{{'cf_returns_not_retained' attribute only applie…
18 int invalid1() CF_RETURNS_RETAINED; // expected-warning{{'cf_returns_retained' attribute only appli…
19 void invalid2() CF_RETURNS_RETAINED; // expected-warning{{'cf_returns_retained' attribute only appl…
25 - (int)invalid1 CF_RETURNS_RETAINED; // expected-warning{{'cf_returns_retained' attribute only appl…
26 - (void)invalid2 CF_RETURNS_RETAINED; // expected-warning{{'cf_returns_retained' attribute only app…
31 …CF_RETURNS_RETAINED; // expected-warning{{'cf_returns_retained' attribute only applies to properti…
32 …CF_RETURNS_RETAINED; // expected-warning{{'cf_returns_retained' attribute only applies to properti…
38 …CF_RETURNS_RETAINED, // expected-warning{{'cf_returns_retained' attribute only applies to pointer-…
[all …]
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}}
/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/deqp-deps/glslang/Test/baseResults/
Dspv.bufferhandle_Error.frag.out2 ERROR: 0:7: 'buffer_reference' : can only be used with buffer
3 ERROR: 0:9: 'buffer_reference' : cannot declare a default, can only be used on a block
4 ERROR: 0:10: 'buffer_reference' : can only be used with buffer
5 ERROR: 0:10: 'buffer_reference' : cannot declare a default, can only be used on a block
6 ERROR: 0:11: 'buffer_reference' : can only be used with buffer
7 ERROR: 0:11: 'buffer_reference' : cannot declare a default, can only be used on a block
8 ERROR: 0:12: 'buffer_reference' : can only be used with buffer
9 ERROR: 0:12: 'buffer_reference' : cannot declare a default, can only be used on a block
10 ERROR: 0:13: 'buffer_reference' : can only be used with buffer
11 ERROR: 0:13: 'buffer_reference' : can only be used with buffer
[all …]
Dspv.8bitstorage_Error-int.frag.out2 ERROR: 0:54: 'structure: (u)int8 types can only be in uniform block or buffer storage' : required e…
8 ERROR: 0:61: 'int8_t: (u)int8 types can only be in uniform block or buffer storage' : required exte…
17 ERROR: 0:76: 'built-in function: (u)int8 types can only be in uniform block or buffer storage' : re…
20 ERROR: 0:76: 'built-in function: (u)int8 types can only be in uniform block or buffer storage' : re…
23 ERROR: 0:76: 'built-in function: (u)int8 types can only be in uniform block or buffer storage' : re…
26 ERROR: 0:77: 'built-in function: (u)int8 types can only be in uniform block or buffer storage' : re…
29 ERROR: 0:77: 'built-in function: (u)int8 types can only be in uniform block or buffer storage' : re…
41 ERROR: 0:83: 'qualifier: (u)int8 types can only be in uniform block or buffer storage' : required e…
44 ERROR: 0:84: 'qualifier: (u)int8 types can only be in uniform block or buffer storage' : required e…
47 ERROR: 0:85: 'qualifier: (u)int8 types can only be in uniform block or buffer storage' : required e…
[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/guice/core/test/com/google/inject/matcher/
DMatcherTest.java27 import static com.google.inject.matcher.Matchers.only;
98 assertTrue(only(1000).matches(1000)); in testOnly()
99 assertFalse(only(1).matches(1000)); in testOnly()
100 assertEquals("only(1)", only(1).toString()); in testOnly()
101 assertEqualsBothWays(only(1), only(1)); in testOnly()
102 assertFalse(only(1).equals(only(2))); in testOnly()
138 Matcher<Method> predicate = returns(only(String.class)); in testReturns()
141 assertEquals("returns(only(class java.lang.String))", returns(only(String.class)).toString()); in testReturns()
142 assertEqualsBothWays(predicate, returns(only(String.class))); in testReturns()
143 assertFalse(predicate.equals(returns(only(Integer.class)))); in testReturns()
[all …]
/external/mockito/src/test/java/org/mockitousage/verification/
DOnlyVerificationTest.java18 import static org.mockito.Mockito.only;
30 verify(mock, only()).clear(); in shouldVerifyMethodWasInvokedExclusively()
36 verify(mock, only()).get(anyInt()); in shouldVerifyMethodWasInvokedExclusivelyWithMatchersUsage()
43 verify(mock, only()).get(0); in shouldFailIfMethodWasNotInvoked()
53 verify(mock, only()).clear(); in shouldFailIfMethodWasInvokedMoreThanOnce()
63 verify(mock, only()).get(999); in shouldFailIfMethodWasInvokedButWithDifferentArguments()
73 verify(mock, only()).get(2); in shouldFailIfExtraMethodWithDifferentArgsFound()
82 verify(mock, only()).clear(); in shouldVerifyMethodWasInvokedExclusivelyWhenTwoMocksInUse()
83 verify(mock2, only()).get(0); in shouldVerifyMethodWasInvokedExclusivelyWhenTwoMocksInUse()
/external/cldr/tools/java/org/unicode/cldr/util/data/
Dafrica62 # the other abbreviations are rarer and are only in past timestamps,
68 Rule Algeria 1916 only - Jun 14 23:00s 1:00 S
70 Rule Algeria 1917 only - Mar 24 23:00s 1:00 S
71 Rule Algeria 1918 only - Mar 9 23:00s 1:00 S
72 Rule Algeria 1919 only - Mar 1 23:00s 1:00 S
73 Rule Algeria 1920 only - Feb 14 23:00s 1:00 S
74 Rule Algeria 1920 only - Oct 23 23:00s 0 -
75 Rule Algeria 1921 only - Mar 14 23:00s 1:00 S
76 Rule Algeria 1921 only - Jun 21 23:00s 0 -
77 Rule Algeria 1939 only - Sep 11 23:00s 1:00 S
[all …]
Deurope89 # referendum in 1972, they are the only country to have said No twice.
97 # national law to implement it. The only contentious issue was the
118 # but now the stone is obscured by scrubwood and can only be seen by walking
198 # term appears only in quotes taken from DST's opponents, whereas the
393 Rule GB-Eire 1916 only - May 21 2:00s 1:00 BST
394 Rule GB-Eire 1916 only - Oct 1 2:00s 0 GMT
396 Rule GB-Eire 1917 only - Apr 8 2:00s 1:00 BST
397 Rule GB-Eire 1917 only - Sep 17 2:00s 0 GMT
399 Rule GB-Eire 1918 only - Mar 24 2:00s 1:00 BST
400 Rule GB-Eire 1918 only - Sep 30 2:00s 0 GMT
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Linker/
Donly-needed-named-metadata.ll1 ; Without -only-needed we should lazy link linkonce globals, and the
3 ; RUN: llvm-link -S %S/Inputs/only-needed-named-metadata.ll %S/only-needed-named-metadata.ll | File…
7 ; With -only-needed the metadata references should not cause any of the
11 ; Note that doing -only-needed with the comdat shown below leads to a only
13 ; RUN: llvm-link -S -only-needed %S/Inputs/only-needed-named-metadata.ll %S/only-needed-named-metad…
14 ; RUN: llvm-link -S -internalize -only-needed %S/Inputs/only-needed-named-metadata.ll %S/only-neede…
Donly-needed-used.ll1 ; RUN: llvm-link -S %s %p/Inputs/only-needed-used.ll | FileCheck %s
2 ; RUN: llvm-link -S -internalize %s %p/Inputs/only-needed-used.ll | FileCheck %s
3 ; RUN: llvm-link -S -only-needed %s %p/Inputs/only-needed-used.ll | FileCheck %s
4 ; RUN: llvm-link -S -only-needed -internalize %s %p/Inputs/only-needed-used.ll | FileCheck %s
/external/llvm/test/Linker/
Donly-needed-named-metadata.ll1 ; Without -only-needed we should lazy link linkonce globals, and the
3 ; RUN: llvm-link -S %S/Inputs/only-needed-named-metadata.ll %S/only-needed-named-metadata.ll | File…
7 ; With -only-needed the metadata references should not cause any of the
11 ; Note that doing -only-needed with the comdat shown below leads to a only
13 ; RUN: llvm-link -S -only-needed %S/Inputs/only-needed-named-metadata.ll %S/only-needed-named-metad…
14 ; RUN: llvm-link -S -internalize -only-needed %S/Inputs/only-needed-named-metadata.ll %S/only-neede…
/external/clang/test/PCH/
Darc.m3 … -triple x86_64-apple-darwin11 -fobjc-arc -include %S/Inputs/arc.h -fsyntax-only -emit-llvm-only %s
7 …-fblocks -triple x86_64-apple-darwin11 -fobjc-arc -include-pch %t -fsyntax-only -emit-llvm-only %s
10 …1 -fblocks -triple x86_64-apple-darwin11 -include-pch %t -fsyntax-only -emit-llvm-only %s 2>&1 | F…
12 …-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() argument
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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/
Dbrind-tailcall.ll1 ; RUN: llc -march=mips -debug-only=isel -mips-tail-calls=1 \
3 ; RUN: llc -march=mips -debug-only=isel -mips-tail-calls=1 \
5 ; RUN: llc -march=mips64 -debug-only=isel -mips-tail-calls=1 \
7 ; RUN: llc -march=mips64 -debug-only=isel -mips-tail-calls=1 \
9 ; RUN: llc -march=mips -debug-only=isel -mips-tail-calls=1 \
11 ; RUN: llc -march=mips -debug-only=isel -mips-tail-calls=1 \
13 ; RUN: llc -march=mips -mcpu=mips32r6 -debug-only=isel -mips-tail-calls=1 \
15 ; RUN: llc -march=mips -mcpu=mips32r6 -debug-only=isel -mips-tail-calls=1 \
17 ; RUN: llc -march=mips -debug-only=isel -mips-tail-calls=1 \
19 ; RUN: llc -march=mips -debug-only=isel -mips-tail-calls=1 \
/external/clang/test/Frontend/
Dopencl.cl1 // RUN: %clang_cc1 %s -verify -fsyntax-only
2 // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.1
3 // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.2
4 // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL2.0
5 // RUN: %clang_cc1 %s -verify -fsyntax-only -fblocks -DBLOCKS
6 // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.1 -fblocks -DBLOCKS
7 // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.2 -fblocks -DBLOCKS
8 // RUN: %clang_cc1 %s -triple amdgcn--amdhsa -x c -std=c99 -verify -fsyntax-only
/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}}
/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 …]

12345678910>>...296