Searched refs:file_index (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/chrome/browser/ui/views/
H A Dselect_file_dialog_extension_unittest.cc45 int file_index() const { return file_index_; } function in class:TestListener
99 EXPECT_EQ(kFileIndex, listener->file_index());
111 EXPECT_EQ(-1, listener->file_index());
/external/jpeg/
H A Dcjpeg.c468 int file_index; local
511 file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
516 if (file_index != argc-2) {
521 outfilename = argv[file_index+1];
523 if (file_index != argc-1) {
531 if (file_index < argc-1) {
538 if (file_index < argc) {
539 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
540 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
574 file_index
[all...]
H A Djpegtran.c344 int file_index; local
379 file_index = parse_switches(&dstinfo, argc, argv, 0, FALSE);
386 if (file_index != argc-2) {
391 outfilename = argv[file_index+1];
393 if (file_index != argc-1) {
401 if (file_index < argc-1) {
408 if (file_index < argc) {
409 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
410 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
467 file_index
[all...]
H A Ddjpeg.c431 int file_index; local
476 file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
481 if (file_index != argc-2) {
486 outfilename = argv[file_index+1];
488 if (file_index != argc-1) {
496 if (file_index < argc-1) {
503 if (file_index < argc) {
504 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
505 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
535 file_index
[all...]
/external/qemu/distrib/jpeg-6b/
H A Dcjpeg.c468 int file_index; local
511 file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
516 if (file_index != argc-2) {
521 outfilename = argv[file_index+1];
523 if (file_index != argc-1) {
531 if (file_index < argc-1) {
538 if (file_index < argc) {
539 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
540 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
574 file_index
[all...]
H A Djpegtran.c344 int file_index; local
379 file_index = parse_switches(&dstinfo, argc, argv, 0, FALSE);
386 if (file_index != argc-2) {
391 outfilename = argv[file_index+1];
393 if (file_index != argc-1) {
401 if (file_index < argc-1) {
408 if (file_index < argc) {
409 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
410 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
467 file_index
[all...]
H A Ddjpeg.c431 int file_index; local
476 file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
481 if (file_index != argc-2) {
486 outfilename = argv[file_index+1];
488 if (file_index != argc-1) {
496 if (file_index < argc-1) {
503 if (file_index < argc) {
504 if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
505 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
535 file_index
[all...]
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
H A Dhandlers.c129 * @param[out] file_index The index of this file.
132 static FILE* GetFileFromIndexString(const char* s, int* file_index) { argument
134 (void**)g_OpenFiles, MAX_OPEN_FILES, s, file_index);
185 int file_index; local
203 file_index = AddFileToMap(file);
204 if (file_index == -1) {
210 *output = PrintfToNewString("fopen\1%s\1%d", filename, file_index);
395 int file_index; local
405 file = GetFileFromIndexString(file_index_string, &file_index);
418 RemoveFileFromMap(file_index);
[all...]
/external/chromium_org/net/disk_cache/v3/
H A Dblock_bitmaps.cc195 int file_index = address.FileNumber(); local
196 if (static_cast<unsigned int>(file_index) >= block_files_.size() ||
197 !block_files_[file_index]) {
199 if (!OpenBlockFile(file_index))
202 DCHECK(block_files_.size() >= static_cast<unsigned int>(file_index));
203 return block_files_[file_index];
/external/chromium/net/disk_cache/
H A Dblock_files.cc230 int file_index = address.FileNumber(); local
231 if (static_cast<unsigned int>(file_index) >= block_files_.size() ||
232 !block_files_[file_index]) {
234 if (!OpenBlockFile(file_index))
237 DCHECK(block_files_.size() >= static_cast<unsigned int>(file_index));
238 return block_files_[file_index];
541 int file_index = header->next_file; local
543 DCHECK(block_files_.size() >= static_cast<unsigned int>(file_index));
547 FilePath name = Name(file_index);
550 block_files_[file_index]
[all...]
/external/chromium_org/net/disk_cache/
H A Dblock_files.cc268 int file_index = address.FileNumber(); local
269 if (static_cast<unsigned int>(file_index) >= block_files_.size() ||
270 !block_files_[file_index]) {
272 if (!OpenBlockFile(file_index))
275 DCHECK(block_files_.size() >= static_cast<unsigned int>(file_index));
276 return block_files_[file_index];
589 int file_index = header->next_file; local
591 DCHECK(block_files_.size() >= static_cast<unsigned int>(file_index));
596 base::FilePath name = Name(file_index);
599 block_files_[file_index]
[all...]
/external/chromium_org/content/child/npapi/
H A Dplugin_instance.cc243 for (unsigned int file_index = 0; file_index < files_created_.size();
244 file_index++) {
245 base::DeleteFile(files_created_[file_index], false);

Completed in 234 milliseconds