Home
last modified time | relevance | path

Searched full:because (Results 1 – 25 of 16976) sorted by relevance

12345678910>>...680

/external/deqp-deps/glslang/Test/
Dhlsl.type.type.conversion.all.frag88 …float2 var17 = float2x2(zeros4);// Compilation failed because: error X3017: cannot implicitly conv…
89 …float2 var18 = float2x3(zeros6);// Compilation failed because: error X3017: cannot implicitly conv…
90 …float2 var19 = float2x4(zeros8);// Compilation failed because: error X3017: cannot implicitly conv…
91 …float2 var20 = float3x2(zeros6);// Compilation failed because: error X3017: cannot implicitly conv…
92 …float2 var21 = float3x3(zeros9);// Compilation failed because: error X3017: cannot implicitly conv…
93 …float2 var22 = float3x4(zeros12);// Compilation failed because: error X3017: cannot implicitly con…
94 …float2 var23 = float4x2(zeros8);// Compilation failed because: error X3017: cannot implicitly conv…
95 …float2 var24 = float4x3(zeros12);// Compilation failed because: error X3017: cannot implicitly con…
96 …float2 var25 = float4x4(zeros16);// Compilation failed because: error X3017: cannot implicitly con…
97 …float3 var27 = float2(zeros2);// Compilation failed because: error X3017: cannot implicitly conver…
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Dhlsl.type.type.conversion.all.frag88 …float2 var17 = float2x2(zeros4);// Compilation failed because: error X3017: cannot implicitly conv…
89 …float2 var18 = float2x3(zeros6);// Compilation failed because: error X3017: cannot implicitly conv…
90 …float2 var19 = float2x4(zeros8);// Compilation failed because: error X3017: cannot implicitly conv…
91 …float2 var20 = float3x2(zeros6);// Compilation failed because: error X3017: cannot implicitly conv…
92 …float2 var21 = float3x3(zeros9);// Compilation failed because: error X3017: cannot implicitly conv…
93 …float2 var22 = float3x4(zeros12);// Compilation failed because: error X3017: cannot implicitly con…
94 …float2 var23 = float4x2(zeros8);// Compilation failed because: error X3017: cannot implicitly conv…
95 …float2 var24 = float4x3(zeros12);// Compilation failed because: error X3017: cannot implicitly con…
96 …float2 var25 = float4x4(zeros16);// Compilation failed because: error X3017: cannot implicitly con…
97 …float3 var27 = float2(zeros2);// Compilation failed because: error X3017: cannot implicitly conver…
[all …]
/external/clang/test/SemaCXX/
Dpass-object-size.cpp23 …int (*A)(void *) = &Foo; //expected-error{{cannot take address of function 'Foo' because parameter… in Decls()
24 …int (*B)(void *) = Foo; //expected-error{{cannot take address of function 'Foo' because parameter … in Decls()
26 …type 'int (void *)'}} expected-note@6{{candidate address cannot be taken because parameter 1 has p… in Decls()
27 …type 'int (void *)'}} expected-note@6{{candidate address cannot be taken because parameter 1 has p… in Decls()
29 …int (*E)(void *) = &Statics::Foo; //expected-error{{cannot take address of function 'Foo' because in Decls()
30 …ype 'int (void *)'}} expected-note@11{{candidate address cannot be taken because parameter 1 has p… in Decls()
32 …int (*G)(void *) = &Members::Foo; //expected-error{{cannot take address of function 'Foo' because in Decls()
33 …ype 'int (void *)'}} expected-note@18{{candidate address cannot be taken because parameter 1 has p… in Decls()
38 …A = &Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_obj… in Assigns()
39 …A = Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_obje… in Assigns()
[all …]
/external/crosvm/sandbox/src/
Dlib.rs147 // Safe because TargetPolicyWrapper can only be constructed with a non-null pointer. in drop()
171 // Safe because the returned raw pointer is a non-owning pointer and we are free in is_sandbox_broker()
178 // Safe because the returned raw pointer is a non-owning pointer and we are in is_sandbox_target()
191 // Safe because RESULT is only written once, and call_once will cause in get()
216 /// Takes a &mut self because sbox_broker_init mutates the underlying broker
219 // Safe because BrokerServices can only be constructed with a non-null in init()
231 // Safe because BrokerServices can only be constructed with a non-null pointer. in create_policy()
242 /// Takes a `&mut self` because `sbox_spawn_target()` mutates the underlying
258 // Safe because the external arguments must be constructed in a safe in spawn_target()
278 // Safe because we are adopting the process and thread handles here, in spawn_target()
[all …]
/external/rust/crates/ring/tests/
Drsa_from_pkcs8_tests.txt21 # RSA 2040-bit key that is valid, but we reject it because it is too small and
22 # or because the private modulus length isn't a multiple of 512 bits.
26 # RSA 2046-bit key that is valid, but we reject it because it is too small and
27 # because the private modulus length isn't a multiple of 512 bits.
31 # RSA 2047-bit key that is valid, but we reject it because the lengths of the
32 # private primes aren't equal, because it is too small, because the private
37 # RSA 2049-bit key that is valid, but we reject it because the lengths of the
38 # private primes aren't equal and because the private modulus length isn't a
43 # RSA 2050-bit key that is valid, but we reject it because the private modulus
48 # RSA 2056-bit key that is valid, but we reject it because the private modulus
[all …]
/external/clang/test/CXX/class/class.union/
Dp1.cpp10 …virtual void foo() { abort(); } // expected-note 4 {{because type 'Virtual' has a virtual member f… in foo()
13 class VirtualBase : virtual Okay { // expected-note 4 {{because type 'VirtualBase' has a virtual ba…
17 …Ctor() { abort(); } // expected-note 2{{because type 'Ctor' has a user-provided default constructo… in Ctor()
20 …Ctor2(); // expected-note {{because type 'Ctor2' has a user-provided default constructor}} expecte…
22 class CtorTmpl { // expected-note {{because type 'CtorTmpl' has no default constructor}}
26 class CopyCtor { // expected-note 2{{because no constructor can be used to copy an object of type '…
30 class CopyAssign { // expected-note 2 {{because no assignment operator can be used to copy an objec…
35 …~Dtor() { abort(); } // expected-note 2 {{because type 'Dtor' has a user-provided destructor}} exp… in ~Dtor()
52 …Virtual v; // expected-note {{because the function selected to copy field of type 'Virtual' is not…
55 …VirtualBase vbase; // expected-note {{because the function selected to copy field of type 'Virtual…
[all …]
/external/clang/test/CXX/special/class.copy/
Dp11.0x.move.cpp12 …NonTrivial NT; // expected-note{{deleted because variant field 'NT' has a non-trivial move constru…
19 …NonTrivial NT; // expected-note{{deleted because variant field 'NT' has a non-trivial move constru…
26 // copied because overload resolution results in an ambiguity or a function
37 NoAccess NA; // expected-note{{deleted because field 'NA' has an inaccessible move constructor}}
54 Ambiguity A; // expected-note{{deleted because field 'A' has multiple move constructors}}
55 …IsAmbiguous(IsAmbiguous&&); // expected-note{{copy constructor is implicitly deleted because 'IsAm…
62 // constructor, because it was defaulted and deleted).
63 IsAmbiguous IA; // expected-note{{deleted because field 'IA' has a deleted move constructor}}
77 // 'cnt' is deleted, but we select the copy constructor, because the object is
79 …const NonTrivial cnt; // expected-note{{deleted because field 'cnt' has a deleted move constructor…
[all …]
Dp11.0x.copy.cpp12 …ected-note{{copy constructor of 'DeletedNTVariant' is implicitly deleted because variant field 'NT…
20 …cted-note{{copy constructor of 'DeletedNTVariant2' is implicitly deleted because variant field 'NT…
28 // copied because overload resolution results in an ambiguity or a function
39 …NoAccess NA; // expected-note{{copy constructor of 'HasNoAccess' is implicitly deleted because fie…
61 …Ambiguity A; // expected-note 2{{copy constructor of 'IsAmbiguous' is implicitly deleted because f…
68 …IsAmbiguous IA; // expected-note{{copy constructor of 'Deleted' is implicitly deleted because fiel…
79 // -- a direct or virtual base class B that cannot be copied because overload
82 …ed-note 2{{copy constructor of 'AmbiguousCopyBase' is implicitly deleted because base class 'Ambig…
88 …ected-note {{copy constructor of 'DeletedCopyBase' is implicitly deleted because base class 'Ambig…
92 …-note {{copy constructor of 'InaccessibleCopyBase' is implicitly deleted because base class 'NoAcc…
[all …]
/external/go-cmp/cmp/cmpopts/
Dutil_test.go111 reason: "not equal because empty non-nil and nil slice differ",
118 reason: "equal because EquateEmpty equates empty slices",
124 reason: "not equal because element order differs",
131 reason: "equal because SortSlices sorts the slices",
138 reason: "not equal because MyInt is not the same type as int",
152 reason: "panics because SortSlices used with non-transitive less function",
161 …reason: "no panics because SortSlices used with valid less function; not equal because NaN != N…
173 …reason: "no panics because SortSlices used with valid less function; equal because EquateNaNs i…
187 reason: "not equal because timezones differ",
202 reason: "equal because SortMaps flattens to a slice where Time.Equal can be used",
[all …]
/external/mbedtls/library/
Dpsa_crypto_its.h76 …* \retval #PSA_ERROR_NOT_PERMITTED The operation failed because the provided `uid` va…
77 …* \retval #PSA_ERROR_NOT_SUPPORTED The operation failed because one or more of the fl…
78 …* \retval #PSA_ERROR_INSUFFICIENT_STORAGE The operation failed because there was insufficien…
79 …* \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage …
80 …* \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided p…
101 …* \retval #PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided `uid` value …
102 …* \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage has …
103 …* \retval #PSA_ERROR_DATA_CORRUPT The operation failed because stored data has been corr…
104 …* \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided point…
123 …* \retval #PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided uid value wa…
[all …]
/external/openthread/third_party/mbedtls/repo/library/
Dpsa_crypto_its.h76 …* \retval #PSA_ERROR_NOT_PERMITTED The operation failed because the provided `uid` va…
77 …* \retval #PSA_ERROR_NOT_SUPPORTED The operation failed because one or more of the fl…
78 …* \retval #PSA_ERROR_INSUFFICIENT_STORAGE The operation failed because there was insufficien…
79 …* \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage …
80 …* \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided p…
101 …* \retval #PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided `uid` value …
102 …* \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage has …
103 …* \retval #PSA_ERROR_DATA_CORRUPT The operation failed because stored data has been corr…
104 …* \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided point…
123 …* \retval #PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided uid value wa…
[all …]
/external/crosvm/hypervisor/src/kvm/
Dmod.rs146 // Open calls are safe because we give a nul-terminated string and verify the result. in new_with_path()
152 // Safe because we verify that ret is valid and we own the fd. in new_with_path()
155 // Safe because we know that the descriptor is valid and we verify the return result. in new_with_path()
181 // Safe because we know that our file is a KVM fd and we verify the return result. in get_vcpu_mmap_size()
206 // this ioctl is safe because we know this kvm descriptor is valid, in check_capability()
229 // Safe because we know kvm is a real kvm fd as this module is the only one that can make in new()
241 // Safe because we verify that ret is valid and we own the fd. in new()
252 // Safe because the guest regions are guaranteed not to overlap. in new()
280 // Safe because we know that our file is a VM fd and we verify the return result. in create_kvm_vcpu()
286 // Wrap the vcpu now in case the following ? returns early. This is safe because we verified in create_kvm_vcpu()
[all …]
/external/clang/test/SemaObjC/
Dspecial-dep-unavail-warning.m33 …[c depInA]; // expected-warning {{'depInA' may be deprecated because the receiver type is unknown}}
34 …[c unavailMeth]; // expected-warning {{'unavailMeth' may be unavailable because the receiver type …
35 …[c depInA1]; // expected-warning {{'depInA1' may be deprecated because the receiver type is unknow…
36 …[c unavailMeth1]; // expected-warning {{'unavailMeth1' may be unavailable because the receiver typ…
37 …[c depInA2]; // expected-warning {{'depInA2' may be deprecated because the receiver type is unknow…
38 …[c unavailMeth2]; // expected-warning {{'unavailMeth2' may be unavailable because the receiver typ…
39 …[c depunavailInA]; // expected-warning {{'depunavailInA' may be unavailable because the receiver t…
40 …[c depunavailInA1];// expected-warning {{'depunavailInA1' may be unavailable because the receiver …
41 …[c FuzzyMeth]; // expected-warning {{'FuzzyMeth' may be deprecated because the receiver type …
42 …[c FuzzyMeth1]; // expected-warning {{'FuzzyMeth1' may be deprecated because the receiver type is …
/external/clang/test/CXX/special/class.dtor/
Dp5-0x.cpp19 …NonTrivDtor n; // expected-note {{destructor of 'A1' is implicitly deleted because variant field '…
25 NonTrivDtor n; // expected-note {{because variant field 'n' has a non-trivial destructor}}
31 NonTrivDtor n[3]; // expected-note {{because variant field 'n' has a non-trivial destructor}}
37 NonTrivDtor n[3]; // expected-note {{because variant field 'n' has a non-trivial destructor}}
46 DeletedDtor a; // expected-note {{because field 'a' has a deleted destructor}}
51 InaccessibleDtor a; // expected-note {{because field 'a' has an inaccessible destructor}}
56 DeletedDtor a[4]; // expected-note {{because field 'a' has a deleted destructor}}
61 InaccessibleDtor a[4]; // expected-note {{because field 'a' has an inaccessible destructor}}
67 union { // expected-note {{because field '' has a deleted destructor}}
68 DeletedDtor a; // expected-note {{because field 'a' has a deleted destructor}}
[all …]
/external/rust/crates/crossbeam-channel/src/
Derr.rs6 /// The message could not be sent because the channel is disconnected.
21 /// The message could not be sent because the channel is full.
27 /// The message could not be sent because the channel is disconnected.
38 /// The message could not be sent because the channel is full and the operation timed out.
44 /// The message could not be sent because the channel is disconnected.
50 /// A message could not be received because the channel is empty and disconnected.
61 /// A message could not be received because the channel is empty.
67 /// The message could not be received because the channel is empty and disconnected.
76 /// A message could not be received because the channel is empty and the operation timed out.
82 /// The message could not be received because the channel is empty and disconnected.
[all …]
/external/cronet/third_party/metrics_proto/
Dtranslate_event.proto104 // The translation was not offered because translate is disabled
107 // The translation was not offered because this language is
110 // The translation was not offered because this language or URL is
113 // The translation was not offered because this language has been denied too
116 // The translation was not offered because Ranker dismissed it.
118 // The translation was not offered because the source or target
121 // The translation was not offered because the URL is not
127 // The translate UI was not shown because the browser window associated with
130 // The translate UI was not shown because the browser window for the
133 // The translate UI was not shown because the browser window is minimized.
[all …]
/external/libevent/include/event2/
Ddns_compat.h61 @deprecated This function is deprecated because it always uses the current
78 @deprecated This function is deprecated because use of the global
91 @deprecated This function is deprecated because it does not allow the
108 @deprecated This function is deprecated because it does not allow the
127 @deprecated This function is deprecated because it does not allow the
142 @deprecated This function is deprecated because it does not allow the
158 @deprecated This function is deprecated because it does not allow the
174 @deprecated This function is deprecated because it does not allow the
187 @deprecated This function is deprecated because it does not allow the
220 @deprecated This function is deprecated because it does not allow the
[all …]
/external/iw/
Dreason.c7 [3] = "Deauthenticated because sending station is leaving (or has left) the IBSS or ESS",
9 [5] = "Disassociated because AP is unable to handle all currently associated STA",
12 [8] = "Disassociated because sending station is leaving (or has left) the BSS",
14 [10] = "Disassociated because the information in the Power Capability element is unacceptable",
15 [11] = "Disassociated because the information in the Supported Channels element is unacceptable",
28 …[31] = "TS deleted because QoS AP lacks sufficient bandwidth for this QoS STA due to a change in B…
30 [33] = "Disassociated because QAP lacks sufficient bandwidth for this STA",
31 [34] = "Disassociated because of excessive frame losses and/or poor channel conditions",
32 [35] = "Disassociated because QSTA is transmitting outside the limits of its polled TXOPs",
/external/rust/cxx/tests/ui/
Dopaque_autotraits.stderr8 = note: required because it appears within the type `[*const cxx::void; 0]`
9 = note: required because it appears within the type `cxx::private::Opaque`
10 note: required because it appears within the type `ffi::Opaque`
28 = note: required because it appears within the type `[*const cxx::void; 0]`
29 = note: required because it appears within the type `cxx::private::Opaque`
30 note: required because it appears within the type `ffi::Opaque`
48 = note: required because it appears within the type `PhantomData<PhantomPinned>`
49 = note: required because it appears within the type `cxx::private::Opaque`
50 note: required because it appears within the type `ffi::Opaque`
/external/crosvm/common/data_model/src/
Dlib.rs19 // Safe because the pointer is valid and points to `size_of::<T>()` bytes of zeroes, in zerocopy_from_reader()
24 // Safe because any bit pattern is considered a valid value for `T`. in zerocopy_from_reader()
67 // Safe because the DataInit trait asserts any data is valid for this type, and we ensured in from_slice()
69 // we don't have any unaligned references. This aliases a pointer, but because the pointer in from_slice()
71 // returned can not outlive data because they have equal implicit lifetime constraints. in from_slice()
90 /// Because `Self` is made from a reference to the mutable slice`, mutations to the returned
102 // Safe because the DataInit trait asserts any data is valid for this type, and we ensured in from_mut_slice()
104 // we don't have any unaligned references. This aliases a pointer, but because the pointer in from_mut_slice()
106 // reference returned can not outlive data because they have equal implicit lifetime in from_mut_slice()
119 // Safe because the pointer is valid and points to `size_of::<Self>()` bytes of zeroes, in from_reader()
[all …]
/external/crosvm/kvm/src/
Dlib.rs152 // Open calls are safe because we give a nul-terminated string and verify the result. in new_with_path()
158 // Safe because we verify that ret is valid and we own the fd. in new_with_path()
165 // Safe because we know that our file is a KVM fd and that the extension is one of the ones in check_extension_int()
177 // Safe because we know that our file is a KVM fd and we verify the return result. in get_vcpu_mmap_size()
238 // Mapping the unsized array to a slice is unsafe because the length isn't known. Using in get_msr_index_list()
263 // Safe because we know self is a real kvm fd in get_vm_type()
346 // Safe because we know kvm is a real kvm fd as this module is the only one that can make in new()
350 // Safe because we verify the value of ret and we are the owners of the fd. in new()
361 // Safe because the guest regions are guaranteed not to overlap. in new()
388 /// This is distinct from the `Kvm` version of this method because the some extensions depend on
[all …]
/external/clang/test/CXX/special/class.ctor/
Dp5-0x.cpp24 …expected-note {{default constructor of 'Deleted1a' is implicitly deleted because variant field 'u'…
35 int &a; // expected-note 4{{because field 'a' of reference type 'int &' would not be initialized}}
39 …int &&b; // expected-note {{default constructor of 'Deleted2b' is implicitly deleted because field…
52 class Deleted3a { const int a; }; // expected-note {{because field 'a' of const-qualified type 'con…
56 class Deleted3b { const DefaultedDefCtor1 a[42]; }; // expected-note {{because field 'a' of const-q…
58 class Deleted3c { const DefaultedDefCtor2 a; }; // expected-note {{because field 'a' of const-quali…
80 …const UserProvidedDefCtor c; // expected-note {{because variant field 'c' has a non-trivial defaul…
89 …union { const int a; }; // expected-note {{because all data members of an anonymous union member a…
101 struct Deleted6a : Deleted2a {}; // expected-note {{because base class 'Deleted2a' has a deleted de…
103 struct Deleted6b : virtual Deleted2a {}; // expected-note {{because base class 'Deleted2a' has a de…
[all …]
/external/crosvm/media/libvda/src/decode/
Dsession.rs32 // Safe because `conn_ptr()` is valid and won't be invalidated by `init_decode_session()`. in new()
41 // Dereferencing `session_ptr` is safe because it is a valid pointer to a FD provided by in new()
42 // libvda. We need to dup() the `event_pipe_fd` because File object close() the FD while in new()
67 // Safe because libvda must have written vda_event_t to the pipe. in read_event()
70 // Safe because `vda_event` is a value read from `self.pipe`. in read_event()
84 // Safe because `session_ptr` is valid and a libvda's API is called properly. in decode()
102 // Safe because `session_ptr` is valid and a libvda's API is called properly. in set_output_buffer_count()
128 // Safe because `session_ptr` is valid and a libvda's API is called properly. in use_output_buffer()
147 // Safe because `session_ptr` is valid and a libvda's API is called properly. in reuse_output_buffer()
158 // Safe because `session_ptr` is valid and a libvda's API is called properly. in flush()
[all …]
/external/libcxx/lib/abi/
DCHANGELOG.TXT23 ABI break because the symbols are shipped starting with mac OSX 10.13, however
24 users couldn't be relying on the functionality because it is marked as being
51 from the shared library, but this is not an ABI break because it's impossible
56 marking that symbol as hidden would not be an ABI break for them because none
57 of their users could actually be using the symbol in their dylib (because
89 however this is not an ABI break because it's impossible for programs linking
94 (because it's defined in the headers), marking that symbol as hidden would
95 not be an ABI break for them because none of their users could actually be
96 using the symbol in their dylib (because it's an implicit instantiation).
134 __uncaught_exceptions. This change is non-ABI breaking because the symbols
[all …]
/external/crosvm/gpu_display/src/gpu_display_win/
Dwindow.rs213 /// `WM_NCDESTROY`, because the window handle will become invalid afterwards.
277 // Safe because it is called from the same thread the created the window. in is_valid()
283 // Safe because `Window` object won't outlive the HWND, and failures are handled below. in set_property()
294 // Safe because `Window` object won't outlive the HWND, and failures are handled below. in remove_property()
310 // Safe because `Window` object won't outlive the HWND. in update_virtual_display_projection()
327 // Safe because `Window` object won't outlive the HWND, and failures are handled below. in get_attribute()
342 // Safe because `Window` object won't outlive the HWND, and failures are handled below. in set_attribute()
358 // Safe because `Window` object won't outlive the HWND, we know `rect` is valid, and in get_window_rect()
376 // Safe because `Window` object won't outlive the HWND, we know `rect` is valid, and in get_client_rect()
404 // Safe because `Window` object won't outlive the HWND, we know `point` is valid, and in client_to_screen()
[all …]

12345678910>>...680