Lines Matching refs:stok
649 char *stok; in cs_cnt_matches() local
678 if ((stok = strtok(buf, (const char *)" ")) == NULL) in cs_cnt_matches()
680 if (strstr((const char *)stok, "cscope:") == NULL) in cs_cnt_matches()
683 if ((stok = strtok(NULL, (const char *)" ")) == NULL) in cs_cnt_matches()
685 nlines = atoi(stok); in cs_cnt_matches()
692 if ((stok = strtok(NULL, (const char *)" ")) == NULL) in cs_cnt_matches()
694 if (strncmp((const char *)stok, "lines", 5)) in cs_cnt_matches()
1443 char *stok; in cs_lookup_cmd() local
1452 if ((stok = strtok((char *)(eap->arg), (const char *)" ")) == NULL) in cs_lookup_cmd()
1455 len = strlen(stok); in cs_lookup_cmd()
1458 if (strncmp((const char *)(stok), cmdp->name, len) == 0) in cs_lookup_cmd()
1471 char *stok; in cs_kill() local
1474 if ((stok = strtok((char *)NULL, (const char *)" ")) == NULL) in cs_kill()
1481 if ((strlen(stok) < 2 && VIM_ISDIGIT((int)(stok[0]))) in cs_kill()
1482 || (strlen(stok) < 3 && stok[0] == '-' in cs_kill()
1483 && VIM_ISDIGIT((int)(stok[1])))) in cs_kill()
1484 i = atoi(stok); in cs_kill()
1491 if (csinfo[i].fname != NULL && strstr(csinfo[i].fname, stok)) in cs_kill()
1499 (void)semsg(_("E261: cscope connection %s not found"), stok); in cs_kill()
1512 cs_kill_execute(i, stok); in cs_kill()