HomeSort by: relevance | last modified time | path
    Searched defs:subexps (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gdb.old/dist/gdb/
ui-style.c 233 regmatch_t subexps[NUM_SUBEXPRESSIONS]; local
235 int match = regexec (&ansi_regex, buf, ARRAY_SIZE (subexps), subexps, 0);
244 gdb_assert (subexps[0].rm_so == 0);
246 gdb_assert (subexps[FINAL_SUBEXP].rm_eo - subexps[FINAL_SUBEXP].rm_so == 1);
248 if (buf[subexps[FINAL_SUBEXP].rm_so] != 'm')
251 *n_read = subexps[0].rm_eo;
263 if (subexps[DATA_SUBEXP].rm_so == subexps[DATA_SUBEXP].rm_eo
400 regmatch_t subexps[NUM_SUBEXPRESSIONS]; local
    [all...]
rust-parse.c 906 regmatch_t subexps[NUM_SUBEXPRESSIONS]; local
916 match = regexec (&number_regex, pstate->lexptr, ARRAY_SIZE (subexps),
917 subexps, 0);
921 if (subexps[INT_TEXT].rm_so != -1)
925 end_index = subexps[INT_TEXT].rm_eo;
926 if (subexps[INT_TYPE].rm_so == -1)
937 else if (subexps[FLOAT_TYPE1].rm_so != -1)
940 end_index = subexps[FLOAT_TYPE1].rm_so;
943 else if (subexps[FLOAT_TYPE2].rm_so != -1)
946 end_index = subexps[FLOAT_TYPE2].rm_so
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
ui-style.c 378 regmatch_t subexps[NUM_SUBEXPRESSIONS]; local
380 int match = ansi_regex.exec (buf, ARRAY_SIZE (subexps), subexps, 0);
389 if (subexps[FINAL_SUBEXP].rm_so == -1)
398 gdb_assert (subexps[0].rm_so == 0);
400 gdb_assert (subexps[FINAL_SUBEXP].rm_eo - subexps[FINAL_SUBEXP].rm_so == 1);
402 if (buf[subexps[FINAL_SUBEXP].rm_so] != 'm')
405 *n_read = subexps[0].rm_eo;
417 if (subexps[DATA_SUBEXP].rm_so == subexps[DATA_SUBEXP].rm_eo
572 regmatch_t subexps[NUM_SUBEXPRESSIONS]; local
    [all...]
rust-parse.c 930 regmatch_t subexps[NUM_SUBEXPRESSIONS]; local
939 match = regexec (&number_regex, pstate->lexptr, ARRAY_SIZE (subexps),
940 subexps, 0);
944 if (subexps[INT_TEXT].rm_so != -1)
948 end_index = subexps[INT_TEXT].rm_eo;
949 if (subexps[INT_TYPE].rm_so == -1)
957 else if (subexps[FLOAT_TYPE1].rm_so != -1)
960 end_index = subexps[FLOAT_TYPE1].rm_so;
963 else if (subexps[FLOAT_TYPE2].rm_so != -1)
966 end_index = subexps[FLOAT_TYPE2].rm_so
    [all...]

Completed in 15 milliseconds