HomeSort by: relevance | last modified time | path
    Searched refs:COMPLETE (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/include/arpa/
ftp.h 43 #define COMPLETE 2 /* positive completion */
  /src/external/gpl3/gdb.old/dist/gdb/
ada-lex.l 44 COMPLETE "\001"
248 {TICK}([a-z][a-z_]*)?{COMPLETE}? { BEGIN INITIAL; return processAttribute (yytext); }
286 "."{WHITE}*{ID}{COMPLETE}? {
293 "."{WHITE}*{COMPLETE} {
299 {ID}({WHITE}*"."{WHITE}*({ID}|\"{OPER}\"))*(" "*"'"|{COMPLETE})? {
727 ada_tick_completer::complete (struct expression *exp,
c-exp.y 202 %token <voidval> COMPLETE
375 exp : exp ARROW field_name COMPLETE
385 exp : exp ARROW COMPLETE
401 exp : exp ARROW '~' name COMPLETE
435 exp : exp '.' field_name COMPLETE
445 exp : exp '.' COMPLETE
461 exp : exp '.' '~' name COMPLETE
1513 | STRUCT COMPLETE
1519 | STRUCT name COMPLETE
1530 | CLASS COMPLETE
    [all...]
d-exp.y 115 %token <voidval> COMPLETE
352 | PostfixExpression '.' COMPLETE
364 | PostfixExpression '.' IDENTIFIER COMPLETE
1061 token allows such completion, return a COMPLETE token.
1067 return COMPLETE;
1070 return COMPLETE;
go-exp.y 139 %token <voidval> COMPLETE
247 exp : exp '.' name_not_typename COMPLETE
257 exp : exp '.' COMPLETE
1014 return COMPLETE;
1017 return COMPLETE;
f-exp.y 162 %token <voidval> COMPLETE
468 exp : exp '%' name COMPLETE
478 exp : exp '%' COMPLETE
1483 return COMPLETE;
1486 return COMPLETE;
p-exp.y 144 %token <voidval> COMPLETE
285 exp : field_exp name COMPLETE
294 exp : field_exp COMPLETE
1119 return COMPLETE;
rust-parse.c 89 COMPLETE,
352 complete. */
862 /* Prevent rustyylex from returning two COMPLETE tokens. */
864 return COMPLETE;
1067 /* If we hit EOF and we're completing, then return COMPLETE -- maybe
1069 But, we don't want to return two COMPLETE tokens in a row. */
1079 return COMPLETE;
1547 case COMPLETE:
1549 bool is_complete = current_token == COMPLETE;
2270 const int expected[] = { IDENT, '.', COMPLETE, 0 }
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
ada-lex.l 44 COMPLETE "\001"
248 {TICK}([a-z][a-z_]*)?{COMPLETE}? { BEGIN INITIAL; return processAttribute (yytext); }
286 "."{WHITE}*{ID}{COMPLETE}? {
293 "."{WHITE}*{COMPLETE} {
299 {ID}({WHITE}*"."{WHITE}*({ID}|\"{OPER}\"))*(" "*"'"|{COMPLETE})? {
727 ada_tick_completer::complete (struct expression *exp,
c-exp.y 202 %token <voidval> COMPLETE
375 exp : exp ARROW field_name COMPLETE
385 exp : exp ARROW COMPLETE
401 exp : exp ARROW '~' name COMPLETE
435 exp : exp '.' field_name COMPLETE
445 exp : exp '.' COMPLETE
461 exp : exp '.' '~' name COMPLETE
1513 | STRUCT COMPLETE
1519 | STRUCT name COMPLETE
1530 | CLASS COMPLETE
    [all...]
d-exp.y 115 %token <voidval> COMPLETE
352 | PostfixExpression '.' COMPLETE
364 | PostfixExpression '.' IDENTIFIER COMPLETE
1061 token allows such completion, return a COMPLETE token.
1067 return COMPLETE;
1070 return COMPLETE;
go-exp.y 139 %token <voidval> COMPLETE
247 exp : exp '.' name_not_typename COMPLETE
257 exp : exp '.' COMPLETE
1014 return COMPLETE;
1017 return COMPLETE;
f-exp.y 162 %token <voidval> COMPLETE
468 exp : exp '%' name COMPLETE
478 exp : exp '%' COMPLETE
1483 return COMPLETE;
1486 return COMPLETE;
p-exp.y 144 %token <voidval> COMPLETE
285 exp : field_exp name COMPLETE
294 exp : field_exp COMPLETE
1119 return COMPLETE;
rust-parse.c 89 COMPLETE,
356 complete. */
866 /* Prevent rustyylex from returning two COMPLETE tokens. */
868 return COMPLETE;
1081 /* If we hit EOF and we're completing, then return COMPLETE -- maybe
1083 But, we don't want to return two COMPLETE tokens in a row. */
1093 return COMPLETE;
1561 case COMPLETE:
1563 bool is_complete = current_token == COMPLETE;
2280 const int expected[] = { IDENT, '.', COMPLETE, 0 }
    [all...]
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
cooked-index-entry.c 77 if (mode == COMPLETE && b == '\0')
93 const auto mode_complete = cooked_index_entry::COMPLETE;
cooked-index-entry.h 152 COMPLETE,
182 MODE==COMPLETE is used when searching for a symbol for
cooked-index-shard.c 329 ? cooked_index_entry::COMPLETE
  /src/usr.bin/ftp/
ftp.c 1304 result = COMPLETE + 1;
1315 (result == COMPLETE || !connected))
1327 result = COMPLETE + 1;
1329 if (result != COMPLETE) {
1335 if (result != COMPLETE) {
1352 (result == COMPLETE || !connected))
1364 result = COMPLETE + 1;
1366 if (result != COMPLETE) {
1372 if (result != COMPLETE) {
1381 result = COMPLETE + 1
    [all...]
util.c 203 if (command("SYST") == COMPLETE) {
252 if (command("FEAT") == COMPLETE) {
464 if ((n != COMPLETE) ||
465 (!aflag && facct != NULL && command("ACCT %s", facct) != COMPLETE)) {
588 if ((code / 100) != COMPLETE) {
667 if (r == COMPLETE) {
711 if (r == COMPLETE) {
848 if (command("PWD") != COMPLETE)
1013 el_set(el, EL_ADDFN, "ftp-complete",
1015 complete);
    [all...]
cmds.c 263 if (comret == COMPLETE) {
296 if (comret == COMPLETE)
1157 if (r == COMPLETE) {
1210 if (command("DELE %s", argv[1]) == COMPLETE)
1240 if (command("DELE %s", cp) == COMPLETE)
1272 command("RNTO %s", argv[2]) == COMPLETE)
1521 if (n != COMPLETE) {
1600 if (r == COMPLETE)
1625 if (r == COMPLETE)
2378 if (r == COMPLETE) {
    [all...]
fetch.c 2279 if ((code / 100) == COMPLETE)
2508 if ((code / 100) != COMPLETE)
2514 if ((code / 100) != COMPLETE) {
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
cooked-index.c 122 if (mode == COMPLETE || (mode == MATCH && c1 == munge ('<')))
141 const auto mode_complete = cooked_index_entry::COMPLETE;
446 ? cooked_index_entry::COMPLETE
cooked-index.h 155 COMPLETE,
185 MODE==COMPLETE is used when searching for a symbol for
460 Finalization has started but is not complete. */
  /src/bin/ksh/
vi.c 193 enum expand_mode { NONE, EXPAND, COMPLETE, PRINT };
2009 if (commandx == 0 && expanded == COMPLETE && buf) {
2070 expanded = COMPLETE; /* next call will list completions */
2084 * to be used (ie, complete the next portion of the path).

Completed in 48 milliseconds

1 2