Searched refs:ofn (Results 1 – 14 of 14) sorted by relevance
/external/libpng/contrib/visupng/ |
D | PngFile.c | 27 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/ |
D | clayout.c | 271 OPENFILENAMEA ofn; in WndProc() local 276 ofn.lStructSize = sizeof (OPENFILENAMEA); in WndProc() 277 ofn.hwndOwner = hwnd; in WndProc() 278 ofn.hInstance = NULL; in WndProc() 279 ofn.lpstrFilter = szFilter; in WndProc() 280 ofn.lpstrCustomFilter = NULL; in WndProc() 281 ofn.nMaxCustFilter = 0; in WndProc() 282 ofn.nFilterIndex = 0; in WndProc() 283 ofn.lpstrFile = szFileName; in WndProc() 284 ofn.nMaxFile = MAX_PATH; in WndProc() [all …]
|
D | layout.cpp | 269 OPENFILENAMEA ofn; in WndProc() local 274 ofn.lStructSize = sizeof (OPENFILENAMEA); in WndProc() 275 ofn.hwndOwner = hwnd; in WndProc() 276 ofn.hInstance = NULL; in WndProc() 277 ofn.lpstrFilter = szFilter; in WndProc() 278 ofn.lpstrCustomFilter = NULL; in WndProc() 279 ofn.nMaxCustFilter = 0; in WndProc() 280 ofn.nFilterIndex = 0; in WndProc() 281 ofn.lpstrFile = szFileName; in WndProc() 282 ofn.nMaxFile = MAX_PATH; in WndProc() [all …]
|
/external/libvpx/libvpx/build/make/ |
D | rtcd.pl | 92 my $ofn = eval "\$${fn}_${opt}"; 93 next if !$ofn; 100 if ($best_ofn && "$best_ofn" ne "$ofn") { 143 my $ofn = eval "\$${fn}_${opt}"; 144 next if !$ofn; 165 my $ofn = eval "\$${fn}_${opt}"; 166 next if !$ofn; 167 print "$rtyp ${ofn}($args);\n"; 188 my $ofn = eval "\$${fn}_${opt}"; 189 next if !$ofn; [all …]
|
/external/libaom/libaom/build/cmake/ |
D | rtcd.pl | 101 my $ofn = eval "\$${fn}_${opt}"; 102 next if !$ofn; 109 if ($best_ofn && "$best_ofn" ne "$ofn") { 152 my $ofn = eval "\$${fn}_${opt}"; 153 next if !$ofn; 174 my $ofn = eval "\$${fn}_${opt}"; 175 next if !$ofn; 176 print "$rtyp ${ofn}($args);\n"; 197 my $ofn = eval "\$${fn}_${opt}"; 198 next if !$ofn; [all …]
|
/external/swiftshader/third_party/LLVM/cmake/modules/ |
D | TableGen.cmake | 2 # Extra parameters for `tblgen' may come after `ofn' parameter. 5 macro(tablegen project ofn) 15 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 20 -o ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 26 COMMENT "Building ${ofn}..." 28 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn} 33 ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 34 ${CMAKE_CURRENT_BINARY_DIR}/${ofn} 35 DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 41 PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${ofn}.tmp ${ofn}) [all …]
|
/external/llvm/cmake/modules/ |
D | TableGen.cmake | 2 # 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/swiftshader/third_party/llvm-7.0/llvm/cmake/modules/ |
D | TableGen.cmake | 2 # Extra parameters for `tblgen' may come after `ofn' parameter. 11 function(tablegen project ofn) 26 ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/${ofn}) 31 DEPFILE ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.d 39 -o ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 72 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 84 COMMENT "Building ${ofn}..." 86 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn} 91 ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 92 ${CMAKE_CURRENT_BINARY_DIR}/${ofn} [all …]
|
/external/python/cpython3/Tools/msi/bundle/bootstrap/ |
D | PythonBootstrapperApplication.cpp | 1218 OPENFILENAMEW ofn = { }; in OnResolveSource() local 1223 ofn.lStructSize = sizeof(ofn); in OnResolveSource() 1224 ofn.hwndOwner = _hWnd; in OnResolveSource() 1225 ofn.lpstrFile = wzFile; in OnResolveSource() 1226 ofn.nMaxFile = countof(wzFile); in OnResolveSource() 1227 ofn.lpstrFilter = L"All Files\0*.*\0"; in OnResolveSource() 1228 ofn.nFilterIndex = 1; in OnResolveSource() 1229 ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST; in OnResolveSource() 1230 ofn.lpstrTitle = _theme->sczCaption; in OnResolveSource() 1232 if (::GetOpenFileNameW(&ofn)) { in OnResolveSource() [all …]
|
/external/blktrace/ |
D | blktrace.c | 266 char ofn[MAXPATHLEN + 64]; member 1585 if (fill_ofname(iop->ofn, sizeof(iop->ofn), hostdir, in iop_open() 1589 iop->ofp = my_fopen(iop->ofn, "w+"); in iop_open() 1592 iop->ofn, errno, strerror(errno)); in iop_open() 1598 iop->ofn, errno, strerror(errno)); in iop_open() 1618 iop->ofn, errno, strerror(errno)); in close_iop()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/ |
D | cy-fonipa-t-cy.txt | 511 ofn ˈɔvn
|
/external/openssh/ |
D | channels.c | 840 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx) in channel_register_filter() argument 849 c->output_filter = ofn; in channel_register_filter()
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_raw_IPA.txt | 77351 hoeffner hˈofnər
|
D | internal_raw_IPA-old.txt | 91690 hoeffner hˈofnər
|