Home
last modified time | relevance | path

Searched refs:str_path (Results 1 – 25 of 157) sorted by relevance

1234567

/dports/print/pdfchain/pdfchain-0.4.4.2/src/
H A Dwindow_main_cat.h229 inline void onCRToggle_Add_toggled( const Glib::ustring& str_path ) { in onCRToggle_Add_toggled() argument
230 rLStore_Cat->toggleAdd( Gtk::TreeModel::Path( str_path ) ); in onCRToggle_Add_toggled()
235 const Glib::ustring& str_path , in onCRText_Pages_edited() argument
238 rLStore_Cat->editPages( Gtk::TreeModel::Path( str_path ) , str_pages ); in onCRText_Pages_edited()
243 const Glib::ustring& str_path , in onCRCombo_EvenOdd_changed() argument
247 rLStore_Cat->changeEvenOdd( Gtk::TreeModel::Path( str_path ) , in onCRCombo_EvenOdd_changed()
255 const Glib::ustring& str_path , in onCRCombo_Rotation_changed() argument
259 rLStore_Cat->changeRotation( Gtk::TreeModel::Path( str_path ), in onCRCombo_Rotation_changed()
267 const Glib::ustring& str_path , in onCRText_Password_edited() argument
270 rLStore_Cat->editPassword( Gtk::TreeModel::Path( str_path ) , str_password ); in onCRText_Password_edited()
H A Dpdfchain.cc35 std::string str_path = string; in extract_filename_from_path() local
38 if ( ( pos = str_path.rfind( G_DIR_SEPARATOR ) ) != std::string::npos ) in extract_filename_from_path()
39 str_path.erase( 0 , pos+1 ); in extract_filename_from_path()
41 return str_path; in extract_filename_from_path()
48 Pdfchain::count_page_numbers( const std::string& str_path ) in count_page_numbers() argument
55 Glib::RefPtr<Gio::File> ref_file = Gio::File::create_for_path( str_path ); in count_page_numbers()
173 Pdfchain::quote_path( const std::string& str_path ) in quote_path() argument
175 return "\"" + escape_string( str_path ) + "\""; in quote_path()
/dports/databases/redisjson/jsonpath-198043336123efdb71172af9f5aef18ef5ec2d6b/tests/
H A Dselector.rs27 .str_path(r#"$.store..price"#) in selector_mut()
40 .str_path(r#"$.store..price"#) in selector_mut()
74 .str_path(r#"$.store..price[?(@>13)]"#) in selector_delete()
82 .str_path(r#"$.store..price"#) in selector_delete()
108 .str_path(r#"$.store..price[?(@>13)]"#) in selector_remove()
116 .str_path(r#"$.store..price"#) in selector_remove()
/dports/lang/rust/rustc-1.58.1-src/vendor/jsonpath_lib/tests/
H A Dselector.rs19 .str_path(r#"$.store..price"#) in selector_mut()
39 .str_path(r#"$.store..price"#) in selector_mut()
72 .str_path(r#"$.store..price[?(@>13)]"#) in selector_delete()
82 .str_path(r#"$.store..price"#) in selector_delete()
107 .str_path(r#"$.store..price[?(@>13)]"#) in selector_remove()
117 .str_path(r#"$.store..price"#) in selector_remove()
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/slurmrestd/
H A Dopenapi.c167 char *buffer = xstrdup(str_path); in _parse_openapi_path()
174 for (const char *i = str_path; *i; i++) in _parse_openapi_path()
233 const char *str_path; member
243 if (!xstrcasecmp(args->str_path, key)) { in _match_path_string()
254 match_path_string_t args = { .str_path = str_path }; in _find_spec_path()
363 extern int register_path_tag(const char *str_path) in register_path_tag() argument
373 spec_entry = _find_spec_path(str_path); in register_path_tag()
551 char *str_path = dump_json(args->dpath, in _match_path_from_data() local
555 __func__, args->path->tag, str_path, in _match_path_from_data()
559 __func__, args->path->tag, str_path, in _match_path_from_data()
[all …]
H A Doperations.c129 extern int bind_operation_handler(const char *str_path, in bind_operation_handler() argument
139 __func__, str_path, (uintptr_t) callback); in bind_operation_handler()
141 path_tag = register_path_tag(str_path); in bind_operation_handler()
144 __func__, str_path); in bind_operation_handler()
150 debug4("%s: new path %s with tag %d", __func__, str_path, path_tag); in bind_operation_handler()
/dports/misc/gpsim/gpsim-0.31.0/src/
H A Dfopen-path.cc71 std::string str_path; in toString() local
73 str_path += path + ':'; in toString()
76 if (!str_path.empty()) { in toString()
77 str_path.erase(str_path.size() - 1, 1); in toString()
79 return str_path; in toString()
/dports/lang/rust/rustc-1.58.1-src/vendor/jsonpath_lib/src/
H A Dlib.rs227 move |path: &str| selector.str_path(path)?.reset_value().select() in selector()
281 move |path: &str| selector.str_path(path)?.reset_value().select_as() in selector_as()
310 Selector::default().str_path(path)?.value(json).select() in select()
338 let ret = Selector::default().str_path(path)?.value(&json).select()?; in select_as_str()
385 Selector::default().str_path(path)?.value(&json).select_as() in select_as()
422 let value = selector.str_path(path)?.value(value).delete()?; in delete()
473 let value = selector.str_path(path)?.value(value).replace_with(fun)?; in replace_with()
/dports/databases/redisjson/jsonpath-198043336123efdb71172af9f5aef18ef5ec2d6b/src/
H A Dlib.rs228 move |path: &str| selector.str_path(path)?.reset_value().select() in selector()
283 let res = selector.str_path(path)?.reset_value().select(); in selector_as()
326 Selector::default().str_path(path)?.value(json).select() in select()
354 let ret = Selector::default().str_path(path)?.value(&json).select()?; in select_as_str()
439 selector.str_path(path)?.value(&mut value).replace_with(&mut updater)?; in delete()
491 selector.str_path(path)?.value(&mut value).replace_with(&mut updater)?; in replace_with()
/dports/misc/mc-nox11/mc-4.8.27/tests/lib/vfs/
H A Dpath_recode.c243 char *str_path; in START_PARAMETRIZED_TEST() local
253 str_path = vfs_path_to_str_flags (vpath, 0, data->input_to_str_flags); in START_PARAMETRIZED_TEST()
256 mctest_assert_str_eq (str_path, data->expected_path); in START_PARAMETRIZED_TEST()
258 g_free (str_path); in START_PARAMETRIZED_TEST()
/dports/misc/mc/mc-4.8.27/tests/lib/vfs/
H A Dpath_recode.c243 char *str_path; in START_PARAMETRIZED_TEST() local
253 str_path = vfs_path_to_str_flags (vpath, 0, data->input_to_str_flags); in START_PARAMETRIZED_TEST()
256 mctest_assert_str_eq (str_path, data->expected_path); in START_PARAMETRIZED_TEST()
258 g_free (str_path); in START_PARAMETRIZED_TEST()
/dports/misc/mc/mc-4.8.27/lib/mcconfig/
H A Dpaths.c302 char *str_path; in mc_config_get_full_vpath() local
304 str_path = mc_config_get_full_path (config_name); in mc_config_get_full_vpath()
306 ret_vpath = vfs_path_from_str (str_path); in mc_config_get_full_vpath()
307 g_free (str_path); in mc_config_get_full_vpath()
/dports/misc/mc-nox11/mc-4.8.27/lib/mcconfig/
H A Dpaths.c302 char *str_path; in mc_config_get_full_vpath() local
304 str_path = mc_config_get_full_path (config_name); in mc_config_get_full_vpath()
306 ret_vpath = vfs_path_from_str (str_path); in mc_config_get_full_vpath()
307 g_free (str_path); in mc_config_get_full_vpath()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/zlib/google/
H A Dzip_writer.cc43 std::string str_path = path.AsUTF8Unsafe(); in OpenNewFileEntry() local
45 base::ReplaceSubstringsAfterOffset(&str_path, 0u, "\\", "/"); in OpenNewFileEntry()
48 str_path += "/"; in OpenNewFileEntry()
50 return zip::internal::ZipOpenNewFileInZip(zip_file, str_path, last_modified); in OpenNewFileEntry()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/zlib/google/
H A Dzip_writer.cc44 std::string str_path = path.AsUTF8Unsafe(); in OpenNewFileEntry() local
46 base::ReplaceSubstringsAfterOffset(&str_path, 0u, "\\", "/"); in OpenNewFileEntry()
49 str_path += "/"; in OpenNewFileEntry()
51 return zip::internal::ZipOpenNewFileInZip(zip_file, str_path, last_modified); in OpenNewFileEntry()
/dports/lang/v8/v8-9.6.180.12/third_party/zlib/google/
H A Dzip_writer.cc76 std::string str_path = path.AsUTF8Unsafe(); in OpenNewFileEntry() local
79 base::ReplaceSubstringsAfterOffset(&str_path, 0u, "\\", "/"); in OpenNewFileEntry()
85 str_path += "/"; in OpenNewFileEntry()
90 return zip::internal::ZipOpenNewFileInZip(zip_file_, str_path, last_modified, in OpenNewFileEntry()
/dports/security/nmap/nmap-7.91/nselib/
H A Dafp.lua1407 WalkDirTree = function( self, str_path )
1420 item.DirectoryName = str_path
1440 ReadFile = function( self, str_path )
1444 local p = Util.SplitPath( str_path )
1487 WriteFile = function( self, str_path, fdata )
1491 local p = Util.SplitPath( str_path )
1652 DirTree = function( self, str_path, options )
1655 return self:Dir( str_path, options )
1797 CreateDir = function( self, str_path )
1799 local p = Util.SplitPath( str_path )
[all …]
/dports/devel/py-nbdime/nbdime-3.1.1/nbdime/merging/
H A Ddecisions.py738 str_path = join_path(path)
739 if str_path in tree:
742 match_diff = [d for d in tree[str_path]['diff'] if d.key == line[0]]
750 tree[str_path]['diff'].extend(subdiffs)
752 tree[str_path]['diff'].extend(subdiffs)
757 tree[str_path] = {'diff': subdiffs, 'path': path}
758 sorted_paths.append(str_path)
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/libs/geometry/index/test/algorithms/
H A Dpath_intersection.cpp72 …std::string const str_path = "LINESTRING(1535000 191000, 1873000 191000, 1873000 300000, 1536119 3… in test_large_integers() local
75 bg::read_wkt(str_path, int_path); in test_large_integers()
76 bg::read_wkt(str_path, double_path); in test_large_integers()
/dports/devel/hyperscan/boost_1_75_0/libs/geometry/index/test/algorithms/
H A Dpath_intersection.cpp72 …std::string const str_path = "LINESTRING(1535000 191000, 1873000 191000, 1873000 300000, 1536119 3… in test_large_integers() local
75 bg::read_wkt(str_path, int_path); in test_large_integers()
76 bg::read_wkt(str_path, double_path); in test_large_integers()
/dports/lang/python310/Python-3.10.1/Lib/importlib/
H A D_common.py31 str_path = str(path)
32 parent, file_name = os.path.split(str_path)
/dports/www/firefox/firefox-99.0/third_party/python/virtualenv/__virtualenv__/importlib_resources-3.2.1-py2.py3-none-any/importlib_resources/
H A D_common.py33 str_path = str(path)
34 parent, file_name = os.path.split(str_path)
/dports/www/firefox/firefox-99.0/third_party/python/virtualenv/__virtualenv__/importlib_resources-3.3.1-py2.py3-none-any/importlib_resources/
H A D_common.py33 str_path = str(path)
34 parent, file_name = os.path.split(str_path)
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/virtualenv/__virtualenv__/importlib_resources-3.2.1-py2.py3-none-any/importlib_resources/
H A D_common.py33 str_path = str(path)
34 parent, file_name = os.path.split(str_path)
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/virtualenv/__virtualenv__/importlib_resources-3.3.0-py2.py3-none-any/importlib_resources/
H A D_common.py33 str_path = str(path)
34 parent, file_name = os.path.split(str_path)

1234567