Home
last modified time | relevance | path

Searched refs:ofn (Results 1 – 8 of 8) sorted by relevance

/external/libpng/contrib/visupng/
DPngFile.c27 static OPENFILENAME ofn; variable
55 ofn.lStructSize = sizeof (OPENFILENAME); in PngFileInitialize()
56 ofn.hwndOwner = hwnd; in PngFileInitialize()
57 ofn.hInstance = NULL; in PngFileInitialize()
58 ofn.lpstrFilter = szFilter; in PngFileInitialize()
59 ofn.lpstrCustomFilter = NULL; in PngFileInitialize()
60 ofn.nMaxCustFilter = 0; in PngFileInitialize()
61 ofn.nFilterIndex = 0; in PngFileInitialize()
62 ofn.lpstrFile = NULL; /* Set in Open and Close functions */ in PngFileInitialize()
63 ofn.nMaxFile = MAX_PATH; in PngFileInitialize()
[all …]
/external/icu/icu4c/source/samples/layout/
Dlayout.cpp263 OPENFILENAMEA ofn; in WndProc() local
268 ofn.lStructSize = sizeof (OPENFILENAMEA); in WndProc()
269 ofn.hwndOwner = hwnd; in WndProc()
270 ofn.hInstance = NULL; in WndProc()
271 ofn.lpstrFilter = szFilter; in WndProc()
272 ofn.lpstrCustomFilter = NULL; in WndProc()
273 ofn.nMaxCustFilter = 0; in WndProc()
274 ofn.nFilterIndex = 0; in WndProc()
275 ofn.lpstrFile = szFileName; in WndProc()
276 ofn.nMaxFile = MAX_PATH; in WndProc()
[all …]
Dclayout.c265 OPENFILENAMEA ofn; in WndProc() local
270 ofn.lStructSize = sizeof (OPENFILENAMEA); in WndProc()
271 ofn.hwndOwner = hwnd; in WndProc()
272 ofn.hInstance = NULL; in WndProc()
273 ofn.lpstrFilter = szFilter; in WndProc()
274 ofn.lpstrCustomFilter = NULL; in WndProc()
275 ofn.nMaxCustFilter = 0; in WndProc()
276 ofn.nFilterIndex = 0; in WndProc()
277 ofn.lpstrFile = szFileName; in WndProc()
278 ofn.nMaxFile = MAX_PATH; in WndProc()
[all …]
/external/libvpx/libvpx/build/make/
Drtcd.pl83 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/third_party/libvpx/source/libvpx/build/make/
Drtcd.pl83 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/llvm/cmake/modules/
DTableGen.cmake2 # Extra parameters for `tblgen' may come after `ofn' parameter.
5 function(tablegen project ofn)
26 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
31 -o ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
37 COMMENT "Building ${ofn}..."
39 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}
44 ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
45 ${CMAKE_CURRENT_BINARY_DIR}/${ofn}
46 DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp
47 COMMENT "Updating ${ofn}..."
[all …]
/external/chromium_org/ui/shell_dialogs/
Dselect_file_dialog_win.cc47 bool CallGetOpenFileName(OPENFILENAME* ofn) { in CallGetOpenFileName() argument
59 return metro_get_open_file_name(ofn) == TRUE; in CallGetOpenFileName()
61 return GetOpenFileName(ofn) == TRUE; in CallGetOpenFileName()
66 bool CallGetSaveFileName(OPENFILENAME* ofn) { in CallGetSaveFileName() argument
78 return metro_get_save_file_name(ofn) == TRUE; in CallGetSaveFileName()
80 return GetSaveFileName(ofn) == TRUE; in CallGetSaveFileName()
776 OPENFILENAME ofn; in RunOpenFileDialog() local
779 ZeroMemory(&ofn, sizeof(ofn)); in RunOpenFileDialog()
780 ofn.lStructSize = sizeof(ofn); in RunOpenFileDialog()
781 ofn.hwndOwner = owner; in RunOpenFileDialog()
[all …]
/external/blktrace/
Dblktrace.c266 char ofn[MAXPATHLEN + 64]; member
1469 char *dst = iop->ofn; in fill_ofname()
1472 len = snprintf(iop->ofn, sizeof(iop->ofn), "%s/", output_dir); in fill_ofname()
1474 len = snprintf(iop->ofn, sizeof(iop->ofn), "./"); in fill_ofname()
1484 if (stat(iop->ofn, &sb) < 0) { in fill_ofname()
1488 iop->ofn, errno, strerror(errno)); in fill_ofname()
1496 if (mkdir(iop->ofn, 0755) < 0 && errno != EEXIST) { in fill_ofname()
1499 iop->ofn, errno, strerror(errno)); in fill_ofname()
1505 snprintf(iop->ofn + len, sizeof(iop->ofn), "%s.blktrace.%d", in fill_ofname()
1508 snprintf(iop->ofn + len, sizeof(iop->ofn), "%s.blktrace.%d", in fill_ofname()
[all …]