Home
last modified time | relevance | path

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

12345678910>>...910

/external/angle/third_party/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/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/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/rust/android-crates-io/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/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/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/bazelbuild-rules_python/python/config_settings/
DBUILD.bazel40 # NOTE: Only public because it is dependency of public rules.
48 # NOTE: Only public because it is used in py_toolchain_suite from toolchain
58 # NOTE: Only public because it is used in py_toolchain_suite from toolchain
67 # NOTE: Only public because it's an implicit dependency
75 # NOTE: Only public because it's an implicit dependency
83 # NOTE: Only public because it's an implicit dependency
92 # NOTE: Only public because it is used in pip hub and toolchain repos.
115 # NOTE: Only public because it is used in pip hub repos.
124 # NOTE: Only public because it is used in pip hub repos.
133 # NOTE: Only public because it is used in pip hub repos.
[all …]
/external/mbedtls/library/
Dpsa_crypto_its.h58 …* \retval #PSA_ERROR_NOT_PERMITTED The operation failed because the provided `uid` va…
59 …* \retval #PSA_ERROR_NOT_SUPPORTED The operation failed because one or more of the fl…
60 …* \retval #PSA_ERROR_INSUFFICIENT_STORAGE The operation failed because there was insufficien…
61 …* \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage …
62 …* \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided p…
83 …* \retval #PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided `uid` value …
84 …* \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage has …
85 …* \retval #PSA_ERROR_DATA_CORRUPT The operation failed because stored data has been corr…
86 …* \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided point…
105 …* \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.h58 …* \retval #PSA_ERROR_NOT_PERMITTED The operation failed because the provided `uid` va…
59 …* \retval #PSA_ERROR_NOT_SUPPORTED The operation failed because one or more of the fl…
60 …* \retval #PSA_ERROR_INSUFFICIENT_STORAGE The operation failed because there was insufficien…
61 …* \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage …
62 …* \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided p…
83 …* \retval #PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided `uid` value …
84 …* \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage has …
85 …* \retval #PSA_ERROR_DATA_CORRUPT The operation failed because stored data has been corr…
86 …* \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided point…
105 …* \retval #PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided uid value wa…
[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/cronet/tot/third_party/libc++/src/test/libcxx/algorithms/
Dcpp17_iterator_concepts.verify.cpp93 …// expected-note@*:* {{because 'not_move_constructible' does not satisfy '__cpp17_move_constructib… in check_iterator_requirements()
96 …// expected-note@*:* {{because 'not_copy_constructible' does not satisfy '__cpp17_copy_constructib… in check_iterator_requirements()
99 // expected-note@*:* {{because 'not_move_assignable' does not satisfy '__cpp17_copy_assignable'}} in check_iterator_requirements()
102 // expectted-note@*:* {{because 'not_copy_assignable' does not satisfy '__cpp17_copy_assignable'}} in check_iterator_requirements()
143 …// expected-note@*:* {{because 'not_default_constructible' does not satisfy '__cpp17_default_const… in check_forward_iterator_requirements()
146 …// expected-note-re@*:* {{because type constraint 'convertible_to<{{(valid_iterator<postincrement_… in check_forward_iterator_requirements()
176 …// expected-note@*:* {{because type constraint 'same_as<int, __iter_reference<not_returning_iter_r… in check_bidirectional_iterator_requirements()
367 …// expected-note@*:* {{because '__iter += __n' would be invalid: overload resolution selected dele… in check_random_access_iterator()
369 …// expected-note@*:* {{because '__iter -= __n' would be invalid: overload resolution selected dele… in check_random_access_iterator()
371 …// expected-note@*:* {{because '__iter + __n' would be invalid: overload resolution selected delet… in check_random_access_iterator()
[all …]
/external/cronet/stable/third_party/libc++/src/test/libcxx/algorithms/
Dcpp17_iterator_concepts.verify.cpp93 …// expected-note@*:* {{because 'not_move_constructible' does not satisfy '__cpp17_move_constructib… in check_iterator_requirements()
96 …// expected-note@*:* {{because 'not_copy_constructible' does not satisfy '__cpp17_copy_constructib… in check_iterator_requirements()
99 // expected-note@*:* {{because 'not_move_assignable' does not satisfy '__cpp17_copy_assignable'}} in check_iterator_requirements()
102 // expectted-note@*:* {{because 'not_copy_assignable' does not satisfy '__cpp17_copy_assignable'}} in check_iterator_requirements()
143 …// expected-note@*:* {{because 'not_default_constructible' does not satisfy '__cpp17_default_const… in check_forward_iterator_requirements()
146 …// expected-note-re@*:* {{because type constraint 'convertible_to<{{(valid_iterator<postincrement_… in check_forward_iterator_requirements()
176 …// expected-note@*:* {{because type constraint 'same_as<int, __iter_reference<not_returning_iter_r… in check_bidirectional_iterator_requirements()
367 …// expected-note@*:* {{because '__iter += __n' would be invalid: overload resolution selected dele… in check_random_access_iterator()
369 …// expected-note@*:* {{because '__iter -= __n' would be invalid: overload resolution selected dele… in check_random_access_iterator()
371 …// expected-note@*:* {{because '__iter + __n' would be invalid: overload resolution selected delet… in check_random_access_iterator()
[all …]
/external/go-cmp/cmp/cmpopts/
Dutil_test.go112 reason: "not equal because empty non-nil and nil slice differ",
119 reason: "equal because EquateEmpty equates empty slices",
125 reason: "not equal because element order differs",
132 reason: "equal because SortSlices sorts the slices",
139 reason: "not equal because MyInt is not the same type as int",
153 reason: "panics because SortSlices used with non-transitive less function",
162 …reason: "no panics because SortSlices used with valid less function; not equal because NaN != N…
174 …reason: "no panics because SortSlices used with valid less function; equal because EquateNaNs i…
188 reason: "not equal because timezones differ",
203 reason: "equal because SortMaps flattens to a slice where Time.Equal can be used",
[all …]
/external/googleapis/google/api/
Derror_reason.proto59 // "pubsub.googleapis.com" service because the associated billing account is
73 // The request is denied because the provided [API
88 // The request is denied because it violates [API key API
92 // "storage.googleapis.com" service because this service is restricted in the
104 // The request is denied because it violates [API key HTTP
108 // "storage.googleapis.com" service because the http referrer of the request
120 // The request is denied because it violates [API key IP address
124 // "storage.googleapis.com" service because the caller IP of the request
136 // The request is denied because it violates [API key Android application
140 // "storage.googleapis.com" service because the request from the Android apps
[all …]
/external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/proto/google/api/
Derror_reason.proto59 // "pubsub.googleapis.com" service because the associated billing account is
73 // The request is denied because the provided [API
88 // The request is denied because it violates [API key API
92 // "storage.googleapis.com" service because this service is restricted in the
104 // The request is denied because it violates [API key HTTP
108 // "storage.googleapis.com" service because the http referrer of the request
120 // The request is denied because it violates [API key IP address
124 // "storage.googleapis.com" service because the caller IP of the request
136 // The request is denied because it violates [API key Android application
140 // "storage.googleapis.com" service because the request from the Android apps
[all …]
/external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/java/com/google/api/
DErrorReason.java77 * "pubsub.googleapis.com" service because the associated billing account is
96 * The request is denied because the provided [API
116 * The request is denied because it violates [API key API
119 * "storage.googleapis.com" service because this service is restricted in the
137 * The request is denied because it violates [API key HTTP
140 * "storage.googleapis.com" service because the http referrer of the request
158 * The request is denied because it violates [API key IP address
161 * "storage.googleapis.com" service because the caller IP of the request
179 * The request is denied because it violates [API key Android application
182 * "storage.googleapis.com" service because the request from the Android apps
[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/cronet/tot/third_party/metrics_proto/
Dtranslate_event.proto119 // The translation was not offered because translate is disabled
123 // The translation was not offered because this language is
127 // The translation was not offered because this language or URL is
131 // The translation was not offered because this language has been denied too
135 // The translation was not offered because Ranker dismissed it.
138 // The translation was not offered because the source or target
142 // The translation was not offered because the URL is not
150 // The translate UI was not shown because the browser window associated with
154 // The translate UI was not shown because the browser window for the
158 // The translate UI was not shown because the browser window is minimized.
[all …]
/external/cronet/stable/third_party/metrics_proto/
Dtranslate_event.proto119 // The translation was not offered because translate is disabled
123 // The translation was not offered because this language is
127 // The translation was not offered because this language or URL is
131 // The translation was not offered because this language has been denied too
135 // The translation was not offered because Ranker dismissed it.
138 // The translation was not offered because the source or target
142 // The translation was not offered because the URL is not
150 // The translate UI was not shown because the browser window associated with
154 // The translate UI was not shown because the browser window for the
158 // The translate UI was not shown because the browser window is minimized.
[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/android-crates-io/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/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/crosvm/base/src/sys/windows/
Devent.rs75 // SAFETY: Safe because return value is checked. in new_with_manual_reset()
93 // SAFETY: Safe because the descriptor is valid. in new_with_manual_reset()
100 // SAFETY: Safe because return value is checked. in create_event_with_name()
118 // SAFETY: Safe because the descriptor is valid. in create_event_with_name()
130 // SAFETY: Safe because return value is checked. in open()
137 // SAFETY: Safe because the descriptor is valid. in open()
144 // SAFETY: Safe because the descriptor is valid. in signal()
153 // SAFETY: Safe because the descriptor is valid. in reset()
170 // Safe because we pass an event object handle owned by this PlatformEvent. in wait_and_reset()
203 // SAFETY: Safe because return value is checked. in try_clone()
[all …]

12345678910>>...910