Home
last modified time | relevance | path

Searched refs:findBounds (Results 1 – 20 of 20) sorted by relevance

/dports/lang/nim/nim-1.6.2/lib/impure/
H A Dre.nim148 proc findBounds*(buf: cstring, pattern: Regex, matches: var openArray[string],
168 proc findBounds*(s: string, pattern: Regex, matches: var openArray[string],
174 result = findBounds(cstring(s), pattern, matches,
177 proc findBounds*(buf: cstring, pattern: Regex,
198 proc findBounds*(s: string, pattern: Regex,
205 result = findBounds(cstring(s), pattern, matches,
220 proc findBounds*(buf: cstring, pattern: Regex,
233 proc findBounds*(s: string, pattern: Regex,
240 assert findBounds("01234abc89", re"abc") == (5,7)
241 result = findBounds(cstring(s), pattern,
[all …]
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/client/src/world/base/
H A Dsubsector.cpp50 AABoxd findBounds() const in DENG2_PIMPL_NOREF()
192 d->bounds.reset(new AABoxd(d->findBounds())); in bounds()
H A Dsector.cpp169 gd->bounds = findBounds(); in DENG2_PIMPL()
184 AABoxd findBounds() const in DENG2_PIMPL()
/dports/games/scourge/scourge/src/render/
H A DMd2.h105 static void findBounds( t3DModel *pModel, vect3d min, vect3d max );
H A Dmodelwrapper.cpp365 if ( md2 ) CLoadMD2::findBounds( md2, min, max ); in normalizeModel()
366 else if ( md3 ) md3->findBounds( min, max ); in normalizeModel()
H A DMd3.h211 void findBounds( vect3d min, vect3d max );
H A DMd2.cpp264 void CLoadMD2::findBounds( t3DModel *pModel, vect3d min, vect3d max ) { in findBounds() function in CLoadMD2
H A DMd3.cpp1345 void CModelMD3::findBounds( vect3d min, vect3d max ) { in findBounds() function in CModelMD3
/dports/astro/gpstk/GPSTk-8.0.0/ext/lib/GNSSEph/
H A DOrbSysStore.hpp222 std::pair<const OrbDataSys*, const OrbDataSys*> findBounds(const SatID& sat,
H A DOrbSysStore.cpp125 findBounds(sidr,navtype,UID,ct); in addMessage()
1038 OrbSysStore::findBounds(const SatID& sat, in findBounds() function in gpstk::OrbSysStore
/dports/lang/nim/nim-1.6.2/tests/stdlib/
H A Dtre.nim19 doAssert findBounds("_____abc_______", re"abc") == (5,7)
/dports/math/cvc3/cvc3-2.4.1/src/include/
H A Dtheory_arith3.h254 bool findBounds(const Expr& e, Rational& lub, Rational& glb);
H A Dtheory_arith_new.h201 bool findBounds(const Expr& e, Rational& lub, Rational& glb);
H A Dtheory_arith_old.h281 bool findBounds(const Expr& e, Rational& lub, Rational& glb);
/dports/graphics/tiled/tiled-1.7.2/src/plugins/python/scripts/
H A Dpk2.py209 def findBounds(self): member in PK2MAPLAYER
/dports/math/cvc3/cvc3-2.4.1/src/theory_arith/
H A Dtheory_arith3.cpp2197 TheoryArith3::findBounds(const Expr& e, Rational& lub, Rational& glb) in findBounds() function in TheoryArith3
2263 strictLB = findBounds(e, lub, glb); in assignVariables()
H A Dtheory_arith_new.cpp1348 TheoryArithNew::findBounds(const Expr& e, Rational& lub, Rational& glb) in findBounds() function in TheoryArithNew
1414 strictLB = findBounds(e, lub, glb); in assignVariables()
H A Dtheory_arith_old.cpp2780 TheoryArithOld::findBounds(const Expr& e, Rational& lub, Rational& glb) in findBounds() function in TheoryArithOld
2862 strictLB = findBounds(e, lub, glb); in assignVariables()
/dports/lang/nim/nim-1.6.2/tools/
H A Dnimgrep.nim688 let t = findBounds(buffer, pattern, matches, i)
/dports/lang/nim/nim-1.6.2/lib/pure/
H A Dpegs.nim1126 func findBounds*(s: string, pattern: Peg, matches: var openArray[string],