Searched refs:PyRowRef (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/python/
H A DPyRowRef.cpp0 // PyRowRef.cpp --
2 // $Id: PyRowRef.cpp 1230 2007-03-09 15:58:53Z jcw $
10 #include "PyRowRef.h"
23 static void PyRowRef_dealloc(PyRowRef *o) {
24 //o->~PyRowRef();
28 static int PyRowRef_print(PyRowRef *o, FILE *f, int) {
29 fprintf(f, "<PyRowRef object at %p>", (void*)o);
33 static int PyRORowRef_print(PyRowRef *o, FILE *f, int) {
38 static PyObject *PyRowRef_getattr(PyRowRef *o, char *nm) {
66 static int PyRowRef_setattr(PyRowRef *
110 PyRowRef::PyRowRef(const c4_RowRef &o, int immutable): PyHead(PyRowReftype), function in class:PyRowRef
[all...]
H A DPyRowRef.h0 // PyRowRef.h --
2 // $Id: PyRowRef.h 1230 2007-03-09 15:58:53Z jcw $
24 class PyRowRef: public PyHead, public c4_RowRef { class in inherits:PyHead,c4_RowRef
26 //PyRowRef();
27 PyRowRef(const c4_RowRef &o, int immutable = 0);
28 //PyRowRef(c4_Row row);
29 ~PyRowRef() {
H A DPyView.h24 class PyRowRef;
46 PyRowRef *getItem(int i);
H A DPyView.cpp11 #include "PyRowRef.h"
1356 PyRowRef::setFromPython(tmp, prop, dict[(const char*)key]);
1411 PyRowRef::setFromPython(tmp, prop, attr);
1420 PyRowRef::setDefault(tmp, prop);
1507 PyRowRef *PyView::getItem(int i) {
1516 return new PyRowRef(_base->GetAt(ndx), _state &IMMUTABLEROWS);
1518 return new PyRowRef(GetAt(i), _state &IMMUTABLEROWS);
1523 return setItemRow(i, *(PyRowRef*)v);
1540 PyRowRef *row = new PyRowRef(GetA
[all...]
H A DPyStorage.cpp14 #include "PyRowRef.h"
450 PyRowRef::setFromPython(_tempRow, prop, item[col_]);
456 PyRowRef::setFromPython(_tempRow, prop, attr);
461 PyRowRef::setFromPython(_tempRow, prop, attr);
465 PyRowRef::setFromPython(_tempRow, prop, _data[row_]);
483 PyRowRef r(one); // careful, stack-based temp

Completed in 176 milliseconds