Searched refs:current_type (Results 1 - 18 of 18) sorted by relevance

/external/e2fsprogs/ext2ed/
H A Dgeneral_com.c42 if (current_type!=NULL) {
44 wprintw (show_pad,"Type %s specific commands:\n",current_type->name);max_line++;
46 if (current_type->type_commands.last_command==-1) {
50 for (i=0;i<=current_type->type_commands.last_command;i++) {
54 wprintw (show_pad,"%-13s",current_type->type_commands.names [i]);
115 if (current_type != NULL)
116 for (i=0;i<=current_type->type_commands.last_command;i++) {
117 if (strcmp (current_type->type_commands.names [i],text)==0) {
118 wprintw (show_pad,"%s - %s\n",text,current_type->type_commands.descriptions [i]);
181 current_type
[all...]
H A Dmain.c78 struct struct_descriptor *first_type,*last_type,*current_type; /* Used to access the double linked list */ variable in typeref:struct:
344 * current type. The global variable current_type points to the
371 if (current_type != NULL)
373 i<=current_type->type_commands.last_command && !found;
375 if (strcasecmp (command,current_type->type_commands.names [i])==0) {
376 (*current_type->type_commands.callback [i]) (command_line);
472 if (current_type != NULL)
473 for (i=0;i<=current_type->type_commands.last_command;i++) {
474 if (strncmp (current_type->type_commands.names [i],text,len)==0) {
477 return (dupstr (current_type
[all...]
H A Ddisk.c211 if (current_type!=NULL)
212 if (strcmp (current_type->name,"ext2_dir_entry")==0)
213 current_type->length=type_data.u.t_ext2_dir_entry.rec_len;
H A Dwin.c178 if (current_type != NULL)
179 wprintw (show_win,"Type: %s\n",current_type->name);
H A Dext2ed.h213 extern struct struct_descriptor *current_type;
H A Dinit.c62 current_type=NULL; /* No filesystem specific types yet */
169 first_type=last_type=current_type=NULL;
/external/icu4c/test/depstest/
H A Ddependencies.py143 current_type = None
148 current_type = "library"
157 current_type = "group"
173 if current_type == "library":
175 elif current_type == "group":
178 elif current_type == "system_symbols":
179 item = items[current_type]
184 current_type = "system_symbols"
185 if current_type in items:
187 item = items[current_type]
[all...]
/external/bison/src/
H A Dparse-gram.y65 static uniqstr current_type = NULL;
423 current_type = NULL;
428 current_type = NULL;
447 symbol_type_set (list->content.sym, current_type, @2);
451 current_type = NULL;
462 /* Nothing. */ { current_type = NULL; }
463 | TYPE { current_type = $1; tag_seen = true; }
503 current_type = $1;
509 symbol_type_set ($1, current_type, @1);
514 symbol_type_set ($1, current_type,
[all...]
H A Dparse-gram.c141 static uniqstr current_type = NULL; variable
2536 current_type = NULL;
2551 current_type = NULL;
2575 symbol_type_set (list->content.sym, current_type, (yylsp[(2) - (3)]));
2579 current_type = NULL;
2604 { current_type = NULL; }
2610 { current_type = (yyvsp[(1) - (1)].uniqstr); tag_seen = true; }
2689 current_type = (yyvsp[(1) - (1)].uniqstr);
2699 symbol_type_set ((yyvsp[(1) - (1)].symbol), current_type, (yylsp[(1) - (1)]));
2708 symbol_type_set ((yyvsp[(1) - (2)].symbol), current_type, (yyls
[all...]
/external/chromium/chrome/common/
H A Dthumbnail_score.cc88 int current_type = GetThumbnailType(current.good_clipping, current.at_top); local
91 if (replacement_type < current_type) {
96 } else if (replacement_type == current_type) {
/external/chromium_org/chrome/common/
H A Dthumbnail_score.cc87 int current_type = GetThumbnailType(current); local
89 if (replacement_type < current_type) {
94 } else if (replacement_type == current_type) {
/external/chromium_org/content/common/
H A Dhandle_enumerator_win.cc60 HandleType current_type = StringToHandleType(sys_handle->Type()); local
61 if (!all_handles_ && (current_type != ProcessHandle &&
62 current_type != FileHandle &&
63 current_type != DirectoryHandle &&
64 current_type != KeyHandle &&
65 current_type != WindowStationHandle &&
66 current_type != DesktopHandle &&
67 current_type != ServiceHandle))
75 output += GetAccessString(current_type,
/external/chromium/chrome/browser/autofill/
H A Dform_structure.cc226 std::vector<AutofillFieldType>::iterator current_type = field_types.begin(); local
239 field != form->fields_.end(); ++field, ++current_type) {
246 if (current_type == field_types.end())
250 DCHECK_NE(*current_type, UNKNOWN_TYPE);
253 (*field)->set_server_type(*current_type);
H A Dautofill_manager.cc128 const AutofillFieldType current_type = local
132 if (current_type == UNKNOWN_TYPE)
135 bool already_saw_current_type = seen_types.count(current_type) > 0;
142 AutofillType(current_type).group();
173 seen_types.insert(current_type);
/external/chromium_org/components/autofill/core/browser/
H A Dform_structure.cc1167 const ServerFieldType current_type = (*field)->Type().GetStorableType(); local
1169 bool already_saw_current_type = seen_types.count(current_type) > 0;
1174 if (AutofillType(current_type).group() == PHONE_HOME)
1186 if (current_type == previous_type)
1189 previous_type = current_type;
1191 if (current_type != UNKNOWN_TYPE && already_saw_current_type) {
1197 seen_types.insert(current_type);
/external/v8/src/
H A Dic.cc2164 UnaryOpIC::TypeInfo current_type,
2168 return current_type;
2170 return (current_type == UnaryOpIC::GENERIC)
2163 ComputeNewType( UnaryOpIC::TypeInfo current_type, UnaryOpIC::TypeInfo previous_type) argument
/external/chromium_org/v8/src/
H A Dic.cc982 Handle<Type> current_type = types.at(i); local
984 if (current_type->IsClass() && current_type->AsClass()->is_deprecated()) {
989 } else if (type->IsCurrently(current_type)) {
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder.cc8539 GLenum current_type = 0; local
8541 if (!texture->GetLevelType(target, level, &current_type, &internal_format)) {
8552 if (type != current_type) {

Completed in 587 milliseconds