Home
last modified time | relevance | path

Searched refs:lInsert (Results 1 – 25 of 27) sorted by relevance

12

/dports/math/singular/Singular-Release-4-2-1/Singular/
H A Dlists.h54 BOOLEAN lInsert(leftv res, leftv u, leftv v);
H A Dlists.cc120 BOOLEAN lInsert(leftv res, leftv u, leftv v) in lInsert() function
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/fpvectorial/
H A Dsvgvectorialreader.pas3212 lInsert: TvInsert;
3244 lInsert := TvInsert.Create(nil);
3245 lInsert.InsertEntity := lInsertedEntity;
3246 lInsert.x := lx;
3247 lInsert.y := ly;
3257 ReadSVGStyle(AData, lNodeValue, lInsert);
3261 lInsert.SetElements += ReadSVGPenStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3262 lInsert.SetElements += ReadSVGBrushStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3263 lInsert.SetElements += ReadSVGFontStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3272 lInsert.Y := lInsert.Y - AData.Height;
[all …]
H A Dfpvectorial.pas9593 lInsert: TvInsert;
9595 lInsert := TvInsert.Create(Self);
9596 lInsert.X := AX;
9597 lInsert.Y := AY;
9598 lInsert.InsertEntity := AInsertEntity;
9599 AddEntity(lInsert);
9600 Result := lInsert;
/dports/editors/lazarus/lazarus/components/fpvectorial/
H A Dsvgvectorialreader.pas3212 lInsert: TvInsert;
3244 lInsert := TvInsert.Create(nil);
3245 lInsert.InsertEntity := lInsertedEntity;
3246 lInsert.x := lx;
3247 lInsert.y := ly;
3257 ReadSVGStyle(AData, lNodeValue, lInsert);
3261 lInsert.SetElements += ReadSVGPenStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3262 lInsert.SetElements += ReadSVGBrushStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3263 lInsert.SetElements += ReadSVGFontStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3272 lInsert.Y := lInsert.Y - AData.Height;
[all …]
H A Dfpvectorial.pas9593 lInsert: TvInsert;
9595 lInsert := TvInsert.Create(Self);
9596 lInsert.X := AX;
9597 lInsert.Y := AY;
9598 lInsert.InsertEntity := AInsertEntity;
9599 AddEntity(lInsert);
9600 Result := lInsert;
/dports/editors/lazarus-qt5/lazarus/components/fpvectorial/
H A Dsvgvectorialreader.pas3212 lInsert: TvInsert;
3244 lInsert := TvInsert.Create(nil);
3245 lInsert.InsertEntity := lInsertedEntity;
3246 lInsert.x := lx;
3247 lInsert.y := ly;
3257 ReadSVGStyle(AData, lNodeValue, lInsert);
3261 lInsert.SetElements += ReadSVGPenStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3262 lInsert.SetElements += ReadSVGBrushStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3263 lInsert.SetElements += ReadSVGFontStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3272 lInsert.Y := lInsert.Y - AData.Height;
[all …]
H A Dfpvectorial.pas9593 lInsert: TvInsert;
9595 lInsert := TvInsert.Create(Self);
9596 lInsert.X := AX;
9597 lInsert.Y := AY;
9598 lInsert.InsertEntity := AInsertEntity;
9599 AddEntity(lInsert);
9600 Result := lInsert;
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/fpvectorial/
H A Dsvgvectorialreader.pas3212 lInsert: TvInsert;
3244 lInsert := TvInsert.Create(nil);
3245 lInsert.InsertEntity := lInsertedEntity;
3246 lInsert.x := lx;
3247 lInsert.y := ly;
3257 ReadSVGStyle(AData, lNodeValue, lInsert);
3261 lInsert.SetElements += ReadSVGPenStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3262 lInsert.SetElements += ReadSVGBrushStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3263 lInsert.SetElements += ReadSVGFontStyleWithKeyAndValue(lNodeName, lNodeValue, lInsert);
3272 lInsert.Y := lInsert.Y - AData.Height;
[all …]
H A Dfpvectorial.pas9593 lInsert: TvInsert;
9595 lInsert := TvInsert.Create(Self);
9596 lInsert.X := AX;
9597 lInsert.Y := AY;
9598 lInsert.InsertEntity := AInsertEntity;
9599 AddEntity(lInsert);
9600 Result := lInsert;
/dports/databases/pecl-redis/redis-5.3.5/
H A Dphp_redis.h63 PHP_METHOD(Redis, lInsert);
H A DREADME.markdown1846 * [lInsert](#linsert) - Insert an element before or after another element in a list
1948 ### lInsert subsection
1967 $redis->lInsert('key1', Redis::AFTER, 'A', 'X'); /* 0 */
1973 $redis->lInsert('key1', Redis::BEFORE, 'C', 'X'); /* 4 */
1976 $redis->lInsert('key1', Redis::AFTER, 'C', 'Y'); /* 5 */
1979 $redis->lInsert('key1', Redis::AFTER, 'W', 'value'); /* -1 */
H A Dredis.c344 PHP_ME(Redis, lInsert, arginfo_linsert, ZEND_ACC_PUBLIC)
1529 PHP_METHOD(Redis, lInsert) in PHP_METHOD() argument
/dports/textproc/zorba/zorba-2.7.0/src/compiler/codegen/
H A Dplan_visitor.cpp3305 PlanIter_t lInsert = new InsertIterator(sctx, qloc, v.getType(), lSource, lTarget); in end_visit() local
3306 push_itstack(&*lInsert); in end_visit()
/dports/databases/pecl-redis/redis-5.3.5/tests/
H A DRedisTest.php996 … $this->assertTrue($this->redis->lInsert('keyNotExists', Redis::AFTER, 'val1', 'val2') === 0);
997 $this->assertTrue($this->redis->lInsert('key', Redis::BEFORE, 'valX', 'val2') === -1);
999 $this->assertTrue($this->redis->lInsert('key', Redis::AFTER, 'val0', 'val1') === 2);
1000 $this->assertTrue($this->redis->lInsert('key', Redis::BEFORE, 'val0', 'val2') === 3);
4396 $this->assertTrue($this->redis->lInsert('key', Redis::BEFORE, $a[0], [1,2,3]) === 4);
4397 $this->assertTrue($this->redis->lInsert('key', Redis::AFTER, $a[0], [4,5,6]) === 5);
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/go-redis/redis/
H A Dcommands_test.go1546 lInsert := client.LInsert("list", "BEFORE", "World", "There")
1547 Expect(lInsert.Err()).NotTo(HaveOccurred())
1548 Expect(lInsert.Val()).To(Equal(int64(3)))
/dports/multimedia/livego/livego-0.0.15/vendor/github.com/go-redis/redis/v7/
H A Dcommands_test.go1601 lInsert := client.LInsert("list", "BEFORE", "World", "There")
1602 Expect(lInsert.Err()).NotTo(HaveOccurred())
1603 Expect(lInsert.Val()).To(Equal(int64(3)))
/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/go-redis/redis/v7/
H A Dcommands_test.go1601 lInsert := client.LInsert("list", "BEFORE", "World", "There")
1602 Expect(lInsert.Err()).NotTo(HaveOccurred())
1603 Expect(lInsert.Val()).To(Equal(int64(3)))
/dports/devel/pecl-swoole/swoole-4.8.5/ext-src/
H A Dswoole_redis_coro.cc1854 static PHP_METHOD(swoole_redis_coro, lInsert);
2035 PHP_ME(swoole_redis_coro, lInsert, arginfo_swoole_redis_coro_lInsert, ZEND_ACC_PUBLIC)
4180 static PHP_METHOD(swoole_redis_coro, lInsert) { in PHP_METHOD() argument
/dports/security/vuls/vuls-0.13.7/vendor/github.com/go-redis/redis/v8/
H A Dcommands_test.go1657 lInsert := client.LInsert(ctx, "list", "BEFORE", "World", "There")
1658 Expect(lInsert.Err()).NotTo(HaveOccurred())
1659 Expect(lInsert.Val()).To(Equal(int64(3)))
/dports/security/go-cve-dictionary/go-cve-dictionary-0.5.5/vendor/github.com/go-redis/redis/v8/
H A Dcommands_test.go1657 lInsert := client.LInsert(ctx, "list", "BEFORE", "World", "There")
1658 Expect(lInsert.Err()).NotTo(HaveOccurred())
1659 Expect(lInsert.Val()).To(Equal(int64(3)))
/dports/www/oauth2-proxy/oauth2-proxy-7.2.0/vendor/github.com/go-redis/redis/v8/
H A Dcommands_test.go1644 lInsert := client.LInsert(ctx, "list", "BEFORE", "World", "There")
1645 Expect(lInsert.Err()).NotTo(HaveOccurred())
1646 Expect(lInsert.Val()).To(Equal(int64(3)))
/dports/net/storj/storj-1.45.3/vendor/github.com/go-redis/redis/v8/
H A Dcommands_test.go1958 lInsert := client.LInsert(ctx, "list", "BEFORE", "World", "There")
1959 Expect(lInsert.Err()).NotTo(HaveOccurred())
1960 Expect(lInsert.Val()).To(Equal(int64(3)))
/dports/games/automuteus/automuteus-6.15.2/vendor/github.com/go-redis/redis/v8/
H A Dcommands_test.go1965 lInsert := client.LInsert(ctx, "list", "BEFORE", "World", "There")
1966 Expect(lInsert.Err()).NotTo(HaveOccurred())
1967 Expect(lInsert.Val()).To(Equal(int64(3)))
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/go-redis/redis/v8/
H A Dcommands_test.go2016 lInsert := client.LInsert(ctx, "list", "BEFORE", "World", "There")
2017 Expect(lInsert.Err()).NotTo(HaveOccurred())
2018 Expect(lInsert.Val()).To(Equal(int64(3)))

12