Home
last modified time | relevance | path

Searched +refs:copy +refs:overlay (Results 1 – 25 of 12283) sorted by relevance

12345678910>>...492

/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/geom/
H A DGeometryOverlay.java16 import org.locationtech.jts.operation.overlay.OverlayOp;
73 return OverlayNGRobust.overlay(a, b, opCode); in overlay()
84 if (b.isEmpty()) return a.copy(); in difference()
89 return overlay(a, b, OverlayOp.DIFFERENCE); in difference()
119 return overlay(a, b, OverlayOp.INTERSECTION); in intersection()
131 if (a.isEmpty()) return b.copy();
132 if (b.isEmpty()) return a.copy();
137 return overlay(a, b, OverlayOp.SYMDIFFERENCE);
148 if (a.isEmpty()) return b.copy();
149 if (b.isEmpty()) return a.copy();
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/libANGLE/renderer/vulkan/
H A DOverlayVk.cpp91 gl::overlay::kFontCount * gl::overlay::kFontImageWidth * gl::overlay::kFontImageHeight; in createFont()
114 VkExtent3D{gl::overlay::kFontImageWidth, gl::overlay::kFontImageHeight, 1}, in createFont()
130 VkBufferImageCopy copy = {}; in createFont() local
131 copy.bufferRowLength = gl::overlay::kFontImageWidth; in createFont()
132 copy.bufferImageHeight = gl::overlay::kFontImageHeight; in createFont()
133 copy.imageSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT; in createFont()
134 copy.imageSubresource.layerCount = gl::overlay::kFontCount; in createFont()
135 copy.imageExtent.width = gl::overlay::kFontImageWidth; in createFont()
136 copy.imageExtent.height = gl::overlay::kFontImageHeight; in createFont()
137 copy.imageExtent.depth = 1; in createFont()
[all …]
/dports/devel/elixir-distillery/distillery-1.5.2/test/
H A Doverlay_test.exs12 test "invalid overlay produces error" do
13 overlay = {:foobar, "baz"}
14 assert {:error, {:invalid_overlay, ^overlay}} = Overlays.apply(@output_dir, [overlay], [])
32 overlay = {:copy, from, to}
33 …{:error, {:overlay_failed, :file, {:enoent, ^from, ^overlay}}} = Overlays.apply(@output_dir, [over…
50 describe "copy overlays" do
51 test "copy actually copies" do
59 assert {:ok, ["copy.eex"]} = result
62 test "copy is recursive" do
63 …result = Overlays.apply(@output_dir, [{:copy, "priv", "<%= release_name %>"}], [release_name: :cop…
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/angle/src/libANGLE/renderer/vulkan/
H A DOverlayVk.cpp90 gl::overlay::kFontCount * gl::overlay::kFontImageWidth * gl::overlay::kFontImageHeight; in createFont()
112 VkExtent3D{gl::overlay::kFontImageWidth, gl::overlay::kFontImageHeight, 1}, in createFont()
115 gl::overlay::kFontCount)); in createFont()
129 VkBufferImageCopy copy = {}; in createFont() local
130 copy.bufferRowLength = gl::overlay::kFontImageWidth; in createFont()
131 copy.bufferImageHeight = gl::overlay::kFontImageHeight; in createFont()
133 copy.imageSubresource.layerCount = gl::overlay::kFontCount; in createFont()
134 copy.imageExtent.width = gl::overlay::kFontImageWidth; in createFont()
135 copy.imageExtent.height = gl::overlay::kFontImageHeight; in createFont()
136 copy.imageExtent.depth = 1; in createFont()
[all …]
/dports/math/jts/jts-jts-1.18.1/modules/app/src/main/java/org/locationtech/jtstest/function/
H A DOverlayNGOptFunctions.java39 if (im.isCovers()) return b.copy(); in fastCoversIntersection()
40 if (im.isCoveredBy()) return a.copy(); in fastCoversIntersection()
51 if (! im.isIntersects()) return a.copy(); in fastCoversDifference()
83 if (pg.covers(b)) return b.copy(); in intersectionOrigPrep()
90 if (pg.covers(b)) return b.copy(); in intersectionOrigPrepNoCache()
105 if (pg.covers(b)) return b.copy(); in intersectionPrepSR()
112 return OverlayNGRobust.overlay(a, b, DIFFERENCE); in difference()
118 return OverlayNGRobust.overlay(a, b, INTERSECTION); in intersection()
132 if (pg.covers(b)) return b.copy(); in intersectionPrep()
133 return OverlayNGRobust.overlay(a, b, OverlayNG.INTERSECTION); in intersectionPrep()
[all …]
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/test/jts/perf/operation/overlayng/
H A DOverlayNGPerfTest.java15 import org.locationtech.jts.operation.overlay.OverlayOp;
189 overlay.setOptimized(false); in intersectionNGNoClip()
190 return overlay.getResult(); in intersectionNGNoClip()
195 overlay.setOptimized(false); in intersectionNGFloating()
196 return overlay.getResult(); in intersectionNGFloating()
202 if (pg.covers(b)) return b.copy(); in intersectionNGPrep()
220 return b.copy(); in fastintersectsPrepNoCache()
223 return a.copy(); in fastintersectsPrepNoCache()
234 return b.copy(); in fastIntersect()
236 return a.copy(); in fastIntersect()
[all …]
/dports/science/py-nilearn/nilearn-0.8.1/nilearn/reporting/
H A Dhtml_report.py2 import copy
66 params_str = copy.deepcopy(params)
73 def _update_template(title, docstring, content, overlay, argument
133 overlay=overlay,
154 overlay, image = None, displays[0]
157 overlay, image = displays[0], displays[1]
159 return overlay, image
191 overlay=None,
203 overlay=None,
209 overlay, image = _define_overlay(estimator)
[all …]
/dports/devel/elixir-distillery/distillery-1.5.2/lib/mix/lib/releases/
H A Doverlays.ex6 There are some preconfigured overlay variables, namely:
21 @typep overlay :: {:mkdir, String.t} | type
22 {:copy, String.t, String.t} |
29 {:error, {:overlay_failed, module, term, overlay}}
36 - {:invalid_overlay, term} - a malformed overlay object
37 - {:template_str, desc} - templating an overlay parameter failed
39 - {:overlay_failed, term, overlay} - applying an overlay failed
50 case do_overlay(output_dir, overlay, overlay_vars) do
57 {:error, {:overlay_failed, :file, {reason, overlay}}}
72 defp do_overlay(output_dir, {:copy, from, to}, vars) when is_binary(from) and is_binary(to) do
[all …]
/dports/databases/couchdb3/apache-couchdb-3.2.1/rel/
H A Dreltool.config2 % use this file except in compliance with the License. You may obtain a copy of
138 {overlay, [
139 {copy, "../LICENSE", "LICENSE"},
141 {copy, "overlay/bin"},
142 {copy, "overlay/etc"},
143 {copy, "../src/couch/priv/couchjs", "bin/couchjs"},
144 {copy, "../share/server/main.js", "share/server/main.js"},
146 {copy, "../src/weatherreport/weatherreport", "bin/weatherreport"},
148 {copy, "files/vm.args", "releases/\{\{rel_vsn\}\}/vm.args"},
149 {template, "overlay/etc/default.ini", "etc/default.ini"},
[all …]
/dports/www/firefox/firefox-99.0/browser/components/screenshots/
H A Djar.mn2 # License, v. 2.0. If a copy of the MPL was not distributed with this
8 content/browser/screenshots/copy.svg (content/copy.svg)
19 content/browser/screenshots/overlay/ (overlay/**)
22 % content screenshots-overlay %overlay/
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/overlayfs/
H A DKconfig6 An overlay filesystem combines two filesystems - an 'upper' filesystem
18 If this config option is enabled then overlay filesystems will use
25 an overlay which has redirects on a kernel that doesn't support this
49 If this config option is enabled then overlay filesystems will use
55 The inodes index feature prevents breaking of lower hardlinks on copy
76 The NFS export feature creates an index on copy up of every file and
84 That is, mounting an overlay which has a full index on a kernel
111 bool "Overlayfs: turn on metadata only copy up feature by default"
115 If this config option is enabled then overlay filesystems will
116 copy up only metadata where appropriate and data copy up will
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/fs/overlayfs/
H A DKconfig6 An overlay filesystem combines two filesystems - an 'upper' filesystem
18 If this config option is enabled then overlay filesystems will use
25 an overlay which has redirects on a kernel that doesn't support this
49 If this config option is enabled then overlay filesystems will use
55 The inodes index feature prevents breaking of lower hardlinks on copy
76 The NFS export feature creates an index on copy up of every file and
84 That is, mounting an overlay which has a full index on a kernel
111 bool "Overlayfs: turn on metadata only copy up feature by default"
115 If this config option is enabled then overlay filesystems will
116 copy up only metadata where appropriate and data copy up will
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/overlayfs/
H A DKconfig6 An overlay filesystem combines two filesystems - an 'upper' filesystem
18 If this config option is enabled then overlay filesystems will use
25 an overlay which has redirects on a kernel that doesn't support this
49 If this config option is enabled then overlay filesystems will use
55 The inodes index feature prevents breaking of lower hardlinks on copy
76 The NFS export feature creates an index on copy up of every file and
84 That is, mounting an overlay which has a full index on a kernel
111 bool "Overlayfs: turn on metadata only copy up feature by default"
115 If this config option is enabled then overlay filesystems will
116 copy up only metadata where appropriate and data copy up will
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/browser/locales/en-US/browser/
H A DeditBookmarkOverlay.ftl2 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 bookmark-overlay-name =
9 bookmark-overlay-location =
13 bookmark-overlay-folder =
16 bookmark-overlay-choose =
19 bookmark-overlay-folders-expander =
24 bookmark-overlay-new-folder-button =
28 bookmark-overlay-tags =
32 bookmark-overlay-tags-empty-description =
35 bookmark-overlay-tags-expander =
[all …]
/dports/graphics/py-geopandas/geopandas-0.10.2/geopandas/tests/
H A Dtest_overlay.py75 result = overlay(df1, df2, how=how)
161 expected = expected[expected.BoroCode.notnull()].copy()
285 df3 = df1.copy()
292 res1 = overlay(df1, df2, how=how)
293 res2 = overlay(df3, df2, how=how)
314 df4 = df2.copy()
321 res1 = overlay(df1, df2, how=how)
322 res2 = overlay(df1, df4, how=how)
364 overlay(df1, df2, how=how)
377 result = overlay(df1, df3)
[all …]
/dports/www/mod_perl2/mod_perl-2.0.11/t/lib/TestAPRlib/
H A Dtable.pm68 my $table_copy = $table->copy($pool);
227 my $overlay = $base->overlay($add, $pool);
229 my @foo = $overlay->get('foo');
230 my @bar = $overlay->get('bar');
235 my $overlay2 = $overlay->copy($pool);
238 $overlay->compress(APR::Const::OVERLAP_TABLES_MERGE);
240 ok t_cmp($overlay->get('foo'),
243 ok t_cmp($overlay->get('bar'),
248 $overlay->compress(APR::Const::OVERLAP_TABLES_SET);
320 my $table_copy = $table->copy($pool->new);
[all …]
/dports/devel/boost-docs/boost_1_72_0/boost/geometry/algorithms/detail/overlay/
H A Dintersection_insert.hpp279 using namespace overlay; in inside_or_outside_turn()
306 using namespace overlay; in simple_turns_analysis()
405 typedef detail::overlay::follow in apply()
469 LineStringOut copy; in apply() local
470 geometry::convert(linestring, copy); in apply()
471 *out++ = copy; in apply()
507 LineStringOut copy; in apply() local
508 geometry::convert(linestring, copy); in apply()
509 *out++ = copy; in apply()
724 > : detail::overlay::overlay
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/boost/geometry/algorithms/detail/overlay/
H A Dintersection_insert.hpp279 using namespace overlay; in inside_or_outside_turn()
306 using namespace overlay; in simple_turns_analysis()
405 typedef detail::overlay::follow in apply()
469 LineStringOut copy; in apply() local
470 geometry::convert(linestring, copy); in apply()
471 *out++ = copy; in apply()
507 LineStringOut copy; in apply() local
508 geometry::convert(linestring, copy); in apply()
509 *out++ = copy; in apply()
724 > : detail::overlay::overlay
[all …]
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/boost-1.70.0/include/boost/geometry/algorithms/detail/overlay/
H A Dintersection_insert.hpp297 using namespace overlay; in inside_or_outside_turn()
324 using namespace overlay; in simple_turns_analysis()
416 typedef detail::overlay::follow in apply()
475 LineStringOut copy; in apply() local
476 geometry::convert(linestring, copy); in apply()
477 *out++ = copy; in apply()
513 LineStringOut copy; in apply() local
514 geometry::convert(linestring, copy); in apply()
515 *out++ = copy; in apply()
726 > : detail::overlay::overlay
[all …]
/dports/devel/boost-libs/boost_1_72_0/boost/geometry/algorithms/detail/overlay/
H A Dintersection_insert.hpp279 using namespace overlay; in inside_or_outside_turn()
306 using namespace overlay; in simple_turns_analysis()
405 typedef detail::overlay::follow in apply()
469 LineStringOut copy; in apply() local
470 geometry::convert(linestring, copy); in apply()
471 *out++ = copy; in apply()
507 LineStringOut copy; in apply() local
508 geometry::convert(linestring, copy); in apply()
509 *out++ = copy; in apply()
724 > : detail::overlay::overlay
[all …]
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/boost_1.69.0/boost/geometry/algorithms/detail/overlay/
H A Dintersection_insert.hpp297 using namespace overlay;
324 using namespace overlay;
416 typedef detail::overlay::follow
475 LineStringOut copy;
476 geometry::convert(linestring, copy);
477 *out++ = copy;
513 LineStringOut copy;
514 geometry::convert(linestring, copy);
515 *out++ = copy;
726 > : detail::overlay::overlay
[all …]
/dports/www/firefox/firefox-99.0/browser/locales/en-US/browser/
H A DeditBookmarkOverlay.ftl2 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 bookmark-overlay-name-2 =
9 bookmark-overlay-url =
15 bookmark-overlay-location-2 =
19 bookmark-overlay-choose =
22 bookmark-overlay-folders-expander =
27 bookmark-overlay-new-folder-button =
31 bookmark-overlay-tags-2 =
35 bookmark-overlay-tags-empty-description =
38 bookmark-overlay-tags-expander =
[all …]
/dports/www/firefox-esr/firefox-91.8.0/browser/locales/en-US/browser/
H A DeditBookmarkOverlay.ftl2 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 bookmark-overlay-name-2 =
9 bookmark-overlay-url =
15 bookmark-overlay-location-2 =
19 bookmark-overlay-choose =
22 bookmark-overlay-folders-expander =
27 bookmark-overlay-new-folder-button =
31 bookmark-overlay-tags-2 =
35 bookmark-overlay-tags-empty-description =
38 bookmark-overlay-tags-expander =
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/browser/locales/en-US/browser/
H A DeditBookmarkOverlay.ftl2 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 bookmark-overlay-name-2 =
9 bookmark-overlay-url =
15 bookmark-overlay-location-2 =
19 bookmark-overlay-choose =
22 bookmark-overlay-folders-expander =
27 bookmark-overlay-new-folder-button =
31 bookmark-overlay-tags-2 =
35 bookmark-overlay-tags-empty-description =
38 bookmark-overlay-tags-expander =
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/layout/tools/layout-debug/ui/
H A Djar.mn2 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 % overlay chrome://browser/content/browser.xul chrome://layoutdebug/content/layoutdebug-overlay.xul
8 % overlay chrome://communicator/content/tasksOverlay.xul chrome://layoutdebug/content/layoutdebug-o…
12 content/layoutdebug/layoutdebug-overlay.xul (content/layoutdebug-overlay.xul)
14 locale/en-US/layoutdebug/layoutdebug-overlay.dtd (locale/en-US/layoutdebug-overlay.dtd)

12345678910>>...492