Home
last modified time | relevance | path

Searched refs:foundAt (Results 1 – 25 of 50) sorted by relevance

12

/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/google/go-jsonnet/
H A Dimports.go108 cache.foundAtVerification[foundAt] = contents
114 contents, foundAt, err := cache.importData(importedFrom, importedPath)
118 if cachedNode, isCached := cache.astCache[foundAt]; isCached {
119 return cachedNode, foundAt, nil
121 node, err := program.SnippetToAST(foundAt, contents.String())
122 cache.astCache[foundAt] = node
123 return node, foundAt, err
155 node, foundAt, err := cache.importAST(importedFrom, importedPath)
160 if cachedPV, isCached := cache.codeCache[foundAt]; !isCached {
162 env := makeInitialEnv(foundAt, i.baseStd)
[all …]
H A Dvm.go231 func (vm *VM) ResolveImport(importedFrom, importedPath string) (foundAt string, err error) {
232 _, foundAt, err = vm.importCache.importData(importedFrom, importedPath)
238 func (vm *VM) ImportData(importedFrom, importedPath string) (contents string, foundAt string, err e…
239 c, foundAt, err := vm.importCache.importData(importedFrom, importedPath)
241 return "", foundAt, err
243 return c.String(), foundAt, err
248 func (vm *VM) ImportAST(importedFrom, importedPath string) (contents ast.Node, foundAt string, err …
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/bladerunner/
H A Dscreen_effects.cpp50 int foundAt = -1; in toggleEntry() local
53 foundAt = i; in toggleEntry()
58 if (skip && foundAt < 0) { in toggleEntry()
68 } else if (!skip && foundAt >= 0 ) { in toggleEntry()
69 _skipEntries.remove_at(foundAt); in toggleEntry()
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/search/
H A Dkateplaintextsearch.cpp126 const int foundAt = in search() local
129 if ((offset <= foundAt) && (foundAt + text.length() <= line_end)) { in search()
130 return KTextEditor::Range(line, foundAt, line, foundAt + text.length()); in search()
/dports/games/scummvm/scummvm-2.5.1/engines/bladerunner/
H A Dscreen_effects.cpp50 int foundAt = -1; in toggleEntry() local
53 foundAt = i; in toggleEntry()
58 if (skip && foundAt < 0) { in toggleEntry()
68 } else if (!skip && foundAt >= 0 ) { in toggleEntry()
69 _skipEntries.remove_at(foundAt); in toggleEntry()
/dports/editors/abiword/abiword-3.0.5/src/wp/ap/gtk/
H A Dap_UnixToolbar_FontCombo.cpp87 int foundAt = -1; in populate() local
95 foundAt = j; in populate()
100 if (foundAt == -1) in populate()
/dports/editors/abiword/abiword-3.0.5/src/af/xap/gtk/
H A Dxap_UnixDlg_Language.cpp172 gint foundAt = -1; in _populateWindowData() local
176 foundAt = i; in _populateWindowData()
181 if (foundAt != -1) { in _populateWindowData()
183 gtk_tree_path_append_index (path, foundAt); in _populateWindowData()
/dports/deskutils/egroupware/egroupware/vendor/pear/pear/PEAR/Start/
H A DCLI.php489 $foundAt = array();
505 $foundAt[] = $i;
512 $includeLine = $arrayIni[$foundAt[0]];
537 $foundAt[] = count($arrayIni); // add a new line if none is present
546 $arrayIni[$foundAt[0]] = $newInclude;
549 $arrayIni[$foundAt[$i]]=';' . trim($arrayIni[$foundAt[$i]]);
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/pear/pear/PEAR/Start/
H A DCLI.php489 $foundAt = array();
505 $foundAt[] = $i;
512 $includeLine = $arrayIni[$foundAt[0]];
537 $foundAt[] = count($arrayIni); // add a new line if none is present
546 $arrayIni[$foundAt[0]] = $newInclude;
549 $arrayIni[$foundAt[$i]]=';' . trim($arrayIni[$foundAt[$i]]);
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build.Tasks/Test/Microsoft.Build.Tasks/
H A DTestMessageLogger.cs183 int foundAt = -1; in CheckAny()
187 foundAt = i; in CheckAny()
192 if (foundAt < 0) in CheckAny()
196 messages.RemoveAt (foundAt); in CheckAny()
/dports/devel/arduino-core/Arduino-b439a77/hardware/arduino/sam/cores/arduino/
H A DWString.cpp650 char *foundAt; in replace() local
652 while ((foundAt = strstr(readFrom, find.buffer)) != NULL) { in replace()
653 memcpy(foundAt, replace.buffer, replace.len); in replace()
654 readFrom = foundAt + replace.len; in replace()
658 while ((foundAt = strstr(readFrom, find.buffer)) != NULL) { in replace()
659 unsigned int n = foundAt - readFrom; in replace()
664 readFrom = foundAt + find.len; in replace()
670 while ((foundAt = strstr(readFrom, find.buffer)) != NULL) { in replace()
671 readFrom = foundAt + find.len; in replace()
/dports/devel/arduino-core/Arduino-b439a77/hardware/arduino/avr/cores/arduino/
H A DWString.cpp648 char *foundAt; in replace() local
650 while ((foundAt = strstr(readFrom, find.buffer)) != NULL) { in replace()
651 memcpy(foundAt, replace.buffer, replace.len); in replace()
652 readFrom = foundAt + replace.len; in replace()
656 while ((foundAt = strstr(readFrom, find.buffer)) != NULL) { in replace()
657 unsigned int n = foundAt - readFrom; in replace()
662 readFrom = foundAt + find.len; in replace()
668 while ((foundAt = strstr(readFrom, find.buffer)) != NULL) { in replace()
669 readFrom = foundAt + find.len; in replace()
/dports/sysutils/gdisk/gptfdisk-1.0.8/
H A Dsupport.cc158 size_t foundAt = 0; in IeeeToInt() local
193 foundAt = suffixes.find(suffix); in IeeeToInt()
194 if (foundAt != string::npos) { in IeeeToInt()
195 bytesPerUnit = UINT64_C(1) << (10 * (foundAt + 1)); in IeeeToInt()
/dports/devel/kdevelop/kdevelop-21.12.3/plugins/clang/codegen/
H A Dadaptsignatureassistant.cpp167 int foundAt = -1; in getSignatureChanges() local
175 foundAt = curOldParam; in getSignatureChanges()
187 if (foundAt < 0) { in getSignatureChanges()
190 oldPositions[curNewParam] = foundAt; in getSignatureChanges()
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/volume/util/fsquota/
H A Dproject.go228 foundAt := -1
234 } else if foundAt != -1 {
239 foundAt = i
243 if foundAt == -1 {
/dports/audio/sonic-visualiser/sonic-visualiser-4.0.1/svgui/widgets/
H A DInteractiveFileFinder.cpp558 QString foundAt = ""; in find() local
560 if ((foundAt = findRelative(location, lastKnownLocation)) != "") { in find()
561 return foundAt; in find()
564 if ((foundAt = findRelative(location, m_lastLocatedLocation)) != "") { in find()
565 return foundAt; in find()
/dports/www/twiki/twiki/bin/
H A Dconfigure122 my $foundAt = "could not be found. ";
129 $foundAt = "was found at $path/$modpath";
131 $foundAt .= ", but I don't have permission to read it.";
137 $reason .= $foundAt;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DMessageHeaders.cs609 int foundAt = -1; in FindAddressingHeader()
617 if (foundAt >= 0) in FindAddressingHeader()
622 foundAt = i; in FindAddressingHeader()
626 return foundAt; in FindAddressingHeader()
631 int foundAt = -1; in FindNonAddressingHeader()
649 foundAt = i; in FindNonAddressingHeader()
655 return foundAt; in FindNonAddressingHeader()
666 int foundAt = -1; in FindHeader()
676 if (foundAt >= 0) in FindHeader()
682 foundAt = i; in FindHeader()
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/cli/cli-20.10.2/vendor/github.com/theupdateframework/notary/tuf/
H A Dtuf.go368 foundAt := utils.FindRoleIndex(tgt.Signed.Delegations.Roles, delgRole.Name)
369 if foundAt < 0 {
372 tgt.Signed.Delegations.Roles[foundAt] = delgRole
534 foundAt := utils.FindRoleIndex(p.Signed.Delegations.Roles, roleName)
536 if foundAt >= 0 {
539 roles = append(roles, p.Signed.Delegations.Roles[:foundAt]...)
540 if foundAt+1 < len(p.Signed.Delegations.Roles) {
541 roles = append(roles, p.Signed.Delegations.Roles[foundAt+1:]...)
/dports/sysutils/docker/docker-ce-18.09.5/components/cli/vendor/github.com/theupdateframework/notary/tuf/
H A Dtuf.go368 foundAt := utils.FindRoleIndex(tgt.Signed.Delegations.Roles, delgRole.Name)
369 if foundAt < 0 {
372 tgt.Signed.Delegations.Roles[foundAt] = delgRole
534 foundAt := utils.FindRoleIndex(p.Signed.Delegations.Roles, roleName)
536 if foundAt >= 0 {
539 roles = append(roles, p.Signed.Delegations.Roles[:foundAt]...)
540 if foundAt+1 < len(p.Signed.Delegations.Roles) {
541 roles = append(roles, p.Signed.Delegations.Roles[foundAt+1:]...)
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/docker/cli/vendor/github.com/theupdateframework/notary/tuf/
H A Dtuf.go368 foundAt := utils.FindRoleIndex(tgt.Signed.Delegations.Roles, delgRole.Name)
369 if foundAt < 0 {
372 tgt.Signed.Delegations.Roles[foundAt] = delgRole
534 foundAt := utils.FindRoleIndex(p.Signed.Delegations.Roles, roleName)
536 if foundAt >= 0 {
539 roles = append(roles, p.Signed.Delegations.Roles[:foundAt]...)
540 if foundAt+1 < len(p.Signed.Delegations.Roles) {
541 roles = append(roles, p.Signed.Delegations.Roles[foundAt+1:]...)
/dports/net/traefik/traefik-2.6.1/vendor/github.com/theupdateframework/notary/tuf/
H A Dtuf.go368 foundAt := utils.FindRoleIndex(tgt.Signed.Delegations.Roles, delgRole.Name)
369 if foundAt < 0 {
372 tgt.Signed.Delegations.Roles[foundAt] = delgRole
534 foundAt := utils.FindRoleIndex(p.Signed.Delegations.Roles, roleName)
536 if foundAt >= 0 {
539 roles = append(roles, p.Signed.Delegations.Roles[:foundAt]...)
540 if foundAt+1 < len(p.Signed.Delegations.Roles) {
541 roles = append(roles, p.Signed.Delegations.Roles[foundAt+1:]...)
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@reduxjs/toolkit/src/query/core/
H A DbuildSlice.ts237 const foundAt = idSubscriptions.indexOf(queryCacheKey)
238 if (foundAt !== -1) {
239 idSubscriptions.splice(foundAt, 1)
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/docker/vendor/github.com/docker/notary/tuf/
H A Dtuf.go369 foundAt := utils.FindRoleIndex(tgt.Signed.Delegations.Roles, delgRole.Name)
370 if foundAt < 0 {
373 tgt.Signed.Delegations.Roles[foundAt] = delgRole
535 foundAt := utils.FindRoleIndex(p.Signed.Delegations.Roles, roleName)
537 if foundAt >= 0 {
540 roles = append(roles, p.Signed.Delegations.Roles[:foundAt]...)
541 if foundAt+1 < len(p.Signed.Delegations.Roles) {
542 roles = append(roles, p.Signed.Delegations.Roles[foundAt+1:]...)
/dports/net/eternalterminal/EternalTerminal-et-v5.1.9/external/
H A Deasylogging++.cc455 std::size_t foundAt = 0; in ignoreComments() local
466 if (foundAt < quotesEnd) { in ignoreComments()
931 while ((foundAt = str.find(replaceWhat, foundAt + 1)) != std::string::npos) { in replaceAll()
940 while ((foundAt = str.find(replaceWhat, foundAt + 1)) != base::type::string_t::npos) { in replaceFirstWithEscape()
941 if (foundAt > 0 && str[foundAt - 1] == base::consts::kFormatSpecifierChar) { in replaceFirstWithEscape()
942 str.erase(foundAt > 0 ? foundAt - 1 : 0, 1); in replaceFirstWithEscape()
943 ++foundAt; in replaceFirstWithEscape()
1506 while ((foundAt = formatCopy.find(specifier, foundAt + 1)) != base::type::string_t::npos) { in parseFromFormat()
1507 if (foundAt > 0 && formatCopy[foundAt - 1] == base::consts::kFormatSpecifierChar) { in parseFromFormat()
1511 formatCopy.erase(foundAt > 0 ? foundAt - 1 : 0, 1); in parseFromFormat()
[all …]

12