/external/e2fsprogs/ext2ed/ |
D | general_com.c | 42 if (current_type!=NULL) { in help() 44 wprintw (show_pad,"Type %s specific commands:\n",current_type->name);max_line++; in help() 46 if (current_type->type_commands.last_command==-1) { in help() 50 for (i=0;i<=current_type->type_commands.last_command;i++) { in help() 54 wprintw (show_pad,"%-13s",current_type->type_commands.names [i]); in help() 115 if (current_type != NULL) in detailed_help() 116 for (i=0;i<=current_type->type_commands.last_command;i++) { in detailed_help() 117 if (strcmp (current_type->type_commands.names [i],text)==0) { in detailed_help() 118 wprintw (show_pad,"%s - %s\n",text,current_type->type_commands.descriptions [i]); in detailed_help() 181 current_type=NULL; /* There is no type now */ in set_device() [all …]
|
D | main.c | 78 struct struct_descriptor *first_type,*last_type,*current_type; /* Used to access the double linked … variable 371 if (current_type != NULL) in dispatch() 373 i<=current_type->type_commands.last_command && !found; in dispatch() 375 if (strcasecmp (command,current_type->type_commands.names [i])==0) { in dispatch() 376 (*current_type->type_commands.callback [i]) (command_line); in dispatch() 472 if (current_type != NULL) in complete_command() 473 for (i=0;i<=current_type->type_commands.last_command;i++) { in complete_command() 474 if (strncmp (current_type->type_commands.names [i],text,len)==0) { in complete_command() 477 return (dupstr (current_type->type_commands.names [i])); in complete_command()
|
D | disk.c | 211 if (current_type!=NULL) in load_type_data() 212 if (strcmp (current_type->name,"ext2_dir_entry")==0) in load_type_data() 213 current_type->length=type_data.u.t_ext2_dir_entry.rec_len; in load_type_data()
|
D | win.c | 178 if (current_type != NULL) in show_info() 179 wprintw (show_win,"Type: %s\n",current_type->name); in show_info()
|
D | init.c | 62 current_type=NULL; /* No filesystem specific types yet */ in init() 169 first_type=last_type=current_type=NULL; in free_struct_descriptors()
|
D | ext2ed.h | 213 extern struct struct_descriptor *current_type;
|
/external/dbus/tools/ |
D | dbus-print-message.c | 109 int current_type; in print_ay() local 111 while ((current_type = dbus_message_iter_get_arg_type (iter)) in print_ay() 287 int current_type; in print_iter() local 292 current_type = dbus_message_iter_get_arg_type (&subiter); in print_iter() 294 if (current_type == DBUS_TYPE_BYTE) in print_iter() 301 while (current_type != DBUS_TYPE_INVALID) in print_iter() 306 current_type = dbus_message_iter_get_arg_type (&subiter); in print_iter() 308 if (current_type != DBUS_TYPE_INVALID) in print_iter() 332 int current_type; in print_iter() local 338 while ((current_type = dbus_message_iter_get_arg_type (&subiter)) != DBUS_TYPE_INVALID) in print_iter()
|
/external/bison/src/ |
D | parse-gram.y | 55 static uniqstr current_type = 0; variable 306 current_type = NULL; 311 current_type = NULL; 329 symbol_type_set (list->sym, current_type, @2); 333 current_type = NULL; 344 /* Nothing. */ { current_type = NULL; } 345 | TYPE { current_type = $1; } 359 current_type = $1; 364 symbol_type_set ($1, current_type, @1); 369 symbol_type_set ($1, current_type, @1); [all …]
|
D | parse-gram.c | 240 static uniqstr current_type = 0; variable 1953 current_type = NULL; 1966 current_type = NULL; 1987 symbol_type_set (list->sym, current_type, (yylsp[(2) - (3)])); 1991 current_type = NULL; 2012 { current_type = NULL; } 2017 { current_type = (yyvsp[(1) - (1)].uniqstr); } 2033 current_type = (yyvsp[(1) - (1)].uniqstr); 2041 symbol_type_set ((yyvsp[(1) - (1)].symbol), current_type, (yylsp[(1) - (1)])); 2049 symbol_type_set ((yyvsp[(1) - (2)].symbol), current_type, (yylsp[(1) - (2)])); [all …]
|
/external/dbus/dbus/ |
D | dbus-marshal-byteswap.c | 42 int current_type; in byteswap_body_helper() local 44 while ((current_type = _dbus_type_reader_get_current_type (reader)) != DBUS_TYPE_INVALID) in byteswap_body_helper() 46 switch (current_type) in byteswap_body_helper() 98 if (current_type == DBUS_TYPE_ARRAY) in byteswap_body_helper() 137 _dbus_assert (current_type == DBUS_TYPE_STRING || in byteswap_body_helper() 138 current_type == DBUS_TYPE_OBJECT_PATH); in byteswap_body_helper()
|
D | dbus-marshal-recursive.c | 122 … int current_type); /**< go to the next value */ 426 int current_type) in base_reader_next() argument 428 switch (current_type) in base_reader_next() 437 if (reader->klass->types_only && current_type == DBUS_TYPE_VARIANT) in base_reader_next() 458 if (current_type == DBUS_TYPE_VARIANT) in base_reader_next() 481 current_type, reader->byte_order, in base_reader_next() 491 int current_type) in struct_reader_next() argument 495 base_reader_next (reader, current_type); in struct_reader_next() 512 int current_type) in dict_entry_reader_next() argument 516 base_reader_next (reader, current_type); in dict_entry_reader_next() [all …]
|
D | dbus-marshal-validate.c | 306 int current_type; in validate_body_helper() local 318 while ((current_type = _dbus_type_reader_get_current_type (reader)) != DBUS_TYPE_INVALID) in validate_body_helper() 325 _dbus_type_to_string (current_type), reader, reader->type_pos, p, end, in validate_body_helper() 333 switch (current_type) in validate_body_helper() 348 alignment = _dbus_type_get_alignment (current_type); in validate_body_helper() 359 if (current_type == DBUS_TYPE_BOOLEAN) in validate_body_helper() 392 if (current_type == DBUS_TYPE_ARRAY) in validate_body_helper() 420 if (current_type == DBUS_TYPE_OBJECT_PATH) in validate_body_helper() 430 else if (current_type == DBUS_TYPE_STRING) in validate_body_helper() 440 else if (current_type == DBUS_TYPE_ARRAY && claimed_len > 0) in validate_body_helper() [all …]
|
/external/chromium/chrome/common/ |
D | thumbnail_score.cc | 88 int current_type = GetThumbnailType(current.good_clipping, current.at_top); in ShouldReplaceThumbnailWith() local 91 if (replacement_type < current_type) { in ShouldReplaceThumbnailWith() 96 } else if (replacement_type == current_type) { in ShouldReplaceThumbnailWith()
|
/external/chromium/chrome/browser/autofill/ |
D | form_structure.cc | 226 std::vector<AutofillFieldType>::iterator current_type = field_types.begin(); in ParseQueryResponse() local 239 field != form->fields_.end(); ++field, ++current_type) { in ParseQueryResponse() 246 if (current_type == field_types.end()) in ParseQueryResponse() 250 DCHECK_NE(*current_type, UNKNOWN_TYPE); in ParseQueryResponse() 253 (*field)->set_server_type(*current_type); in ParseQueryResponse()
|
D | autofill_manager.cc | 128 const AutofillFieldType current_type = in FindSectionBounds() local 132 if (current_type == UNKNOWN_TYPE) in FindSectionBounds() 135 bool already_saw_current_type = seen_types.count(current_type) > 0; in FindSectionBounds() 142 AutofillType(current_type).group(); in FindSectionBounds() 173 seen_types.insert(current_type); in FindSectionBounds()
|
/external/bluetooth/glib/gio/ |
D | gcontenttype.c | 531 int current_type; member 578 parser->current_type = MIME_TAG_TYPE_COMMENT; in mime_info_start_element() 581 parser->current_type = MIME_TAG_TYPE_OTHER; in mime_info_start_element() 593 parser->current_type = MIME_TAG_TYPE_OTHER; in mime_info_end_element() 605 if (parser->current_type == MIME_TAG_TYPE_COMMENT && in mime_info_text()
|
/external/dbus/bus/ |
D | signals.c | 1675 int current_type; in match_rule_matches() local 1684 current_type = dbus_message_iter_get_arg_type (&iter); in match_rule_matches() 1691 if (current_type != DBUS_TYPE_STRING) in match_rule_matches() 1723 if (current_type != DBUS_TYPE_INVALID) in match_rule_matches()
|
D | driver.c | 1742 int current_type; in write_args_for_direction() local 1747 while ((current_type = _dbus_type_reader_get_current_type (&typereader)) != DBUS_TYPE_INVALID) in write_args_for_direction()
|
/external/bison/ |
D | ChangeLog | 2067 * src/parse-gram.y (current_class, current_type, current_prec): 6517 (TYPE, current_type): Are struniq. 9185 * src/parse.y (current_type, current_class): New.
|