/third_party/python/Lib/test/ |
H A D | test_posixpath.py | 404 # Bug #43757: raise FileNotFoundError in strict mode if we encounter 408 self.assertRaises(FileNotFoundError, realpath, ABSTFN, strict=True) 409 self.assertRaises(FileNotFoundError, realpath, ABSTFN + "2", strict=True) 426 # symlink loop in non-strict mode (default). 467 # strict mode. 470 self.assertRaises(OSError, realpath, ABSTFN, strict=True) 474 self.assertRaises(OSError, realpath, ABSTFN+"1", strict=True) 475 self.assertRaises(OSError, realpath, ABSTFN+"2", strict=True) 477 self.assertRaises(OSError, realpath, ABSTFN+"1/x", strict=True) 478 self.assertRaises(OSError, realpath, ABSTFN+"1/..", strict [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/drivers/net/mlxsw/ |
H A D | qos_pfc.sh | 176 ets bands 8 strict 8 priomap 7 6 192 ets bands 8 strict 8 priomap 7 6 209 ets bands 8 strict 8 priomap 7 6 231 ets bands 8 strict 8 priomap 7 6
|
/kernel/linux/linux-5.10/net/ipv6/ |
H A D | netfilter.c | 30 int strict = (ipv6_addr_type(&iph->daddr) & in ip6_route_me_harder() local 34 strict ? skb_dst(skb)->dev->ifindex : 0, in ip6_route_me_harder() 95 struct flowi *fl, bool strict) in __nf_ip6_route() 103 const void *sk = strict ? &fake_sk : NULL; in __nf_ip6_route() 94 __nf_ip6_route(struct net *net, struct dst_entry **dst, struct flowi *fl, bool strict) __nf_ip6_route() argument
|
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/net/mlxsw/ |
H A D | qos_pfc.sh | 175 ets bands 8 strict 8 priomap 7 6 191 ets bands 8 strict 8 priomap 7 6 208 ets bands 8 strict 8 priomap 7 6 230 ets bands 8 strict 8 priomap 7 6
|
/kernel/linux/linux-6.6/net/ipv6/ |
H A D | netfilter.c | 31 int strict = (ipv6_addr_type(&iph->daddr) & in ip6_route_me_harder() local 44 else if (strict) in ip6_route_me_harder() 100 struct flowi *fl, bool strict) in __nf_ip6_route() 108 const void *sk = strict ? &fake_sk : NULL; in __nf_ip6_route() 99 __nf_ip6_route(struct net *net, struct dst_entry **dst, struct flowi *fl, bool strict) __nf_ip6_route() argument
|
/third_party/python/Lib/distutils/command/ |
H A D | register.py | 23 ('strict', None , 27 'verify', 'list-classifiers', 'strict'] 34 self.strict = 0 39 check_options = {'strict': ('register', self.strict), 64 check.strict = self.strict
|
/base/powermgr/thermal_manager/test/unittest/src/ |
H A D | thermal_config_file_parser.cpp | 58 return iter.strict; in GetActionStrict() 234 xmlChar* strict = xmlGetProp(curNode, BAD_CAST("strict")); in ParseActionNode() local 235 if (strict != nullptr) { in ParseActionNode() 236 std::string strictValue = reinterpret_cast<char*>(strict); in ParseActionNode() 237 ai.strict = (TrimStr(strictValue) == TRUE_STR); in ParseActionNode() 238 xmlFree(strict); in ParseActionNode() 247 "ai.name: %{public}s, ai.strict: %{public}d, ai.params: %{public}s, ai.strict: %{public}s, " \ in ParseActionNode() 249 ai.name.c_str(), ai.strict, a in ParseActionNode() [all...] |
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | utils.c | 164 bool strict, unsigned short family) in nf_route() 171 ret = nf_ip_route(net, dst, fl, strict); in nf_route() 174 ret = nf_ip6_route(net, dst, fl, strict); in nf_route() 163 nf_route(struct net *net, struct dst_entry **dst, struct flowi *fl, bool strict, unsigned short family) nf_route() argument
|
/third_party/json/tests/src/ |
H A D | unit-serialization.cpp | 87 CHECK_THROWS_WITH_AS(j.dump(1, ' ', false, json::error_handler_t::strict), "[json.exception.type_error.316] invalid UTF-8 byte at index 2: 0xA9", json::type_error&); 98 CHECK_THROWS_AS(j.dump(1, ' ', false, json::error_handler_t::strict), json::type_error&); 109 CHECK_THROWS_AS(j.dump(1, ' ', false, json::error_handler_t::strict), json::type_error&);
|
/third_party/python/Modules/ |
H A D | _csv.c | 106 char strict; /* raise exception on bad CSV */ member 344 { "strict", T_BOOL, D_OFF(strict), READONLY }, 376 "strict", 409 PyObject *strict = NULL; in dialect_new() local 421 &strict)) in dialect_new() 446 strict == NULL) in dialect_new() 464 Py_XINCREF(strict); in dialect_new() 481 DIALECT_GETATTR(strict, "strict"); in dialect_new() [all...] |
H A D | _json.c | 33 signed char strict; member 43 {"strict", T_BOOL, offsetof(PyScannerObject, strict), READONLY, "strict"}, 381 scanstring_unicode(PyObject *pystr, Py_ssize_t end, int strict, Py_ssize_t *next_end_ptr) in scanstring_unicode() argument 385 if strict is zero then literal control characters are allowed in scanstring_unicode() 424 if (d <= 0x1f && strict) { in scanstring_unicode() 557 "scanstring(string, end, strict=True) -> (string, end)\n" 562 "on attempt to decode an invalid string. If strict is False then literal\n" 576 int strict variable 1170 PyObject *strict; scanner_new() local [all...] |
/foundation/graphic/graphic_3d/lume/metaobject/src/property/ |
H A D | stack_property.h | 45 BASE_NS::vector<IValue::Ptr> GetValues(const BASE_NS::array_view<const TypeId>& ids, bool strict) const override; 51 const BASE_NS::array_view<const TypeId>& ids, bool strict) const override;
|
/kernel/linux/linux-6.6/tools/virtio/ |
H A D | Makefile | 17 CFLAGS += -g -O2 -Werror -Wno-maybe-uninitialized -Wall -I. -I../include/ -I ../../usr/include/ -Wno-pointer-sign -fno-strict-overflow -fno-strict-aliasing -fno-common -MMD -U_FORTIFY_SOURCE -include ../../include/linux/kconfig.h $(call cc-option,-mfunction-return=thunk) $(call cc-option,-fcf-protection=none) $(call cc-option,-mindirect-branch-register)
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
H A D | corpus.js | 99 loadTestcase(relPath, strict, label) { 102 const source = sourceHelpers.loadSource(this.inputDir, relPath, strict); 119 // the file parses in strict mode. 120 this.loadTestcase(relPath, true, 'strict');
|
/third_party/node/deps/npm/node_modules/diff/lib/patch/ |
H A D | parse.js | 2 "use strict"; 55 } else if (_line && options.strict) { 56 // Ignore unexpected content unless in strict mode 148 if (options.strict) {
|
/third_party/ltp/testcases/kernel/syscalls/prctl/ |
H A D | prctl02.c | 65 static const struct sock_fprog strict = { variable 70 static unsigned long strict_addr = (unsigned long)&strict;
|
/third_party/python/Lib/test/test_email/ |
H A D | test_policy.py | 58 email.policy.strict: make_defaults(policy_defaults, 174 email.policy.strict.handle_defect(foo, defect) 242 newpolicy = mypolicy + email.policy.strict 244 newpolicy = email.policy.strict + mypolicy 248 newpolicy = email.policy.default + email.policy.strict
|
/third_party/node/test/parallel/ |
H A D | test-eval-strict-referenceerror.js | 1 /* eslint-disable strict */ 4 // In Node.js 0.10, a bug existed that caused strict functions to not capture 16 '\'use strict\';',
|
/kernel/linux/linux-5.10/drivers/pinctrl/ |
H A D | pinmux.c | 80 * Controllers not defined as strict will always return true, 92 if (ops->strict && desc->mux_usecount) in pinmux_can_be_used_for_gpio() 95 return !(ops->strict && !!desc->gpio_owner); in pinmux_can_be_used_for_gpio() 126 if ((!gpio_range || ops->strict) && in pin_request() 134 if ((gpio_range || ops->strict) && desc->gpio_owner) { in pin_request() 591 if (pmxops->strict) in pinmux_pins_show() 593 "Format: pin (name): mux_owner|gpio_owner (strict) hog?\n"); in pinmux_pins_show() 615 if (pmxops->strict) { in pinmux_pins_show() 627 /* For non-strict controllers */ in pinmux_pins_show()
|
/third_party/skia/third_party/externals/libpng/ |
H A D | pngtest.c | 145 static int strict = 0; variable 977 if (strict != 0) in test_one_file() 987 /* if strict is not set, then app warnings and errors are treated as in test_one_file() 1676 /* Summarize any warnings or errors and in 'strict' mode fail the test. in test_one_file() 1677 * Unsupported chunks can result in warnings, in that case ignore the strict in test_one_file() 1688 if (strict != 0) in test_one_file() 1697 inname, unsupported_chunks, strict ? ": IGNORED --strict!" : ""); in test_one_file() 1706 if (strict != 0) in test_one_file() 1759 if (strict ! in test_one_file() [all...] |
/device/soc/hisilicon/common/platform/hisi_sdk/ |
H A D | Makefile | 25 LOCAL_CFLAGS += -fstack-protector-strong -Wextra -Wall -Werror -fsigned-char -fno-strict-aliasing -fno-common
|
/device/soc/hisilicon/common/platform/dmac/ |
H A D | Makefile | 25 LOCAL_CFLAGS += -fstack-protector-strong -Wextra -Wall -Werror -fsigned-char -fno-strict-aliasing -fno-common
|
/device/soc/hisilicon/common/platform/adc/ |
H A D | Makefile | 25 LOCAL_CFLAGS += -fstack-protector-strong -Wextra -Wall -Werror -fsigned-char -fno-strict-aliasing -fno-common
|
/device/soc/hisilicon/common/platform/pin/ |
H A D | Makefile | 25 LOCAL_CFLAGS += -fstack-protector-strong -Wextra -Wall -Werror -fsigned-char -fno-strict-aliasing -fno-common
|
/device/soc/hisilicon/common/platform/pwm/ |
H A D | Makefile | 25 LOCAL_CFLAGS += -fstack-protector-strong -Wextra -Wall -Werror -fsigned-char -fno-strict-aliasing -fno-common
|