Home
last modified time | relevance | path

Searched refs:current_paths (Results 1 – 25 of 29) sorted by relevance

12

/dports/ports-mgmt/portfmt/portfmt-1.1.0/portscan/
H A Dstatus.c66 } current_paths; variable
77 current_paths.len = MIN(32, n_threads); in portscan_status_init()
78 current_paths.i = 0; in portscan_status_init()
119 for (size_t i = 0; i < current_paths.len; i++) { in portscan_status_reset()
120 current_paths.buf[i][0] = 0; in portscan_status_reset()
160 strlcpy(current_paths.buf[current_paths.i++ % current_paths.len], port, PATH_MAX); in portscan_status_print()
174 for (size_t i = 0; i < current_paths.len; i++) { in portscan_status_print()
175 if (*current_paths.buf[i] != 0) { in portscan_status_print()
176 array_append(ports, current_paths.buf[i]); in portscan_status_print()
/dports/devel/arcanist/arcanist-b2e715f/src/lint/linter/
H A DArcanistCSharpLinter.php153 $current_paths = array();
159 foreach ($current_paths as $current_path) {
175 $current_paths);
176 $current_paths = array();
180 $current_paths[] = $this->getEngine()->getFilePathOnDisk($path);
185 if (count($current_paths) > 0) {
190 $current_paths);
191 $current_paths = array();
/dports/devel/arcanist-lib/arcanist-b2e715f/src/lint/linter/
H A DArcanistCSharpLinter.php153 $current_paths = array();
159 foreach ($current_paths as $current_path) {
175 $current_paths);
176 $current_paths = array();
180 $current_paths[] = $this->getEngine()->getFilePathOnDisk($path);
185 if (count($current_paths) > 0) {
190 $current_paths);
191 $current_paths = array();
/dports/games/pioneer/pioneer-20210723/src/galaxy/
H A DGalaxyCache.cpp187 std::unique_ptr<PathVector> current_paths; in FillCache() local
203 if (!current_paths) { in FillCache()
204 current_paths.reset(new PathVector); in FillCache()
205 current_paths->reserve(CACHE_JOB_SIZE); in FillCache()
207 current_paths->push_back(*it); in FillCache()
208 if (current_paths->size() >= CACHE_JOB_SIZE) { in FillCache()
209 vec_paths.push_back(std::move(current_paths)); in FillCache()
218 if (current_paths) { in FillCache()
219 vec_paths.push_back(std::move(current_paths)); in FillCache()
/dports/devel/llvm70/llvm-7.0.1.src/utils/lit/lit/llvm/
H A Dconfig.py115 current_paths = self.config.environment.get(variable, None)
116 if current_paths:
117 current_paths = current_paths.split(os.path.pathsep)
118 paths = [norm(p) for p in current_paths]
/dports/devel/llvm11/llvm-11.0.1.src/utils/lit/lit/llvm/
H A Dconfig.py129 current_paths = self.config.environment.get(variable, None)
130 if current_paths:
131 current_paths = current_paths.split(os.path.pathsep)
132 paths = [norm(p) for p in current_paths]
/dports/devel/llvm90/llvm-9.0.1.src/utils/lit/lit/llvm/
H A Dconfig.py124 current_paths = self.config.environment.get(variable, None)
125 if current_paths:
126 current_paths = current_paths.split(os.path.pathsep)
127 paths = [norm(p) for p in current_paths]
/dports/devel/llvm10/llvm-10.0.1.src/utils/lit/lit/llvm/
H A Dconfig.py126 current_paths = self.config.environment.get(variable, None)
127 if current_paths:
128 current_paths = current_paths.split(os.path.pathsep)
129 paths = [norm(p) for p in current_paths]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/utils/lit/lit/llvm/
H A Dconfig.py126 current_paths = self.config.environment.get(variable, None)
127 if current_paths:
128 current_paths = current_paths.split(os.path.pathsep)
129 paths = [norm(p) for p in current_paths]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/utils/lit/lit/llvm/
H A Dconfig.py131 current_paths = self.config.environment.get(variable, None)
132 if current_paths:
133 current_paths = current_paths.split(os.path.pathsep)
134 paths = [norm(p) for p in current_paths]
/dports/devel/llvm80/llvm-8.0.1.src/utils/lit/lit/llvm/
H A Dconfig.py121 current_paths = self.config.environment.get(variable, None)
122 if current_paths:
123 current_paths = current_paths.split(os.path.pathsep)
124 paths = [norm(p) for p in current_paths]
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/utils/lit/lit/llvm/
H A Dconfig.py169 current_paths = self.config.environment.get(variable, None)
170 if current_paths:
171 current_paths = current_paths.split(os.path.pathsep)
172 paths = [norm(p) for p in current_paths]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/utils/lit/lit/llvm/
H A Dconfig.py169 current_paths = self.config.environment.get(variable, None)
170 if current_paths:
171 current_paths = current_paths.split(os.path.pathsep)
172 paths = [norm(p) for p in current_paths]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/autofill_assistant/browser/
H A Dscript_tracker.cc237 std::set<std::string> current_paths; in RunnablesHaveChanged() local
239 current_paths.insert(handle.path); in RunnablesHaveChanged()
241 return pending_runnable_scripts_ != current_paths; in RunnablesHaveChanged()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/autofill_assistant/browser/
H A Dscript_tracker.cc237 std::set<std::string> current_paths; in RunnablesHaveChanged() local
239 current_paths.insert(handle.path); in RunnablesHaveChanged()
241 return pending_runnable_scripts_ != current_paths; in RunnablesHaveChanged()
/dports/audio/ardour6/Ardour-6.8.0/libs/widgets/
H A Dpaths_dialog.cc36 PathsDialog::PathsDialog (Gtk::Window& parent, std::string title, std::string current_paths, std::s… in PathsDialog() argument
58 std::vector <std::string> a = PBD::parse_path(current_paths); in PathsDialog()
/dports/devel/youcompleteme/YouCompleteMe-ab73ca2/third_party/ycmd/ycmd/completers/general/
H A Dfilename_completer.py110 current_paths = ListDirectory( directory )
112 [ re.escape( path ) for path in current_paths ] )
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/utils/lit/lit/llvm/
H A Dconfig.py176 current_paths = self.config.environment.get(variable, None)
177 if current_paths:
178 current_paths = current_paths.split(os.path.pathsep)
179 paths = [norm(p) for p in current_paths]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/utils/lit/lit/llvm/
H A Dconfig.py176 current_paths = self.config.environment.get(variable, None)
177 if current_paths:
178 current_paths = current_paths.split(os.path.pathsep)
179 paths = [norm(p) for p in current_paths]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/utils/lit/lit/llvm/
H A Dconfig.py176 current_paths = self.config.environment.get(variable, None)
177 if current_paths:
178 current_paths = current_paths.split(os.path.pathsep)
179 paths = [norm(p) for p in current_paths]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/utils/lit/lit/llvm/
H A Dconfig.py176 current_paths = self.config.environment.get(variable, None)
177 if current_paths:
178 current_paths = current_paths.split(os.path.pathsep)
179 paths = [norm(p) for p in current_paths]
/dports/graphics/llvm-mesa/llvm-13.0.1.src/utils/lit/lit/llvm/
H A Dconfig.py176 current_paths = self.config.environment.get(variable, None)
177 if current_paths:
178 current_paths = current_paths.split(os.path.pathsep)
179 paths = [norm(p) for p in current_paths]
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/utils/lit/lit/llvm/
H A Dconfig.py176 current_paths = self.config.environment.get(variable, None)
177 if current_paths:
178 current_paths = current_paths.split(os.path.pathsep)
179 paths = [norm(p) for p in current_paths]
/dports/audio/ardour6/Ardour-6.8.0/libs/widgets/widgets/
H A Dpaths_dialog.h36 …PathsDialog (Gtk::Window& parent, std::string, std::string current_paths = "", std::string default…
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/utils/lit/lit/llvm/
H A Dconfig.py129 current_paths = self.config.environment.get(variable, None)
130 if current_paths:
131 current_paths = current_paths.split(os.path.pathsep)
132 paths = [norm(p) for p in current_paths]

12