/external/e2fsprogs/ext2ed/ |
D | general_com.c | 43 if (current_type!=NULL) { in help() 45 wprintw (show_pad,"Type %s specific commands:\n",current_type->name);max_line++; in help() 47 if (current_type->type_commands.last_command==-1) { in help() 51 for (i=0;i<=current_type->type_commands.last_command;i++) { in help() 55 wprintw (show_pad,"%-13s",current_type->type_commands.names [i]); in help() 116 if (current_type != NULL) in detailed_help() 117 for (i=0;i<=current_type->type_commands.last_command;i++) { in detailed_help() 118 if (strcmp (current_type->type_commands.names [i],text)==0) { in detailed_help() 119 wprintw (show_pad,"%s - %s\n",text,current_type->type_commands.descriptions [i]); in detailed_help() 182 current_type=NULL; /* There is no type now */ in set_device() [all …]
|
D | main.c | 79 struct struct_descriptor *first_type,*last_type,*current_type; /* Used to access the double linked … variable 372 if (current_type != NULL) in dispatch() 374 i<=current_type->type_commands.last_command && !found; in dispatch() 376 if (strcasecmp (command,current_type->type_commands.names [i])==0) { in dispatch() 377 (*current_type->type_commands.callback [i]) (command_line); in dispatch() 473 if (current_type != NULL) in complete_command() 474 for (i=0;i<=current_type->type_commands.last_command;i++) { in complete_command() 475 if (strncmp (current_type->type_commands.names [i],text,len)==0) { in complete_command() 478 return (dupstr (current_type->type_commands.names [i])); in complete_command()
|
D | disk.c | 212 if (current_type!=NULL) in load_type_data() 213 if (strcmp (current_type->name,"ext2_dir_entry")==0) in load_type_data() 214 current_type->length=type_data.u.t_ext2_dir_entry.rec_len; in load_type_data()
|
D | win.c | 179 if (current_type != NULL) in show_info() 180 wprintw (show_win,"Type: %s\n",current_type->name); in show_info()
|
D | init.c | 63 current_type=NULL; /* No filesystem specific types yet */ in init() 170 first_type=last_type=current_type=NULL; in free_struct_descriptors()
|
D | ext2ed.h | 209 extern struct struct_descriptor *current_type;
|
/external/icu/icu4c/source/test/depstest/ |
D | dependencies.py | 148 current_type = None 153 current_type = "library" 162 current_type = "group" 179 if current_type == "library": 181 elif current_type == "group": 184 elif current_type == "system_symbols": 185 item = items[current_type] 190 current_type = "system_symbols" 191 if current_type in items: 193 item = items[current_type] = {"type": current_type, "name": current_type}
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | vector_dce.cpp | 251 const analysis::Type* current_type = type_mgr->GetType(inst->type_id()); in HasVectorResult() local 252 switch (current_type->kind()) { in HasVectorResult() 266 const analysis::Type* current_type = type_mgr->GetType(inst->type_id()); in HasScalarResult() local 267 switch (current_type->kind()) { in HasScalarResult()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | vector_dce.cpp | 271 const analysis::Type* current_type = type_mgr->GetType(inst->type_id()); in HasVectorResult() local 272 switch (current_type->kind()) { in HasVectorResult() 286 const analysis::Type* current_type = type_mgr->GetType(inst->type_id()); in HasScalarResult() local 287 switch (current_type->kind()) { in HasScalarResult()
|
/external/clang/tools/scan-build-py/libscanbuild/ |
D | report.py | 413 current_type = current_category.get(bug_type, { 418 current_type.update({'bug_count': current_type['bug_count'] + 1}) 419 current_category.update({bug_type: current_type})
|
/external/v8/src/compiler/ |
D | typer.cc | 228 Type Weaken(Node* node, Type current_type, Type previous_type); 1253 Type Typer::Visitor::Weaken(Node* node, Type current_type, Type previous_type) { in Weaken() argument 1273 return current_type; in Weaken() 1275 DCHECK(current_type.Maybe(integer)); in Weaken() 1277 Type current_integer = Type::Intersect(current_type, integer, zone()); in Weaken() 1288 return current_type; in Weaken() 1322 return Type::Union(current_type, in Weaken()
|
D | simplified-lowering.cc | 560 Type Weaken(Node* node, Type previous_type, Type current_type) { in Weaken() argument 564 return current_type; in Weaken() 566 DCHECK(current_type.Maybe(integer)); in Weaken() 568 Type current_integer = Type::Intersect(current_type, integer, graph_zone()); in Weaken() 582 return current_type; in Weaken() 588 return Type::Union(current_type, in Weaken()
|
/external/libpng/contrib/tools/ |
D | pngfix.c | 1126 static png_uint_32 current_type(struct file *file, int code); 1154 type = current_type(file, code); /* Gropes in struct chunk and IDAT */ in stop() 1611 current_type(struct file *file, int code) in current_type() function
|