DBA Data[Home] [Help]

MDSYS.SDO_UTIL dependencies on SDO_DIM_ARRAY

Line 34: dim IN mdsys.sdo_dim_array)

30: RETURN mdsys.sdo_geometry DETERMINISTIC PARALLEL_ENABLE;
31: PRAGMA restrict_references(append, wnds, wnps);
32:
33: FUNCTION ExtractVoids(geometry IN mdsys.sdo_geometry,
34: dim IN mdsys.sdo_dim_array)
35: RETURN mdsys.sdo_geometry DETERMINISTIC PARALLEL_ENABLE;
36: PRAGMA restrict_references(ExtractVoids, rnds, wnds, rnps, wnps, trust);
37:
38: FUNCTION GetVertices(geometry IN mdsys.sdo_geometry)

Line 56: dim IN mdsys.sdo_dim_array)

52: RETURN NUMBER PARALLEL_ENABLE;
53: PRAGMA restrict_references(GetNumVertices, rnds, wnds, rnps, wnps, trust);
54:
55: FUNCTION OuterLn(geometry IN mdsys.sdo_geometry,
56: dim IN mdsys.sdo_dim_array)
57: RETURN mdsys.sdo_geometry DETERMINISTIC PARALLEL_ENABLE;
58: PRAGMA restrict_references(OuterLn,rnds,wnds,rnps,wnps,trust);
59:
60: FUNCTION RefineMGon(mgon IN mdsys.sdo_geometry,

Line 62: dim IN mdsys.sdo_dim_array)

58: PRAGMA restrict_references(OuterLn,rnds,wnds,rnps,wnps,trust);
59:
60: FUNCTION RefineMGon(mgon IN mdsys.sdo_geometry,
61: gon IN mdsys.sdo_geometry,
62: dim IN mdsys.sdo_dim_array)
63: RETURN mdsys.sdo_geometry;
64: PRAGMA restrict_references(RefineMGon,rnds,wnds,rnps,wnps,trust);
65:
66: -- Determine whether or not a string contains a valid numeric value.

Line 150: FUNCTION remove_duplicates(geometry IN sdo_geometry, dim in sdo_dim_array)

146: geom2 IN mdsys.sdo_geometry,
147: tol IN number := 10e-16)
148: RETURN MDSYS.SDO_GEOMETRY DETERMINISTIC PARALLEL_ENABLE;
149:
150: FUNCTION remove_duplicates(geometry IN sdo_geometry, dim in sdo_dim_array)
151: return MDSYS.SDO_GEOMETRY DETERMINISTIC PARALLEL_ENABLE;
152:
153: FUNCTION remove_duplicate_vertices(geometry IN sdo_geometry,
154: tolerance in NUMBER)

Line 539: diminfo mdsys.sdo_dim_array,

535: RETURN mdsys.sdo_geometry DETERMINISTIC PARALLEL_ENABLE;
536: PRAGMA restrict_references(jsph_getnurbsapprox, rnds, wnds, rnps, wnps, trust);
537:
538: FUNCTION linear_key(geometry IN mdsys.sdo_geometry,
539: diminfo mdsys.sdo_dim_array,
540: lvl IN NUMBER := 8)
541: RETURN RAW DETERMINISTIC PARALLEL_ENABLE;
542:
543: FUNCTION linear_key(geometry IN mdsys.sdo_geometry,

Line 552: diminfo IN mdsys.sdo_dim_array,

548:
549: procedure insert_sdo_geom_metadata(owner IN VARCHAR2,
550: table_name IN VARCHAR2,
551: column_name IN VARCHAR2,
552: diminfo IN mdsys.sdo_dim_array,
553: srid IN number);
554:
555: END sdo_util;