Lines Matching defs:pos
217 const char* pos;
241 for (pos = colname; *pos != 0; pos++) {
242 if (*pos == '[') {
243 type_start = pos + 1;
245 else if (*pos == ']' && type_start != NULL) {
248 pos - type_start);
261 for (pos = decltype;;pos++) {
266 if (*pos == ' ' || *pos == '(' || *pos == 0) {
269 pos - decltype);
296 const char* pos;
300 for (pos = colname; *pos; pos++) {
301 if (*pos == '[') {
302 if ((pos != colname) && (*(pos-1) == ' ')) {
303 pos--;
308 len = pos - colname;
530 bind_param(pysqlite_state *state, pysqlite_Statement *self, int pos,
539 rc = sqlite3_bind_null(self->st, pos);
567 rc = sqlite3_bind_int64(self->st, pos, value);
576 rc = sqlite3_bind_double(self->st, pos, value);
589 rc = sqlite3_bind_text(self->st, pos, string, (int)buflen, SQLITE_TRANSIENT);
602 rc = sqlite3_bind_blob(self->st, pos, view.buf, (int)view.len, SQLITE_TRANSIENT);
609 pos, Py_TYPE(parameter)->tp_name);