Home
last modified time | relevance | path

Searched refs:path (Results 7476 - 7500 of 10795) sorted by relevance

1...<<291292293294295296297298299300>>...432

/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/openssl/
H A Docsp.h269 OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
271 OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req);
278 # define OCSP_REQ_CTX_http(rctx, op, path) \
281 NULL, NULL, path))
356 # define OCSP_parse_url(url, host, port, path, ssl) \
357 OSSL_HTTP_parse_url(url, ssl, NULL, host, port, NULL, path, NULL, NULL)
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/
H A Docsp.h269 OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
271 OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req);
278 # define OCSP_REQ_CTX_http(rctx, op, path) \
281 NULL, NULL, path))
356 # define OCSP_parse_url(url, host, port, path, ssl) \
357 OSSL_HTTP_parse_url(url, ssl, NULL, host, port, NULL, path, NULL, NULL)
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/
H A Docsp.h269 OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
271 OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req);
278 # define OCSP_REQ_CTX_http(rctx, op, path) \
281 NULL, NULL, path))
356 # define OCSP_parse_url(url, host, port, path, ssl) \
357 OSSL_HTTP_parse_url(url, ssl, NULL, host, port, NULL, path, NULL, NULL)
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/
H A Docsp.h269 OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
271 OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req);
278 # define OCSP_REQ_CTX_http(rctx, op, path) \
281 NULL, NULL, path))
356 # define OCSP_parse_url(url, host, port, path, ssl) \
357 OSSL_HTTP_parse_url(url, ssl, NULL, host, port, NULL, path, NULL, NULL)
/third_party/skia/src/core/
H A DSkPicturePlayback.cpp119 const SkPath& path = fPictureData->getPath(reader); in handleOp() local
129 canvas->clipPath(path, clipOp, doAA); in handleOp()
528 const auto& path = fPictureData->getPath(reader); in handleOp() local
531 canvas->drawPath(path, paint); in handleOp()
583 const auto& path = fPictureData->getPath(reader); in handleOp() local
593 canvas->private_draw_shadow_rec(path, rec); in handleOp()
H A DSkBitmapDevice.cpp384 void SkBitmapDevice::drawPath(const SkPath& path, in drawPath() argument
388 if (SkDrawTiler::NeedsTiling(this) && !path.isInverseFillType()) { in drawPath()
389 bounds = &path.getBounds(); in drawPath()
396 draw->drawPath(path, paint, nullptr, pathIsMutable); in drawPath()
655 void SkBitmapDevice::onClipPath(const SkPath& path, SkClipOp op, bool aa) { in onClipPath() argument
656 fRCStack.clipPath(this->localToDevice(), path, op, aa); in onClipPath()
/third_party/skia/tests/
H A DSVGDeviceTest.cpp400 const auto* pathElement = dom.getFirstChild(rootElement, "path"); in DEF_TEST()
401 REPORTER_ASSERT(reporter, !!pathElement == expect_path, "unexpected path element"); in DEF_TEST()
407 // With kConvertTextToPaths_Flag, we emit <path> nodes. in DEF_TEST()
410 // We also use paths in the presence of path effects. in DEF_TEST()
552 const auto* pathElement = dom.getFirstChild(rootElement, "path"); in DEF_TEST()
553 REPORTER_ASSERT(reporter, pathElement, "path element not found"); in DEF_TEST()
555 // The SVG path to draw the three dots is a complex list of instructions. in DEF_TEST()
556 // To avoid test brittleness, we don't attempt to match the entire path. in DEF_TEST()
558 // dot. If path effects were not being honored, we would expect only one in DEF_TEST()
574 SkPath path; in DEF_TEST() local
[all...]
/third_party/skia/gn/
H A Dgn_to_cmake.py167 def GetAbsolutePath(self, path):
168 if path.startswith('//'):
169 return posixpath.join(self.root_path, path[2:])
171 return path
380 if "." in os.path.basename(abs_src_path):
713 out.write(CMakeStringEscape(os.path.abspath(__file__)))
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DjsXNode.js55 /// <reference path="../../state_mgmt/src/lib/common/ifelse_native.d.ts" />
56 /// <reference path="../../state_mgmt/src/lib/puv2_common/puv2_viewstack_processor.d.ts" />
1753 this.path = null;
1760 this.path = null;
1767 this.path = null;
1774 this.path = null;
1781 this.path = null;
1783 setCommandPath(path) {
1784 this.path = path;
[all...]
/kernel/linux/linux-5.10/drivers/infiniband/ulp/rtrs/
H A Drtrs-clt.c415 /* This should be IO path, so always notify */ in complete_rdma_req()
759 * get_next_path_rr() - Returns path in round-robin fashion.
760 * @it: the path pointer
770 struct rtrs_clt_sess *path; in get_next_path_rr() local
782 path = rcu_dereference(*ppcpu_path); in get_next_path_rr()
783 if (unlikely(!path)) in get_next_path_rr()
784 path = list_first_or_null_rcu(&clt->paths_list, in get_next_path_rr()
785 typeof(*path), s.entry); in get_next_path_rr()
787 path = list_next_or_null_rr_rcu(&clt->paths_list, in get_next_path_rr()
788 &path in get_next_path_rr()
1416 alloc_sess(struct rtrs_clt *clt, const struct rtrs_addr *path, size_t con_num, u16 max_segments, size_t max_segment_size) alloc_sess() argument
[all...]
/third_party/node/deps/npm/test/lib/commands/
H A Dls.js102 path: {
103 ...require('path'),
1662 // filter out a workspace by parent path
1734 // if no --depth config is defined, should print path to dep
3640 path: '{CWD}/prefix/node_modules/peer-dep',
3662 path: '{CWD}/prefix/node_modules/dog',
3670 path: '{CWD}/prefix/node_modules/foo',
3678 path: '{CWD}/prefix/node_modules/dev-dep',
3689 path: '{CWD}/prefix/node_modules/chai',
3701 path
[all...]
/third_party/python/Lib/test/
H A Dtest_exceptions.py2317 # Setting 'name' and 'path' should not be a problem.
2320 self.assertIsNone(exc.path)
2324 self.assertIsNone(exc.path)
2326 exc = ImportError('test', path='somepath')
2327 self.assertEqual(exc.path, 'somepath')
2330 exc = ImportError('test', path='somepath', name='somename')
2332 self.assertEqual(exc.path, 'somepath')
2342 ImportError('test', path='path', invalid='keyword')
2351 exc = ImportError('test', name='name', path
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/model/
H A Dmodel_paint_property.h168 void OnModelSingleImageTexturePathUpdate(const std::string& path) in OnModelSingleImageTexturePathUpdate() argument
170 propModelImageTexturePaths_.value().push_back(path); in OnModelSingleImageTexturePathUpdate()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/gauge/
H A Dgauge_modifier.h128 void CreateDefaultTrianglePath(float pathStartVertexX, float pathStartVertexY, float radius, RSPath& path);
130 void GetDrawPath(RSPath& path, RenderRingInfo& data, float startAngle, float sweepAngle);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/patternlock/
H A Dpatternlock_modifier.h112 void AddConnectedLineToPath(RSPath& path, const OffsetF& offset);
113 void AddCanceledLineToPath(RSPath& path, const OffsetF& offset);
/foundation/arkui/ace_engine/adapter/ohos/entrance/ui_session/
H A Dui_session_manager.cpp235 void UiSessionManager::OnRouterChange(const std::string& path, const std::string& event) in OnRouterChange() argument
239 value->Put("path", path.c_str()); in OnRouterChange()
/foundation/arkui/ace_engine/frameworks/core/components/camera/standard_system/
H A Dcamera.h83 int32_t SaveData(char *buffer, int32_t size, std::string& path);
115 void MakeDir(const std::string& path);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_drag/
H A Dtext_drag_pattern.h221 void CalculateLineAndArc(std::vector<TextPoint>& points, std::shared_ptr<RSPath>& path, float radiusRatio);
222 void CalculateLine(std::vector<TextPoint>& points, std::shared_ptr<RSPath>& path);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/progress/
H A Dprogress_modifier.h77 RSCanvas& canvas, const OffsetF& offset, const RSPath& path, bool isHorizontal, const SizeF& contentSize) const;
94 RSCanvas& canvas, const SizeF& contentSize, const OffsetF& offset, const RSPath& path, bool isVertical) const;
/foundation/arkui/ace_engine/frameworks/core/components_ng/svg/parse/
H A Dsvg_node.h157 void SetImagePath(const std::string& path) in SetImagePath() argument
159 imagePath_ = path; in SetImagePath()
236 bool hrefRender_ = true; // get render attr (mask, filter, transform, opacity, clip path) from reference
237 bool passStyle_ = true; // pass style attributes to child node, TAGS circle/path/line/... = false
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/shared/
H A Dshared_bundle_installer.cpp55 for (const auto &path : installParam_.sharedBundleDirPaths) { in ParseFiles()
56 auto installer = std::make_shared<InnerSharedBundleInstaller>(path); in ParseFiles()
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Denv_impl.cpp83 bool CompleteInitialization(const string& path) override
85 if (!NodeImpl::CompleteInitialization(path)) {
H A Dlight_impl.cpp84 bool CompleteInitialization(const BASE_NS::string& path) override
86 if (!NodeImpl::CompleteInitialization(path)) {
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/common/
H A Dstream_parser_manager.cpp189 void *StreamParserManager::LoadPluginFile(const std::string &path) in LoadPluginFile() argument
191 auto ptr = ::dlopen(path.c_str(), RTLD_NOW | RTLD_LOCAL); in LoadPluginFile()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsshadow_fuzzer/
H A Drsshadow_fuzzer.cpp161 auto path = std::make_shared<RSPath>(); in DoSetPath() local
162 rsShadow->SetPath(path); in DoSetPath()

Completed in 30 milliseconds

1...<<291292293294295296297298299300>>...432