Home
last modified time | relevance | path

Searched refs:current_type (Results 1 – 20 of 20) sorted by relevance

/external/e2fsprogs/ext2ed/
Dgeneral_com.c42 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 …]
Dmain.c78 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()
Ddisk.c211 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()
Dwin.c178 if (current_type != NULL) in show_info()
179 wprintw (show_win,"Type: %s\n",current_type->name); in show_info()
Dinit.c62 current_type=NULL; /* No filesystem specific types yet */ in init()
169 first_type=last_type=current_type=NULL; in free_struct_descriptors()
Dext2ed.h209 extern struct struct_descriptor *current_type;
/external/icu/icu4c/source/test/depstest/
Ddependencies.py146 current_type = None
151 current_type = "library"
160 current_type = "group"
177 if current_type == "library":
179 elif current_type == "group":
182 elif current_type == "system_symbols":
183 item = items[current_type]
188 current_type = "system_symbols"
189 if current_type in items:
191 item = items[current_type] = {"type": current_type, "name": current_type}
/external/dbus/tools/
Ddbus-print-message.c109 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/opencv3/modules/core/test/
Dtest_countnonzero.cpp71 int current_type; member in CV_CountNonZeroTest
82 …_limits<float>::min()), eps_64(std::numeric_limits<double>::min()), src(Mat()), current_type(-1) {} in CV_CountNonZeroTest()
152 if (current_type == CV_8U) result += (src.at<uchar>(i, j) > 0); in get_count_non_zero()
153 else if (current_type == CV_8S) result += abs(sign(src.at<char>(i, j))); in get_count_non_zero()
154 else if (current_type == CV_16U) result += (src.at<ushort>(i, j) > 0); in get_count_non_zero()
155 else if (current_type == CV_16S) result += abs(sign(src.at<short>(i, j))); in get_count_non_zero()
156 else if (current_type == CV_32S) result += abs(sign(src.at<int>(i, j))); in get_count_non_zero()
157 else if (current_type == CV_32F) result += (fabs(src.at<float>(i, j)) > eps_32); in get_count_non_zero()
168 switch (current_type) in print_information()
196 current_type = rng.next()%7; in run()
[all …]
/external/dbus/dbus/
Ddbus-marshal-byteswap.c42 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()
Ddbus-marshal-recursive.c134 … int current_type); /**< go to the next value */
438 int current_type) in base_reader_next() argument
440 switch (current_type) in base_reader_next()
449 if (reader->klass->types_only && current_type == DBUS_TYPE_VARIANT) in base_reader_next()
470 if (current_type == DBUS_TYPE_VARIANT) in base_reader_next()
493 current_type, reader->byte_order, in base_reader_next()
503 int current_type) in struct_reader_next() argument
507 base_reader_next (reader, current_type); in struct_reader_next()
524 int current_type) in dict_entry_reader_next() argument
528 base_reader_next (reader, current_type); in dict_entry_reader_next()
[all …]
Ddbus-marshal-validate.c306 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/bison/src/
Dparse-gram.y65 static uniqstr current_type = NULL; variable
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, @1);
[all …]
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, (yylsp[(1) - (2)]));
[all …]
/external/v8/test/cctest/
Dtest-field-type-tracking.cc771 Handle<HeapType> current_type = in TEST() local
780 ? HeapType::Union(current_type, new_type, isolate) in TEST()
784 Representation::HeapObject(), current_type, in TEST()
787 current_type = expected_type; in TEST()
1142 Handle<HeapType> current_type = in TEST() local
1151 ? HeapType::Union(current_type, new_type, isolate) in TEST()
1155 Representation::HeapObject(), current_type, in TEST()
1158 current_type = expected_type; in TEST()
/external/dbus/bus/
Dsignals.c1856 int current_type; in match_rule_matches() local
1866 current_type = dbus_message_iter_get_arg_type (&iter); in match_rule_matches()
1873 if (current_type != DBUS_TYPE_STRING && in match_rule_matches()
1874 (!is_path || current_type != DBUS_TYPE_OBJECT_PATH)) in match_rule_matches()
1932 if (current_type != DBUS_TYPE_INVALID) in match_rule_matches()
Ddriver.c1793 int current_type; in write_args_for_direction() local
1798 while ((current_type = _dbus_type_reader_get_current_type (&typereader)) != DBUS_TYPE_INVALID) in write_args_for_direction()
/external/v8/src/compiler/
Dtyper.cc202 Type* Weaken(Node* node, Type* current_type, Type* previous_type);
1305 Type* Typer::Visitor::Weaken(Node* node, Type* current_type, in Weaken() argument
1326 return current_type; in Weaken()
1328 DCHECK(current_type->Maybe(integer)); in Weaken()
1330 Type* current_integer = Type::Intersect(current_type, integer, zone()); in Weaken()
1341 return current_type; in Weaken()
1375 return Type::Union(current_type, in Weaken()
/external/libpng/contrib/tools/
Dpngfix.c1127 static png_uint_32 current_type(struct file *file, int code);
1155 type = current_type(file, code); /* Gropes in struct chunk and IDAT */ in stop()
1612 current_type(struct file *file, int code) in current_type() function
/external/bison/
DChangeLog-201210328 * src/parse-gram.y (current_class, current_type, current_prec):
14778 (TYPE, current_type): Are struniq.
17446 * src/parse.y (current_type, current_class): New.