/aosp_15_r20/prebuilts/go/linux-x86/test/ |
D | escape2n.go | 8 // Compiles but does not run. Inlining is disabled. 40 func foo4(xx, yy *int) { // ERROR "xx does not escape$" "yy does not escape$" 45 func foo5(xx **int, yy *int) { // ERROR "xx does not escape$" "yy does not escape$" 49 func foo6(xx **int, yy *int) { // ERROR "xx does not escape$" "leaking param: yy$" 53 func foo7(xx **int, yy *int) { // ERROR "xx does not escape$" "yy does not escape$" 57 func foo8(xx, yy *int) int { // ERROR "xx does not escape$" "yy does not escape$" 67 func foo10(xx, yy *int) { // ERROR "xx does not escape$" "yy does not escape$" 91 func foo14(yyy **int) { // ERROR "yyy does not escape$" 103 func foo17(yy *int) { // ERROR "yy does not escape$" 128 func NewBarp2(x *int) *Bar { // ERROR "x does not escape$" [all …]
|
D | escape2.go | 8 // Compiles but does not run. Inlining is disabled. 40 func foo4(xx, yy *int) { // ERROR "xx does not escape$" "yy does not escape$" 45 func foo5(xx **int, yy *int) { // ERROR "xx does not escape$" "yy does not escape$" 49 func foo6(xx **int, yy *int) { // ERROR "xx does not escape$" "leaking param: yy$" 53 func foo7(xx **int, yy *int) { // ERROR "xx does not escape$" "yy does not escape$" 57 func foo8(xx, yy *int) int { // ERROR "xx does not escape$" "yy does not escape$" 67 func foo10(xx, yy *int) { // ERROR "xx does not escape$" "yy does not escape$" 91 func foo14(yyy **int) { // ERROR "yyy does not escape$" 103 func foo17(yy *int) { // ERROR "yy does not escape$" 128 func NewBarp2(x *int) *Bar { // ERROR "x does not escape$" [all …]
|
D | escape_reflect.go | 19 v := reflect.ValueOf(x) // ERROR "x does not escape" 24 v := reflect.ValueOf(x) // ERROR "x does not escape" 29 v := reflect.ValueOf(x) // ERROR "x does not escape" 38 func bytes1(x []byte) byte { // ERROR "x does not escape" 39 v := reflect.ValueOf(x) // ERROR "x does not escape" 50 v := reflect.ValueOf(x) // ERROR "x does not escape" 55 v := reflect.ValueOf(x) // ERROR "x does not escape" 104 v := reflect.ValueOf(x) // ERROR "x does not escape" 109 v := reflect.ValueOf(x) // ERROR "x does not escape" 114 v := reflect.ValueOf(x) // ERROR "x does not escape" [all …]
|
D | escape_closure.go | 15 func(p *int) { // ERROR "p does not escape" "func literal does not escape" 23 func(p *int) { // ERROR "p does not escape" "func literal does not escape" 32 func(p *int) { // ERROR "p does not escape" "func literal does not escape" 40 func(p *int) { // ERROR "leaking param: p" "func literal does not escape" 47 _ = func(p *int) *int { // ERROR "leaking param: p to result ~r0" "func literal does not escape" 56 sink = func(p *int) *int { // ERROR "leaking param: p" "func literal does not escape" 63 func(p *int) { // ERROR "moved to heap: p" "func literal does not escape" 72 func(p *int) { // ERROR "leaking param: p" "func literal does not escape" 81 defer func(p *int) { // ERROR "p does not escape" "func literal does not escape" 90 defer func(p *int) { // ERROR "func literal escapes to heap" "p does not escape" [all …]
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/supply-chain/ |
H A D | config.toml | 13 does-not-implement-crypto = "does-not-implement-crypto" 25 does-not-implement-crypto = "does-not-implement-crypto" 37 does-not-implement-crypto = "does-not-implement-crypto" 45 criteria = ["does-not-implement-crypto", "safe-to-run"] 48 criteria = ["does-not-implement-crypto", "safe-to-run"] 51 criteria = ["does-not-implement-crypto", "safe-to-run"] 54 criteria = ["does-not-implement-crypto", "safe-to-run"] 57 criteria = ["does-not-implement-crypto", "safe-to-deploy", "ub-risk-2"] 60 criteria = ["does-not-implement-crypto", "safe-to-deploy", "ub-risk-2"] 63 criteria = ["does-not-implement-crypto", "safe-to-run"] [all …]
|
H A D | audits.toml | 8 **Note**: If a crate does not implement crypto, use `does-not-implement-crypto`, 9 which implies `crypto-safe`, but does not require expert review in order to 12 [criteria.does-not-implement-crypto] 14 Inspection reveals that the crate in question does not attempt to implement any 17 Note that certification of this does not require an expert on all forms of 69 criteria = ["safe-to-run", "does-not-implement-crypto"] 79 criteria = ["safe-to-run", "does-not-implement-crypto"] 84 criteria = ["safe-to-run", "does-not-implement-crypto"] 94 criteria = ["safe-to-run", "does-not-implement-crypto"] 99 criteria = ["safe-to-run", "does-not-implement-crypto"] [all …]
|
H A D | imports.lock | 8 **Note**: If a crate does not implement crypto, use `does-not-implement-crypto`, 9 which implies `crypto-safe`, but does not require expert review in order to 12 [audits.chromeos.criteria.does-not-implement-crypto] 14 Inspection reveals that the crate in question does not attempt to implement any 17 Note that certification of this does not require an expert on all forms of 24 criteria = ["safe-to-run", "does-not-implement-crypto"] 29 criteria = ["safe-to-run", "does-not-implement-crypto"] 34 criteria = ["safe-to-run", "does-not-implement-crypto"] 39 criteria = ["safe-to-run", "does-not-implement-crypto"] 44 criteria = ["safe-to-run", "does-not-implement-crypto"] [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/test/fixedbugs/ |
D | issue31573.go | 13 defer f(new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$" 14 defer f(new(int), new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$" 17 defer f([]*int{}...) // ERROR "\[\]\*int{} does not escape$" 18 …defer f([]*int{new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does… 19 …defer f([]*int{new(int), new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does… 22 go f(new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$" 23 go f(new(int), new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$" 26 go f([]*int{}...) // ERROR "\[\]\*int{} does not escape$" 27 …go f([]*int{new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does no… 28 …go f([]*int{new(int), new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does no… [all …]
|
/aosp_15_r20/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
D | mybusinesslodging.v1.json | 221 … "Default unspecified exception. Use this only if a more specific exception does not match.", 237 … "Default unspecified exception. Use this only if a more specific exception does not match.", 257 … "Default unspecified exception. Use this only if a more specific exception does not match.", 277 … "Default unspecified exception. Use this only if a more specific exception does not match.", 304 … "Default unspecified exception. Use this only if a more specific exception does not match.", 324 … "Default unspecified exception. Use this only if a more specific exception does not match.", 344 … "Default unspecified exception. Use this only if a more specific exception does not match.", 352 …othing, jewelry, art and decor either on hotel premises or very close by. Does not refer to the ho… 364 … "Default unspecified exception. Use this only if a more specific exception does not match.", 384 … "Default unspecified exception. Use this only if a more specific exception does not match.", [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/config/doc/ |
D | macro_reference.qbk | 21 These are for the times when you just want to check "does this compiler conform to C++11" or some s… 107 Compiler does not implement argument-dependent lookup (also named 118 The Platform does not provide functions for the character-classifying 130 The Platform does not provide `<wchar.h>` and `<cwchar>`. 133 The Platform does not provide `<wctype.h>` and `<cwctype>`. 158 The standard library does not put some or all of the contents of 162 The compiler does not support exception handling (this setting is typically 170 The compiler does not perform function template ordering or its function 188 The C++ implementation does not provide `wchar_t`, or it is really a synonym 200 The C++ compiler does not support SFINAE with abstract types, this is covered [all …]
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/sql/ |
H A D | CallableStatement.java | 38 * form that includes a result parameter and one that does not. If used, the result 99 * or <code>STRUCT</code> data type and the JDBC driver does not support 133 * or <code>STRUCT</code> data type and the JDBC driver does not support 293 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 425 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 444 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 460 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 477 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 495 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 591 * referenced type be given. A JDBC driver that does not need the [all …]
|
H A D | PreparedStatement.java | 72 * statement does not return a <code>ResultSet</code> object 105 * @exception SQLException if parameterIndex does not correspond to a parameter 113 * or <code>STRUCT</code> data type and the JDBC driver does not support 125 * @exception SQLException if parameterIndex does not correspond to a parameter 139 * @exception SQLException if parameterIndex does not correspond to a parameter 152 * @exception SQLException if parameterIndex does not correspond to a parameter 165 * @exception SQLException if parameterIndex does not correspond to a parameter 178 * @exception SQLException if parameterIndex does not correspond to a parameter 191 * @exception SQLException if parameterIndex does not correspond to a parameter 204 * @exception SQLException if parameterIndex does not correspond to a parameter [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/sql/ |
D | CallableStatement.java | 38 * form that includes a result parameter and one that does not. If used, the result 99 * or <code>STRUCT</code> data type and the JDBC driver does not support 133 * or <code>STRUCT</code> data type and the JDBC driver does not support 293 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 425 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 444 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 460 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 477 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 495 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 591 * referenced type be given. A JDBC driver that does not need the [all …]
|
D | PreparedStatement.java | 72 * statement does not return a <code>ResultSet</code> object 105 * @exception SQLException if parameterIndex does not correspond to a parameter 113 * or <code>STRUCT</code> data type and the JDBC driver does not support 125 * @exception SQLException if parameterIndex does not correspond to a parameter 139 * @exception SQLException if parameterIndex does not correspond to a parameter 152 * @exception SQLException if parameterIndex does not correspond to a parameter 165 * @exception SQLException if parameterIndex does not correspond to a parameter 178 * @exception SQLException if parameterIndex does not correspond to a parameter 191 * @exception SQLException if parameterIndex does not correspond to a parameter 204 * @exception SQLException if parameterIndex does not correspond to a parameter [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/14/libcore/ojluni/src/main/java/java/sql/ |
D | CallableStatement.java | 38 * form that includes a result parameter and one that does not. If used, the result 99 * or <code>STRUCT</code> data type and the JDBC driver does not support 133 * or <code>STRUCT</code> data type and the JDBC driver does not support 293 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 425 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 444 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 460 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 477 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 495 * @exception SQLFeatureNotSupportedException if the JDBC driver does not support 591 * referenced type be given. A JDBC driver that does not need the [all …]
|
D | PreparedStatement.java | 72 * statement does not return a <code>ResultSet</code> object 105 * @exception SQLException if parameterIndex does not correspond to a parameter 113 * or <code>STRUCT</code> data type and the JDBC driver does not support 125 * @exception SQLException if parameterIndex does not correspond to a parameter 139 * @exception SQLException if parameterIndex does not correspond to a parameter 152 * @exception SQLException if parameterIndex does not correspond to a parameter 165 * @exception SQLException if parameterIndex does not correspond to a parameter 178 * @exception SQLException if parameterIndex does not correspond to a parameter 191 * @exception SQLException if parameterIndex does not correspond to a parameter 204 * @exception SQLException if parameterIndex does not correspond to a parameter [all …]
|
/aosp_15_r20/tools/asuite/atest/bazel/runner/src/com/android/tradefed/testtype/bazel/ |
H A D | NullTestListener.java | 40 // Does nothing. in testLog() 45 // Does nothing. in testRunStarted() 50 // Does nothing. in testRunStarted() 55 // Does nothing. in testRunStarted() 60 // Does nothing. in testRunFailed() 65 // Does nothing. in testRunFailed() 70 // Does nothing. in testRunEnded() 75 // Does nothing. in testRunEnded() 80 // Does nothing. in testRunStopped() 85 // Does nothing. in testStarted() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/tti/doc/ |
D | tti_using_mm.qbk | 127 Does T have a nested type called 'AnIntType' ? 136 Does T have a nested type called 'BType' ? 145 Does T have a nested type called 'AClass' ? 154 Does T have a nested type called 'EColor' ? 163 Does T have a nested type called 'AUnion' ? 174 Does T have a nested typedef called 'AnIntType' whose type is an 'int' ? 188 Does T have a nested class called 'AClass' ? 197 Does T have a nested struct called 'BType' ? 210 Does T have a nested enumeration called 'EColor' ? 223 Does T have a nested union called 'AUnion' ? [all …]
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/ssl/test/runner/ |
H A D | fuzzer_mode.json | 12 "BadRSAClientKeyExchange*": "Fuzzer mode does not notice a bad premaster secret.", 25 "Resume-Server-CipherNotPreferred*": "Fuzzer mode does not encrypt tickets.", 26 "Resume-Server-DeclineBadCipher*": "Fuzzer mode does not encrypt tickets.", 27 "Resume-Server-DeclineCrossVersion*": "Fuzzer mode does not encrypt tickets.", 28 "TicketCallback-SingleCall-*": "Fuzzer mode does not encrypt tickets.", 29 "CorruptTicket-*": "Fuzzer mode does not encrypt tickets.", 30 "*RejectTicket-Server-*": "Fuzzer mode does not encrypt tickets.", 31 "ShimTicketRewritable*": "Fuzzer mode does not encrypt tickets.", 33 "Resume-Server-*Binder*": "Fuzzer mode does not check binders.", 35 "SkipEarlyData*": "Trial decryption does not work with the NULL cipher.", [all …]
|
/aosp_15_r20/external/boringssl/src/ssl/test/runner/ |
H A D | fuzzer_mode.json | 12 "BadRSAClientKeyExchange*": "Fuzzer mode does not notice a bad premaster secret.", 25 "Resume-Server-CipherNotPreferred*": "Fuzzer mode does not encrypt tickets.", 26 "Resume-Server-DeclineBadCipher*": "Fuzzer mode does not encrypt tickets.", 27 "Resume-Server-DeclineCrossVersion*": "Fuzzer mode does not encrypt tickets.", 28 "TicketCallback-SingleCall-*": "Fuzzer mode does not encrypt tickets.", 29 "CorruptTicket-*": "Fuzzer mode does not encrypt tickets.", 30 "*RejectTicket-Server-*": "Fuzzer mode does not encrypt tickets.", 31 "ShimTicketRewritable*": "Fuzzer mode does not encrypt tickets.", 33 "Resume-Server-*Binder*": "Fuzzer mode does not check binders.", 35 "SkipEarlyData*": "Trial decryption does not work with the NULL cipher.", [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/intrusive/test/ |
D | scary_iterators_test.cpp | 93 //constant_time_size does not change iterator in main() 97 //void_pointer does change iterator in main() 101 //size_type does not change iterator in main() 111 //constant_time_size does not change iterator in main() 115 //void_pointer does change iterator in main() 119 //size_type does not change iterator in main() 123 //cache_last does not change iterator in main() 127 //linear does not change iterator in main() 137 //constant_time_size does not change iterator in main() 141 //void_pointer does change iterator in main() [all …]
|
/aosp_15_r20/external/json-schema-validator/src/main/resources/ |
H A D | jsv-messages.properties | 2 additionalItems = {0}: index ''{1}'' is not defined in the schema and the schema does not allow add… 3 additionalProperties = {0}: property ''{1}'' is not defined in the schema and the schema does not a… 7 contains = {0}: does not contain an element that passes these validations: {2} 13 enum = {0}: does not have a value in the enumeration {1} 17 format = {0}: does not match the {1} pattern {2} 18 format.date = {0}: does not match the {1} pattern must be a valid RFC 3339 full-date 19 format.date-time = {0}: does not match the {1} pattern must be a valid RFC 3339 date-time 20 format.duration = {0}: does not match the {1} pattern must be a valid ISO 8601 duration 21 format.email = {0}: does not match the {1} pattern must be a valid RFC 5321 Mailbox 22 format.ipv4 = {0}: does not match the {1} pattern must be a valid RFC 2673 IP address [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/types/testdata/check/ |
D | lookup2.go | 15 // misspelled x.Foo == FoO type X has no field or method Foo, but does have field FoO 16 // misspelled x.Foo == foo type X has no field or method Foo, but does have field foo 17 // misspelled x.Foo == foO type X has no field or method Foo, but does have field foO 19 // misspelled x.foo == Foo type X has no field or method foo, but does have field Foo 20 // misspelled x.foo == FoO type X has no field or method foo, but does have field FoO 22 // misspelled x.foo == foO type X has no field or method foo, but does have field foO 25 // misspelled x.Foo != FoO type X has no field or method Foo, but does have field FoO 26 // unexported x.Foo != foo type X has no field or method Foo, but does have unexported … 29 // misspelled x.foo != Foo type X has no field or method foo, but does have field Foo 44 …_ = x.Foo2 // ERROR "x.Foo2 undefined (type S has no field or method Foo2, but does have field FoO… [all …]
|
/aosp_15_r20/tools/test/connectivity/acts_tests/tests/google/wifi/ |
D | WifiSoftApTest.py | 305 "Device does not support SIM card, softAp not applicable.") 327 "Device does not support SIM card, softAp not applicable.") 341 "Device does not support SIM card, softAp not applicable.") 355 "Device does not support SIM card, softAp not applicable.") 369 "Device does not support SIM card, softAp not applicable.") 383 "Device does not support SIM card, softAp not applicable.") 397 "Device does not support SIM card, softAp not applicable.") 411 "Device does not support SIM card, softAp not applicable.") 423 "Device does not support SIM card, softAp not applicable.") 425 "DUT does not support WPA3 softAp") [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/test/closure3.dir/ |
D | main.go | 20 if x := func() int { // ERROR "can inline main.func2" "func literal does not escape" 33 if y := func(x int) int { // ERROR "can inline main.func4" "func literal does not escape" 41 y := func(x int) int { // ERROR "can inline main.func5" "func literal does not escape" 44 y = func(x int) int { // ERROR "can inline main.func6" "func literal does not escape" 53 func() { // ERROR "func literal does not escape" 54 y := func(x int) int { // ERROR "can inline main.func7.1" "func literal does not escape" 57 y = func(x int) int { // ERROR "can inline main.func7.2" "func literal does not escape" 67 y := func(x int) int { // ERROR "can inline main.func8" "func literal does not escape" 70 y, sink = func(x int) int { // ERROR "can inline main.func9" "func literal does not escape" 79 func() { // ERROR "func literal does not escape" [all …]
|