HomeSort by relevance Sort by last modified time
    Searched refs:ofn (Results 1 - 8 of 8) sorted by null

  /external/libpng/contrib/visupng/
PngFile.c 27 static OPENFILENAME ofn; variable
55 ofn.lStructSize = sizeof (OPENFILENAME);
56 ofn.hwndOwner = hwnd;
57 ofn.hInstance = NULL;
58 ofn.lpstrFilter = szFilter;
59 ofn.lpstrCustomFilter = NULL;
60 ofn.nMaxCustFilter = 0;
61 ofn.nFilterIndex = 0;
62 ofn.lpstrFile = NULL; /* Set in Open and Close functions */
63 ofn.nMaxFile = MAX_PATH
    [all...]
  /external/icu/icu4c/source/samples/layout/
clayout.c 265 OPENFILENAMEA ofn; local
270 ofn.lStructSize = sizeof (OPENFILENAMEA);
271 ofn.hwndOwner = hwnd;
272 ofn.hInstance = NULL;
273 ofn.lpstrFilter = szFilter;
274 ofn.lpstrCustomFilter = NULL;
275 ofn.nMaxCustFilter = 0;
276 ofn.nFilterIndex = 0;
277 ofn.lpstrFile = szFileName;
278 ofn.nMaxFile = MAX_PATH
    [all...]
layout.cpp 263 OPENFILENAMEA ofn; local
268 ofn.lStructSize = sizeof (OPENFILENAMEA);
269 ofn.hwndOwner = hwnd;
270 ofn.hInstance = NULL;
271 ofn.lpstrFilter = szFilter;
272 ofn.lpstrCustomFilter = NULL;
273 ofn.nMaxCustFilter = 0;
274 ofn.nFilterIndex = 0;
275 ofn.lpstrFile = szFileName;
276 ofn.nMaxFile = MAX_PATH
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
rtcd.pl 83 my $ofn = eval "\$${fn}_${opt}";
84 next if !$ofn;
91 if ($best_ofn && "$best_ofn" ne "$ofn") {
134 my $ofn = eval "\$${fn}_${opt}";
135 next if !$ofn;
156 my $ofn = eval "\$${fn}_${opt}";
157 next if !$ofn;
158 print "$rtyp ${ofn}($args);\n";
179 my $ofn = eval "\$${fn}_${opt}";
180 next if !$ofn;
    [all...]
  /external/libvpx/libvpx/build/make/
rtcd.pl 83 my $ofn = eval "\$${fn}_${opt}";
84 next if !$ofn;
91 if ($best_ofn && "$best_ofn" ne "$ofn") {
134 my $ofn = eval "\$${fn}_${opt}";
135 next if !$ofn;
156 my $ofn = eval "\$${fn}_${opt}";
157 next if !$ofn;
158 print "$rtyp ${ofn}($args);\n";
179 my $ofn = eval "\$${fn}_${opt}";
180 next if !$ofn;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
rtcd.pl 83 my $ofn = eval "\$${fn}_${opt}";
84 next if !$ofn;
91 if ($best_ofn && "$best_ofn" ne "$ofn") {
134 my $ofn = eval "\$${fn}_${opt}";
135 next if !$ofn;
156 my $ofn = eval "\$${fn}_${opt}";
157 next if !$ofn;
158 print "$rtyp ${ofn}($args);\n";
179 my $ofn = eval "\$${fn}_${opt}";
180 next if !$ofn;
    [all...]
  /external/chromium_org/ui/shell_dialogs/
select_file_dialog_win.cc 47 bool CallGetOpenFileName(OPENFILENAME* ofn) {
59 return metro_get_open_file_name(ofn) == TRUE;
61 return GetOpenFileName(ofn) == TRUE;
66 bool CallGetSaveFileName(OPENFILENAME* ofn) {
78 return metro_get_save_file_name(ofn) == TRUE;
80 return GetSaveFileName(ofn) == TRUE;
286 // We must do this otherwise the ofn's FlagsEx may be initialized to random
776 OPENFILENAME ofn; local
777 // We must do this otherwise the ofn's FlagsEx may be initialized to random
779 ZeroMemory(&ofn, sizeof(ofn))
825 OPENFILENAME ofn; local
    [all...]
  /external/blktrace/
blktrace.c 242 * ofn, ofd, ofp, obuf & mmap_info are used for output file (optionally).
266 char ofn[MAXPATHLEN + 64]; member in struct:io_info
1469 char *dst = iop->ofn;
1472 len = snprintf(iop->ofn, sizeof(iop->ofn), "%s/", output_dir);
1474 len = snprintf(iop->ofn, sizeof(iop->ofn), "./");
1484 if (stat(iop->ofn, &sb) < 0) {
1488 iop->ofn, errno, strerror(errno));
1496 if (mkdir(iop->ofn, 0755) < 0 && errno != EEXIST)
    [all...]

Completed in 437 milliseconds