Home
last modified time | relevance | path

Searched refs:toProcess (Results 1 – 25 of 198) sorted by relevance

12345678

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.expression/src/main/java/org/springframework/expression/spel/standard/
H A DTokenizer.java37 char[] toProcess; field in Tokenizer
45 this.max = toProcess.length; in Tokenizer()
52 char ch = toProcess[pos]; in process()
210 char ch = toProcess[pos]; in lexQuotedStringLiteral()
213 if (toProcess[pos+1]=='\'') { in lexQuotedStringLiteral()
233 char ch = toProcess[pos]; in lexDoubleQuotedStringLiteral()
263 char ch = toProcess[pos+1]; in lexNumericLiteral()
286 } while (isDigit(toProcess[pos])); in lexNumericLiteral()
289 ch = toProcess[pos]; in lexNumericLiteral()
330 ch = toProcess[pos]; in lexNumericLiteral()
[all …]
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/src/mkvtoolnix-gui/
H A Dgui_cli_parser.cpp24 QStringList *toProcess{}; member in mtx::gui::GuiCliParserPrivate
90 *p->toProcess << arg; in handleFileNameArg()
96 p->toProcess = &p->editChapters; in setChaptersMode()
102 p->toProcess = &p->editHeaders; in setHeadersMode()
108 p->toProcess = &p->runInfoOn; in setInfoMode()
114 p->toProcess = &p->addToMerge; in setMergeMode()
120 p->toProcess = &p->addToMerge; in run()
163 args << ( p->toProcess == &p->runInfoOn ? Q("--info") in rebuildCommandLine()
164 : p->toProcess == &p->editHeaders ? Q("--edit-headers") in rebuildCommandLine()
165 : p->toProcess == &p->editChapters ? Q("--edit-chapters") in rebuildCommandLine()
[all …]
/dports/games/minetest/minetest-5.4.1/src/script/cpp_api/
H A Ds_async.cpp218 LuaJobInfo toProcess = jobDispatcher->getJob(); in run() local
220 if (!toProcess.valid || stopRequested()) { in run()
233 toProcess.serializedFunction.data(), in run()
234 toProcess.serializedFunction.size()); in run()
236 toProcess.serializedParams.data(), in run()
237 toProcess.serializedParams.size()); in run()
242 toProcess.serializedResult = ""; in run()
247 toProcess.serializedResult = std::string(retval, length); in run()
253 jobDispatcher->putJobResult(toProcess); in run()
/dports/games/openra/OpenRA-release-20200503/OpenRA.Mods.Common/Traits/World/
H A DDomainIndex.cs154 var toProcess = new Stack<ushort>(); in HasConnection()
155 toProcess.Push(d1); in HasConnection()
157 while (toProcess.Any()) in HasConnection()
159 var current = toProcess.Pop(); in HasConnection()
169 toProcess.Push(neighbor); in HasConnection()
204 var toProcess = new Queue<CPos>(); in BuildDomains()
205 toProcess.Enqueue(MPos.Zero.ToCPos(map)); in BuildDomains()
208 while (toProcess.Count != 0) in BuildDomains()
210 var start = toProcess.Dequeue(); in BuildDomains()
233 toProcess.Enqueue(n); in BuildDomains()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/mlir/lib/Analysis/
H A DLiveness.cpp116 llvm::SetVector<Block *> toProcess; in buildBlockMapping() local
125 toProcess.insert(block.pred_begin(), block.pred_end()); in buildBlockMapping()
129 while (!toProcess.empty()) { in buildBlockMapping()
130 Block *current = toProcess.pop_back_val(); in buildBlockMapping()
172 SmallVector<Block *, 8> toProcess; in resolveLiveness() local
180 toProcess.push_back(currentBlock); in resolveLiveness()
187 toProcess.push_back(useBlock); in resolveLiveness()
190 while (!toProcess.empty()) { in resolveLiveness()
192 Block *block = toProcess.back(); in resolveLiveness()
193 toProcess.pop_back(); in resolveLiveness()
[all …]
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-a930583ec379/internal/repotools/cmd/makerelative/
H A Dmain.go203 var toProcess []*modfile.Require
205 toProcess = append(toProcess, mod.Require...)
207 for len(toProcess) > 0 {
208 req, toProcess = toProcess[0], toProcess[1:]
237 toProcess = append(toProcess, reqMod.Require...)
/dports/security/vault/aws-sdk-go-v2-1.5.0/internal/repotools/cmd/makerelative/
H A Dmain.go203 var toProcess []*modfile.Require
205 toProcess = append(toProcess, mod.Require...)
207 for len(toProcess) > 0 {
208 req, toProcess = toProcess[0], toProcess[1:]
237 toProcess = append(toProcess, reqMod.Require...)
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/lib/Analysis/
H A DLiveness.cpp145 llvm::SetVector<Block *> toProcess; in buildBlockMapping() local
152 toProcess.insert(block.pred_begin(), block.pred_end()); in buildBlockMapping()
156 while (!toProcess.empty()) { in buildBlockMapping()
157 Block *current = toProcess.pop_back_val(); in buildBlockMapping()
199 SmallVector<Block *, 8> toProcess; in resolveLiveness() local
207 toProcess.push_back(currentBlock); in resolveLiveness()
214 toProcess.push_back(useBlock); in resolveLiveness()
217 while (!toProcess.empty()) { in resolveLiveness()
219 Block *block = toProcess.back(); in resolveLiveness()
220 toProcess.pop_back(); in resolveLiveness()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/lib/Analysis/
H A DLiveness.cpp126 SetVector<Block *> toProcess; in buildBlockMapping() local
133 toProcess.insert(block->pred_begin(), block->pred_end()); in buildBlockMapping()
137 while (!toProcess.empty()) { in buildBlockMapping()
138 Block *current = toProcess.pop_back_val(); in buildBlockMapping()
179 SmallVector<Block *, 8> toProcess; in resolveLiveness() local
187 toProcess.push_back(currentBlock); in resolveLiveness()
194 toProcess.push_back(useBlock); in resolveLiveness()
197 while (!toProcess.empty()) { in resolveLiveness()
199 Block *block = toProcess.back(); in resolveLiveness()
200 toProcess.pop_back(); in resolveLiveness()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/lib/Analysis/
H A DLiveness.cpp131 llvm::SetVector<Block *> toProcess; in buildBlockMapping() local
138 toProcess.insert(block->pred_begin(), block->pred_end()); in buildBlockMapping()
142 while (!toProcess.empty()) { in buildBlockMapping()
143 Block *current = toProcess.pop_back_val(); in buildBlockMapping()
185 SmallVector<Block *, 8> toProcess; in resolveLiveness() local
193 toProcess.push_back(currentBlock); in resolveLiveness()
200 toProcess.push_back(useBlock); in resolveLiveness()
203 while (!toProcess.empty()) { in resolveLiveness()
205 Block *block = toProcess.back(); in resolveLiveness()
206 toProcess.pop_back(); in resolveLiveness()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/lib/Analysis/
H A DLiveness.cpp131 llvm::SetVector<Block *> toProcess; in buildBlockMapping() local
138 toProcess.insert(block->pred_begin(), block->pred_end()); in buildBlockMapping()
142 while (!toProcess.empty()) { in buildBlockMapping()
143 Block *current = toProcess.pop_back_val(); in buildBlockMapping()
185 SmallVector<Block *, 8> toProcess; in resolveLiveness() local
193 toProcess.push_back(currentBlock); in resolveLiveness()
200 toProcess.push_back(useBlock); in resolveLiveness()
203 while (!toProcess.empty()) { in resolveLiveness()
205 Block *block = toProcess.back(); in resolveLiveness()
206 toProcess.pop_back(); in resolveLiveness()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/lib/Analysis/
H A DLiveness.cpp126 SetVector<Block *> toProcess; in buildBlockMapping() local
133 toProcess.insert(block->pred_begin(), block->pred_end()); in buildBlockMapping()
137 while (!toProcess.empty()) { in buildBlockMapping()
138 Block *current = toProcess.pop_back_val(); in buildBlockMapping()
179 SmallVector<Block *, 8> toProcess; in resolveLiveness() local
187 toProcess.push_back(currentBlock); in resolveLiveness()
194 toProcess.push_back(useBlock); in resolveLiveness()
197 while (!toProcess.empty()) { in resolveLiveness()
199 Block *block = toProcess.back(); in resolveLiveness()
200 toProcess.pop_back(); in resolveLiveness()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/lib/Analysis/
H A DLiveness.cpp131 llvm::SetVector<Block *> toProcess; in buildBlockMapping() local
138 toProcess.insert(block->pred_begin(), block->pred_end()); in buildBlockMapping()
142 while (!toProcess.empty()) { in buildBlockMapping()
143 Block *current = toProcess.pop_back_val(); in buildBlockMapping()
185 SmallVector<Block *, 8> toProcess; in resolveLiveness() local
193 toProcess.push_back(currentBlock); in resolveLiveness()
200 toProcess.push_back(useBlock); in resolveLiveness()
203 while (!toProcess.empty()) { in resolveLiveness()
205 Block *block = toProcess.back(); in resolveLiveness()
206 toProcess.pop_back(); in resolveLiveness()
[all …]
/dports/www/wt/wt-4.6.1/src/Wt/
H A DWCssStyleSheet.C257 const auto& toProcess = rules_; in cssText() local
259 for (unsigned i = 0; i < toProcess.size(); ++i) { in cssText()
260 auto rule = toProcess[i].get(); in cssText()
264 const auto& toProcess = rulesAdded_; in cssText() local
266 for (unsigned i = 0; i < toProcess.size(); ++i) { in cssText()
267 auto rule = toProcess[i]; in cssText()
311 const auto& toProcess = rules_; in javaScriptUpdate() local
313 for (unsigned i = 0; i < toProcess.size(); ++i) { in javaScriptUpdate()
314 auto rule = toProcess[i].get(); in javaScriptUpdate()
321 const auto& toProcess = rulesAdded_; in javaScriptUpdate() local
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/lib/Analysis/
H A DLiveness.cpp126 SetVector<Block *> toProcess; in buildBlockMapping() local
133 toProcess.insert(block->pred_begin(), block->pred_end()); in buildBlockMapping()
137 while (!toProcess.empty()) { in buildBlockMapping()
138 Block *current = toProcess.pop_back_val(); in buildBlockMapping()
179 SmallVector<Block *, 8> toProcess; in resolveLiveness() local
187 toProcess.push_back(currentBlock); in resolveLiveness()
194 toProcess.push_back(useBlock); in resolveLiveness()
197 while (!toProcess.empty()) { in resolveLiveness()
199 Block *block = toProcess.back(); in resolveLiveness()
200 toProcess.pop_back(); in resolveLiveness()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/lib/Analysis/
H A DLiveness.cpp126 SetVector<Block *> toProcess;
133 toProcess.insert(block->pred_begin(), block->pred_end());
137 while (!toProcess.empty()) {
138 Block *current = toProcess.pop_back_val();
179 SmallVector<Block *, 8> toProcess;
187 toProcess.push_back(currentBlock);
194 toProcess.push_back(useBlock);
197 while (!toProcess.empty()) {
199 Block *block = toProcess.back();
200 toProcess.pop_back();
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DJFR.java73 ArrayList<String> toProcess = new ArrayList<>(Arrays.asList(phaseNames)); in registerPhases() local
74 toProcess.removeAll(phaseToId.keySet()); in registerPhases()
75 … int pid = compilerToVM().registerCompilerPhases(toProcess.toArray(new String[toProcess.size()])); in registerPhases()
76 for (String phase : toProcess) { in registerPhases()
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/prometheus/prometheus/vendor/k8s.io/client-go/util/workqueue/
H A Dparallelizer.go30 toProcess := make(chan int, pieces)
32 toProcess <- i
34 close(toProcess)
46 for piece := range toProcess {
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/utils/
H A DGenomeLocSortedSet.java336 Stack<GenomeLoc> toProcess = new Stack<>(); in subtractRegions() local
340 toProcess.addAll(mArray); in subtractRegions()
341 Collections.reverse(toProcess); in subtractRegions()
346 while ( ! toProcess.empty() ) { // while there's still stuff to process in subtractRegions()
348 … good.addAll(toProcess); // no more excludes, all the processing stuff is good in subtractRegions()
352 GenomeLoc p = toProcess.peek(); in subtractRegions()
356 toProcess.pop(); in subtractRegions()
358 toProcess.push(newP); in subtractRegions()
360 good.add(toProcess.pop()); // p is now good in subtractRegions()
364 good.add(toProcess.pop()); // p stops before e starts, p is good in subtractRegions()
/dports/games/freeminer/freeminer-0.4.10.4/src/script/cpp_api/
H A Ds_async.cpp274 LuaJobInfo toProcess = jobDispatcher->getJob(); in Thread() local
276 if (toProcess.valid == false || StopRequested()) { in Thread()
290 toProcess.serializedFunction.data(), in Thread()
291 toProcess.serializedFunction.size()); in Thread()
293 toProcess.serializedParams.data(), in Thread()
294 toProcess.serializedParams.size()); in Thread()
298 toProcess.serializedResult = ""; in Thread()
303 toProcess.serializedResult = std::string(retval, length); in Thread()
309 jobDispatcher->putJobResult(toProcess); in Thread()
/dports/security/vault/aws-sdk-go-v2-fdbaadbce5fd/internal/repotools/cmd/makerelative/
H A Dmain.go182 var toProcess []*modfile.Require
184 toProcess = append(toProcess, mod.Require...)
186 for len(toProcess) > 0 {
187 req, toProcess = toProcess[0], toProcess[1:]
213 toProcess = append(toProcess, reqMod.Require...)
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/aws/aws-sdk-go-v2/internal/repotools/cmd/makerelative/
H A Dmain.go182 var toProcess []*modfile.Require
184 toProcess = append(toProcess, mod.Require...)
186 for len(toProcess) > 0 {
187 req, toProcess = toProcess[0], toProcess[1:]
213 toProcess = append(toProcess, reqMod.Require...)
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-be1c89938486/internal/repotools/cmd/makerelative/
H A Dmain.go182 var toProcess []*modfile.Require
184 toProcess = append(toProcess, mod.Require...)
186 for len(toProcess) > 0 {
187 req, toProcess = toProcess[0], toProcess[1:]
213 toProcess = append(toProcess, reqMod.Require...)
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-credentials-v1.1.1/internal/repotools/cmd/makerelative/
H A Dmain.go182 var toProcess []*modfile.Require
184 toProcess = append(toProcess, mod.Require...)
186 for len(toProcess) > 0 {
187 req, toProcess = toProcess[0], toProcess[1:]
213 toProcess = append(toProcess, reqMod.Require...)
/dports/security/vault/vault-1.8.2/vendor/github.com/aws/aws-sdk-go-v2/internal/repotools/cmd/makerelative/
H A Dmain.go182 var toProcess []*modfile.Require
184 toProcess = append(toProcess, mod.Require...)
186 for len(toProcess) > 0 {
187 req, toProcess = toProcess[0], toProcess[1:]
213 toProcess = append(toProcess, reqMod.Require...)

12345678