Searched refs:c4_Sequence (Results 1 - 15 of 15) sorted by relevance

/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/src/
H A Dderived.h16 class c4_Sequence; // not defined here
18 extern c4_Sequence *f4_CreateFilter(c4_Sequence &, c4_Cursor, c4_Cursor);
19 extern c4_Sequence *f4_CreateSort(c4_Sequence &, c4_Sequence * = 0);
20 extern c4_Sequence *f4_CreateProject(c4_Sequence &, c4_Sequence &, bool,
21 c4_Sequence *
[all...]
H A Dremap.h15 class c4_Sequence; // not defined here
17 extern c4_CustomViewer *f4_CreateReadOnly(c4_Sequence &);
18 extern c4_CustomViewer *f4_CreateHash(c4_Sequence &, int, c4_Sequence * = 0);
19 extern c4_CustomViewer *f4_CreateBlocked(c4_Sequence &);
20 extern c4_CustomViewer *f4_CreateOrdered(c4_Sequence &, int);
21 extern c4_CustomViewer *f4_CreateIndexed(c4_Sequence &, c4_Sequence &, const
H A Dcustom.h47 extern c4_CustomViewer *f4_CustSlice(c4_Sequence &, int, int, int);
48 extern c4_CustomViewer *f4_CustProduct(c4_Sequence &, const c4_View &);
49 extern c4_CustomViewer *f4_CustRemapWith(c4_Sequence &, const c4_View &);
50 extern c4_CustomViewer *f4_CustPair(c4_Sequence &, const c4_View &);
51 extern c4_CustomViewer *f4_CustConcat(c4_Sequence &, const c4_View &);
52 extern c4_CustomViewer *f4_CustRename(c4_Sequence &, const c4_Property &, const
54 extern c4_CustomViewer *f4_CustGroupBy(c4_Sequence &, const c4_View &, const
56 extern c4_CustomViewer *f4_CustJoinProp(c4_Sequence &, const c4_ViewProp &,
58 extern c4_CustomViewer *f4_CustJoin(c4_Sequence &, const c4_View &, const
H A Dstore.h21 void Add(c4_Sequence *seq_);
22 bool Remove(c4_Sequence *seq_);
30 c4_Sequence *_origin;
39 c4_Notifier(c4_Sequence *origin_);
63 class c4_DerivedSeq: public c4_Sequence {
65 c4_Sequence &_seq;
68 c4_DerivedSeq(c4_Sequence &seq_);
72 virtual int RemapIndex(int, const c4_Sequence*)const;
79 virtual const c4_Sequence *HandlerContext(int)const;
H A Dviewx.cpp6 * Implements c4_Sequence, c4_Reference, and c4_...Ref
16 c4_Sequence::c4_Sequence(): _refCount(0), _dependencies(0), _propertyLimit(0), function in class:c4_Sequence
19 c4_Sequence::~c4_Sequence() {
29 c4_Persist *c4_Sequence::Persist()const {
34 void c4_Sequence::IncRef() {
41 void c4_Sequence::DecRef() {
49 int c4_Sequence::NumRefs()const {
54 int c4_Sequence
[all...]
H A Dderived.cpp19 // class c4_Sequence;
36 c4_FilterSeq(c4_Sequence &seq_);
41 bool Match(int index_, c4_Sequence &seq_, const int * = 0, const int * = 0)
46 c4_FilterSeq(c4_Sequence &seq_, c4_Cursor low_, c4_Cursor high_);
48 virtual int RemapIndex(int, const c4_Sequence*)const;
66 c4_FilterSeq::c4_FilterSeq(c4_Sequence &seq_): c4_DerivedSeq(seq_) {
77 c4_FilterSeq::c4_FilterSeq(c4_Sequence &seq_, c4_Cursor low_, c4_Cursor high_):
83 c4_Sequence *lowSeq = (&_lowRow)._seq;
84 c4_Sequence *highSeq = (&_highRow)._seq;
164 c4_Sequence *lowSe
[all...]
H A Dcustom.cpp209 c4_SliceViewer(c4_Sequence &seq_, int first_, int limit_, int step_);
220 c4_SliceViewer::c4_SliceViewer(c4_Sequence &seq_, int first_, int limit_, int
277 c4_CustomViewer *f4_CustSlice(c4_Sequence &seq_, int first_, int limit_, int
288 c4_ProductViewer(c4_Sequence &seq_, const c4_View &view_);
296 c4_ProductViewer::c4_ProductViewer(c4_Sequence &seq_, const c4_View &view_):
328 c4_CustomViewer *f4_CustProduct(c4_Sequence &seq_, const c4_View &view_) {
338 c4_RemapWithViewer(c4_Sequence &seq_, const c4_View &view_);
347 c4_RemapWithViewer::c4_RemapWithViewer(c4_Sequence &seq_, const c4_View &view_)
379 c4_CustomViewer *f4_CustRemapWith(c4_Sequence &seq_, const c4_View &view_) {
389 c4_PairViewer(c4_Sequence
[all...]
H A Dstore.cpp30 void c4_Dependencies::Add(c4_Sequence *seq_) {
37 bool c4_Dependencies::Remove(c4_Sequence *seq_) {
59 c4_Sequence *seq = (c4_Sequence*)refs.GetAt(i);
131 c4_Sequence *seq = (c4_Sequence*)refs.GetAt(i);
410 c4_DerivedSeq::c4_DerivedSeq(c4_Sequence &seq_): _seq(seq_) {
418 int c4_DerivedSeq::RemapIndex(int index_, const c4_Sequence *seq_)const {
434 const c4_Sequence *c4_DerivedSeq::HandlerContext(int colNum_)const {
H A Dremap.cpp19 c4_ReadOnlyViewer(c4_Sequence &seq_): _base(&seq_){}
83 c4_HashViewer(c4_Sequence &seq_, int numKeys_, c4_Sequence *map_ = 0);
116 c4_HashViewer::c4_HashViewer(c4_Sequence &seq_, int numKeys_, c4_Sequence *map_)
482 c4_BlockedViewer(c4_Sequence &seq_);
523 c4_BlockedViewer::c4_BlockedViewer(c4_Sequence &seq_): _base(&seq_), _pBlock(
805 c4_OrderedViewer(c4_Sequence &seq_, int numKeys_);
819 c4_OrderedViewer::c4_OrderedViewer(c4_Sequence &seq_, int numKeys_): _base
929 c4_IndexedViewer(c4_Sequence
[all...]
H A Dhandler.h17 // class c4_Sequence;
85 class c4_HandlerSeq: public c4_Sequence {
101 virtual const c4_Sequence *HandlerContext(int)const;
H A Dview.cpp171 c4_View::c4_View(c4_Sequence *seq_): _seq(seq_) {
343 c4_Sequence *s1 = _seq;
344 c4_Sequence *s2 = dest_._seq;
428 c4_Sequence *seq = f4_CreateProject(*_seq, *up_._seq, true);
445 c4_Sequence *seq = f4_CreateProject(*_seq, *up_._seq, true);
832 c4_Sequence *refSeq = refView._seq;
895 c4_Cursor curr(*(c4_Sequence*)_seq, 0); // loses const
1021 c4_Sequence &rhSeq = *cursor._seq;
1040 c4_Sequence *seq = d4_new c4_HandlerSeq(0);
H A Dformat.cpp1037 d4_assert(buf_.Size() == sizeof(c4_Sequence*));
1094 d4_assert(b1_.Size() == sizeof(c4_Sequence*));
1095 d4_assert(b2_.Size() == sizeof(c4_Sequence*));
1097 c4_View v1 = *(c4_Sequence *const*)b1_.Contents();
1098 c4_View v2 = *(c4_Sequence *const*)b2_.Contents();
1104 d4_assert(buf_.Size() == sizeof(c4_Sequence*));
1108 d4_assert(*(c4_Sequence *const*)buf_.Contents() == 0);
1248 return sizeof(c4_Sequence*);
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/include/
H A Dmk4.h73 class c4_Sequence; // a collection of rows
228 c4_Sequence *_seq;
232 c4_View(c4_Sequence * = 0);
362 c4_Sequence *_seq;
368 c4_Cursor(c4_Sequence &, int);
825 class c4_Sequence { class
836 /// allocated on first use by c4_Sequence::Buffer()
842 c4_Sequence();
847 virtual int RemapIndex(int, const c4_Sequence*)const;
873 virtual const c4_Sequence *HandlerContex
[all...]
H A Dmk4dll.h52 class d4_DLL c4_Sequence; variable in typeref:class:d4_DLL
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/tcl/
H A Dmk4tcl.cpp979 void *tag = (&view_[0])._seq; // horrific hack to get at c4_Sequence pointer
1903 c4_Sequence *s = c._seq;

Completed in 152 milliseconds