Home
last modified time | relevance | path

Searched refs:get_separator (Results 1 – 25 of 359) sorted by relevance

12345678910>>...15

/dports/textproc/p5-Data-Report/Data-Report-1.001/lib/Data/Report/Plugin/
H A DCsv.pm22 $self->set_separator(",") unless $self->get_separator;
37 my $sep = $self->get_separator;
65 sub get_separator { $_[0]->{sep} || "," } subroutine
71 my $sep = $self->get_separator;
89 join(shift->get_separator,
108 ({ sep_char => $self->get_separator,
162 if ( $self->get_separator eq "," ) {
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/markdown/extensions/
H A Dfootnotes.py116 ref, rest = reference.split(self.get_separator(), 1)
119 reference = '%s%d%s%s' % (m.group(1), int(m.group(2))+1, self.get_separator(), rest)
121 reference = '%s%d%s%s' % (ref, 2, self.get_separator(), rest)
152 def get_separator(self): member in FootnoteExtension
160 return 'fn%s%d-%s' % (self.get_separator(), self.unique_prefix, id)
162 return 'fn%s%s' % (self.get_separator(), id)
167 … return self.unique_ref('fnref%s%d-%s' % (self.get_separator(), self.unique_prefix, id), found)
169 return self.unique_ref('fnref%s%s' % (self.get_separator(), id), found)
352 ref, rest = link.attrib['href'].split(self.footnotes.get_separator(), 1)
369 fn, rest = li.attrib.get('id', '').split(self.footnotes.get_separator(), 1)
[all …]
/dports/textproc/py-markdown/Markdown-3.3.4/markdown/extensions/
H A Dfootnotes.py107 ref, rest = reference.split(self.get_separator(), 1)
110 reference = '%s%d%s%s' % (m.group(1), int(m.group(2))+1, self.get_separator(), rest)
112 reference = '%s%d%s%s' % (ref, 2, self.get_separator(), rest)
143 def get_separator(self): member in FootnoteExtension
150 return 'fn%s%d-%s' % (self.get_separator(), self.unique_prefix, id)
152 return 'fn{}{}'.format(self.get_separator(), id)
157 … return self.unique_ref('fnref%s%d-%s' % (self.get_separator(), self.unique_prefix, id), found)
159 return self.unique_ref('fnref{}{}'.format(self.get_separator(), id), found)
323 ref, rest = link.attrib['href'].split(self.footnotes.get_separator(), 1)
340 fn, rest = li.attrib.get('id', '').split(self.footnotes.get_separator(), 1)
[all …]
/dports/science/py-dlib/dlib-19.22/dlib/dir_nav/
H A Ddir_nav_kernel_2.cpp44 string::size_type pos = state.full_name.find_last_of(directory::get_separator()); in init()
124 const char sep = get_separator(); in init()
160 get_separator ( in get_separator() function in dlib::directory
208 const char sep = get_separator(); in get_parent()
240 const char sep = get_separator(); in is_root_path()
H A Ddir_nav_kernel_1.cpp45 string::size_type pos = state.full_name.find_last_of(directory::get_separator()); in init()
120 const char sep = get_separator(); in init()
153 get_separator ( in get_separator() function in dlib::directory
192 const char sep = get_separator(); in get_parent()
225 const char sep = get_separator(); in is_root_path()
H A Ddir_nav_kernel_1.h216 static char get_separator (
407 if (path[path.size()-1] != directory::get_separator()) in directory_helper_get_files()
408 path += directory::get_separator(); in directory_helper_get_files()
531 if (path[path.size()-1] != directory::get_separator()) in directory_helper_get_dirs()
532 path += directory::get_separator(); in directory_helper_get_dirs()
H A Ddir_nav_kernel_2.h211 static char get_separator (
350 if (path[path.size()-1] != directory::get_separator()) in directory_helper_get_files()
351 path += directory::get_separator(); in directory_helper_get_files()
507 if (path[path.size()-1] != directory::get_separator()) in directory_helper_get_dirs()
508 path += directory::get_separator(); in directory_helper_get_dirs()
/dports/science/dlib-cpp/dlib-19.22/dlib/dir_nav/
H A Ddir_nav_kernel_2.cpp44 string::size_type pos = state.full_name.find_last_of(directory::get_separator()); in init()
124 const char sep = get_separator(); in init()
160 get_separator ( in get_separator() function in dlib::directory
208 const char sep = get_separator(); in get_parent()
240 const char sep = get_separator(); in is_root_path()
H A Ddir_nav_kernel_1.cpp45 string::size_type pos = state.full_name.find_last_of(directory::get_separator()); in init()
120 const char sep = get_separator(); in init()
153 get_separator ( in get_separator() function in dlib::directory
192 const char sep = get_separator(); in get_parent()
225 const char sep = get_separator(); in is_root_path()
H A Ddir_nav_kernel_1.h216 static char get_separator (
407 if (path[path.size()-1] != directory::get_separator()) in directory_helper_get_files()
408 path += directory::get_separator(); in directory_helper_get_files()
531 if (path[path.size()-1] != directory::get_separator()) in directory_helper_get_dirs()
532 path += directory::get_separator(); in directory_helper_get_dirs()
H A Ddir_nav_kernel_2.h211 static char get_separator (
350 if (path[path.size()-1] != directory::get_separator()) in directory_helper_get_files()
351 path += directory::get_separator(); in directory_helper_get_files()
507 if (path[path.size()-1] != directory::get_separator()) in directory_helper_get_dirs()
508 path += directory::get_separator(); in directory_helper_get_dirs()
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/magic_uv/
H A Dupdater.py37 get_separator,
137 :config.current_addon_path.rfind(get_separator())]
141 "master": "src{}magic_uv".format(get_separator()),
142 "develop": "src{}magic_uv".format(get_separator()),
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/Python-Markdown/markdown/extensions/
H A Dfootnotes.py109 def get_separator(self): member in FootnoteExtension
117 return 'fn%s%d-%s' % (self.get_separator(), self.unique_prefix, id)
119 return 'fn%s%s' % (self.get_separator(), id)
124 return 'fnref%s%d-%s' % (self.get_separator(),
127 return 'fnref%s%s' % (self.get_separator(), id)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/Python-Markdown/markdown/extensions/
H A Dfootnotes.py109 def get_separator(self): member in FootnoteExtension
117 return 'fn%s%d-%s' % (self.get_separator(), self.unique_prefix, id)
119 return 'fn%s%s' % (self.get_separator(), id)
124 return 'fnref%s%d-%s' % (self.get_separator(),
127 return 'fnref%s%s' % (self.get_separator(), id)
/dports/www/bolt/bolt-2.2.24/vendor/bolt/dumper/
H A Dclass.dumper.php914 $html = sprintf($html, $name, Dumper::get_separator() );
1252 Dumper::get_separator(),
1284 $html = sprintf($html, $name, Dumper::get_separator(), get_resource_type($data));
1313 $html = sprintf($html, $name, Dumper::get_separator(), $value);
1333 print Dumper::get_separator() . " <strong class=\"dumper-integer\">$data</strong>";
1357 print Dumper::get_separator() . " <strong class=\"dumper-float\">$data</strong>";
1382 public static function get_separator() function in Dumper
1444 print Dumper::get_separator() . " <strong class=\"dumper-string\">" . htmlspecialchars($_);
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/magic_uv/utils/
H A Daddon_updater.py37 def get_separator(): function
78 return addon_dir + get_separator() + "addon_updater_workspace"
88 filepath = _make_workspace_path(addon_dir) + get_separator() + filename
112 src = workspace_path + get_separator() + offset_path
334 self.__config.repository, info.name, get_separator(),
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/include/deal.II/base/
H A Dpatterns.h478 get_separator() const;
667 get_separator() const;
874 get_separator() const;
1803 s += p->get_separator() + " " + vec[i];
1824 auto v = Utilities::split_string_list(s, p->get_separator());
1879 s += p->get_separator() + " " + vec[i];
1901 auto v = Utilities::split_string_list(s, p->get_separator());
1953 s += p->get_separator() + " " + vec[i];
2049 s = s + p->get_separator() + expressions[i];
2068 Utilities::split_string_list(s, p->get_separator());
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/unittests/Tooling/
H A DDependencyScannerTest.cpp85 auto Sept = llvm::sys::path::get_separator(); in TEST()
134 auto Sept = llvm::sys::path::get_separator(); in TEST()
176 auto Sept = llvm::sys::path::get_separator(); in TEST()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/unittests/Tooling/
H A DDependencyScannerTest.cpp85 auto Sept = llvm::sys::path::get_separator(); in TEST()
132 auto Sept = llvm::sys::path::get_separator(); in TEST()
171 auto Sept = llvm::sys::path::get_separator(); in TEST()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/unittests/Tooling/
H A DDependencyScannerTest.cpp85 auto Sept = llvm::sys::path::get_separator(); in TEST()
134 auto Sept = llvm::sys::path::get_separator(); in TEST()
176 auto Sept = llvm::sys::path::get_separator(); in TEST()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/unittests/Tooling/
H A DDependencyScannerTest.cpp85 auto Sept = llvm::sys::path::get_separator(); in TEST()
134 auto Sept = llvm::sys::path::get_separator(); in TEST()
176 auto Sept = llvm::sys::path::get_separator(); in TEST()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/unittests/Tooling/
H A DDependencyScannerTest.cpp85 auto Sept = llvm::sys::path::get_separator(); in TEST()
134 auto Sept = llvm::sys::path::get_separator(); in TEST()
176 auto Sept = llvm::sys::path::get_separator(); in TEST()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/unittests/Tooling/
H A DDependencyScannerTest.cpp85 auto Sept = llvm::sys::path::get_separator(); in TEST()
132 auto Sept = llvm::sys::path::get_separator(); in TEST()
171 auto Sept = llvm::sys::path::get_separator(); in TEST()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/unittests/Tooling/
H A DDependencyScannerTest.cpp85 auto Sept = llvm::sys::path::get_separator(); in TEST()
134 auto Sept = llvm::sys::path::get_separator(); in TEST()
176 auto Sept = llvm::sys::path::get_separator(); in TEST()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/lldb/source/Commands/
H A DCommandCompletions.cpp117 path::append(Resolved, path::get_separator()); in DiskFilesOrDirectories()
129 path::append(CompletionBuffer, path::get_separator()); in DiskFilesOrDirectories()
141 Storage.append(path::get_separator()); in DiskFilesOrDirectories()
163 assert(!PartialItem.contains(path::get_separator())); in DiskFilesOrDirectories()
208 path::append(CompletionBuffer, path::get_separator()); in DiskFilesOrDirectories()

12345678910>>...15