Home
last modified time | relevance | path

Searched +refs:scope +refs:set +refs:at +refs:fallback (Results 1 – 25 of 6902) sorted by relevance

12345678910>>...277

/dports/lang/racket/racket-8.3/src/expander/syntax/
H A Dscope.rkt73 scope-set-at-fallback))
161 ;; To compute a syntax's set of scopes at a given phase, the
352 (define (multi-scope-to-scope-at-phase ms phase)
364 (multi-scope-to-scope-at-phase ms phase))))))
505 ;; manipulate the multi scope, instead (at a particular
547 [else (fallback-push (set-add smss sms)
852 ;; Assemble the complete set of scopes at a given phase by extracting
855 (scope-set-at-fallback s (fallback-first (syntax-shifted-multi-scopes s)) phase))
857 (define (scope-set-at-fallback s smss phase)
861 (set-add scopes (multi-scope-to-scope-at-phase (shifted-multi-scope-multi-scope sms)
[all …]
H A Ddebug.rkt2 (require "../common/set.rkt"
5 "fallback.rkt"
16 (for/list ([smss (in-list (fallback->list (syntax-shifted-multi-scopes s)))])
20 (define s-scs (scope-set-at-fallback s smss phase))
21 (define context (scope-set->context s-scs))
43 (for*/fold ([bindings null] [covered-scope-sets (set)])
48 (not (set-member? covered-scope-sets scs))))
52 'context (scope-set->context scs)
56 (set-add covered-scope-sets scs))))
66 'context (scope-set->context scs)
[all …]
/dports/lang/racket-minimal/racket-8.3/src/expander/syntax/
H A Dscope.rkt73 scope-set-at-fallback))
161 ;; To compute a syntax's set of scopes at a given phase, the
352 (define (multi-scope-to-scope-at-phase ms phase)
364 (multi-scope-to-scope-at-phase ms phase))))))
505 ;; manipulate the multi scope, instead (at a particular
547 [else (fallback-push (set-add smss sms)
852 ;; Assemble the complete set of scopes at a given phase by extracting
855 (scope-set-at-fallback s (fallback-first (syntax-shifted-multi-scopes s)) phase))
857 (define (scope-set-at-fallback s smss phase)
861 (set-add scopes (multi-scope-to-scope-at-phase (shifted-multi-scope-multi-scope sms)
[all …]
H A Ddebug.rkt2 (require "../common/set.rkt"
5 "fallback.rkt"
16 (for/list ([smss (in-list (fallback->list (syntax-shifted-multi-scopes s)))])
20 (define s-scs (scope-set-at-fallback s smss phase))
21 (define context (scope-set->context s-scs))
43 (for*/fold ([bindings null] [covered-scope-sets (set)])
48 (not (set-member? covered-scope-sets scs))))
52 'context (scope-set->context scs)
56 (set-add covered-scope-sets scs))))
66 'context (scope-set->context scs)
[all …]
/dports/lang/racket/racket-8.3/src/expander/expand/
H A Dsyntax-id-error.rkt4 "../syntax/scope.rkt"
29 (define relevant-scope-sets
37 (for/list ([fallback (in-list fallbacks)]
39 (loop fallback layer))))))
41 (if (null? relevant-scope-sets)
42 (set)
43 (for/fold ([s (list->set (car relevant-scope-sets))]) ([l (in-list relevant-scope-sets)])
44 (set-intersect s (list->set l)))))
65 (for/list ([fallback (in-list fallbacks)]
67 (loop fallback layer))))))
[all …]
/dports/lang/racket-minimal/racket-8.3/src/expander/expand/
H A Dsyntax-id-error.rkt4 "../syntax/scope.rkt"
29 (define relevant-scope-sets
37 (for/list ([fallback (in-list fallbacks)]
39 (loop fallback layer))))))
41 (if (null? relevant-scope-sets)
42 (set)
43 (for/fold ([s (list->set (car relevant-scope-sets))]) ([l (in-list relevant-scope-sets)])
44 (set-intersect s (list->set l)))))
65 (for/list ([fallback (in-list fallbacks)]
67 (loop fallback layer))))))
[all …]
/dports/lang/fennel/fennel-1.0.0/src/fennel/
H A Dspecials.fnl254 (set f-scope.vararg true)
334 (fn SPECIALS.set [ast scope parent]
343 (fn set-forcibly!* [ast scope parent]
731 (set f-scope.vararg true))
919 (set this-scope this-scope.parent)
1174 (fn include-circular-fallback [mod modexpr fallback ast]
1178 (fallback modexpr)))
1190 (if opts.fallback
1198 (include-circular-fallback mod modexpr opts.fallback ast)
1205 opts.fallback (opts.fallback modexpr)
[all …]
H A Dcompiler.fnl59 (set scopes.global (make-scope))
61 (set scopes.compiler (make-scope scopes.global))
97 aren't on the list. This list is set at the compiler entry points of compile
144 (set utils.root.scope.gensym-append (+ (or utils.root.scope.gensym-append 0) 1))
418 _ (set scopes.macro scope)
424 (set scopes.macro old-scope)
655 ;; chunks at the top of the parent chunk rather than just at the
763 (fn opts.fallback [e]
781 (set scope.specials.require require-include))
782 (set (utils.root.chunk utils.root.scope utils.root.options)
[all …]
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/reportsDashboards/node_modules/i18n-js/
H A DCHANGELOG.md123 (v3.0.0.rc1 released at 2012-05-10)
158 - [JS] Fix I18n pluralization fallback when tree is empty
209 - [Ruby] Fix of missing initializer at sprockets. ([#371](https://github.com/fnando/i18n-js/pull/37…
248 - [JS] Force currency number sign to be at first place using `sign_first` option, default to `true`
254 - [JS] You can now set `I18n.missingBehavior='guess'` to have the scope string output as text inste…
255 "[missing `scope`]" message when no translation is available.
262 - [JS] Fix missing translation message when scope is passed in options
323 …er exports locales other than those in `I18n.available_locales`, if `I18n.available_locales` is set
324 - I18.t supports the base scope through the options argument
325 - I18.t accepts an array as the scope
[all …]
/dports/lang/racket/racket-8.3/src/expander/namespace/
H A Dapi.rkt3 (only-in "../syntax/scope.rkt" add-scopes push-scope syntax-scope-set)
4 (only-in "../syntax/fallback.rkt" fallback-first)
15 "../common/set.rkt"
52 (define ns (namespace->namespace-at-phase (make-namespace)
64 (define post-scope (post-expansion-scope (root-expand-context-post-expansion root-ctx)))
67 … (syntax-scope-set (root-expand-context-all-scopes-stx root-ctx)
72 (syntax-transfer-shifts (add-scopes (push-scope s post-scope)
90 ;; Add scope everywhere:
254 (set->list
255 (set-union
[all …]
/dports/lang/racket-minimal/racket-8.3/src/expander/namespace/
H A Dapi.rkt3 (only-in "../syntax/scope.rkt" add-scopes push-scope syntax-scope-set)
4 (only-in "../syntax/fallback.rkt" fallback-first)
15 "../common/set.rkt"
52 (define ns (namespace->namespace-at-phase (make-namespace)
64 (define post-scope (post-expansion-scope (root-expand-context-post-expansion root-ctx)))
67 … (syntax-scope-set (root-expand-context-all-scopes-stx root-ctx)
72 (syntax-transfer-shifts (add-scopes (push-scope s post-scope)
90 ;; Add scope everywhere:
254 (set->list
255 (set-union
[all …]
/dports/lang/solidity/solidity_0.8.11/libsolidity/codegen/ir/
H A DIRGenerator.cpp57 set<FunctionDefinition const*> _generatedFunctions in verifyCallGraph()
262 set<FunctionDefinition const*> functions; in generateQueuedFunctions()
441 assignRetParams += retParams.at(i) + " := " + retParamsIn.at(i) + "\n"; in generateModifier()
532 assignRetParams += retParams.at(i) + " := " + retParamsIn.at(i) + "\n"; in generateFunctionWithModifierInner()
771 dynamic_cast<ContractDefinition const*>(baseConstructor->scope()), in evaluateConstructorArguments()
785 dynamic_cast<ContractDefinition const*>(baseConstructor->scope()), in evaluateConstructorArguments()
798 *(arguments->at(i)), in evaluateConstructorArguments()
1043 if (FunctionDefinition const* fallback = _contract.fallbackFunction()) in dispatchRoutine() local
1047 if (!fallback->isPayable()) in dispatchRoutine()
1049 if (fallback->parameters().empty()) in dispatchRoutine()
[all …]
/dports/science/gromacs/gromacs-2021.4/cmake/
H A DgmxSetBuildInformation.cmake8 # top-level source directory and at http://www.gromacs.org.
13 # of the License, or (at your option) any later version.
31 # official version at http://www.gromacs.org.
39 # The following variables will be set to the user/host/cpu used for
56 set(_reason ", cross-compiled")
59 # Run the cpu detection. If it produces an empty output, set a
60 # local value in the parent scope with a suitable fallback (which
66 set(OUTPUT_VALUE "${DEFAULT_VALUE}")
68 set(OUTPUT_VALUE ${CPU_DETECTION_${UPPERTYPE}})
70 set(BUILD_CPU_${UPPERTYPE} ${OUTPUT_VALUE} PARENT_SCOPE)
/dports/graphics/qgis/qgis-3.22.3/python/core/auto_generated/settings/
H A Dqgssettings.sip.in30 The path to the Global Settings storage can be set before constructing the :py:class:`QgsSettings`
75 QgsSettings( QSettings::Scope scope, const QString &organization,
81 If scope is QSettings.UserScope, the QSettings object searches user-specific settings first,
82 before it searches system-wide settings as a fallback. If scope is QSettings.SystemScope,
98 If scope is QSettings.UserScope, the QSettings object searches user-specific settings first,
99 before it searches system-wide settings as a fallback. If scope is QSettings.SystemScope,
136 set previously with a call to QCoreApplication.setOrganizationName(),
150 are based on the group. By default, no group is set.
214 …ttings.remove`, and :py:func:`~QgsSettings.contains` will operate on the array entry at that index.
220 An optional Section argument can be used to set a value to a specific Section.
[all …]
/dports/graphics/qgis-ltr/qgis-3.16.16/python/core/auto_generated/
H A Dqgssettings.sip.in30 The path to the Global Settings storage can be set before constructing the QgsSettings
34 QgsSettings provides some shortcuts to get/set namespaced settings from/to a specific section:
74 QgsSettings( QSettings::Scope scope, const QString &organization,
80 If scope is QSettings.UserScope, the QSettings object searches user-specific settings first,
81 before it searches system-wide settings as a fallback. If scope is QSettings.SystemScope,
98 before it searches system-wide settings as a fallback. If scope is QSettings.SystemScope,
135 set previously with a call to QCoreApplication.setOrganizationName(),
149 are based on the group. By default, no group is set.
213 …ttings.remove`, and :py:func:`~QgsSettings.contains` will operate on the array entry at that index.
219 An optional Section argument can be used to set a value to a specific Section.
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Documentation/Changelog/11.0/
H A DDeprecation-92947-DeprecateTYPO3_MODEAndTYPO3_REQUESTTYPEConstants.rst60 * :php:`TYPO3_REQUESTTYPE_AJAX` - Extensions should barely need this at all. If really required,
64 at all - the TYPO3 core may drop this separation at some point in the future, too.
67 to separate code from other use cases. A specific check for an install tool scope should not
100 object has been started, and before the request object is set in globals. The information if a fron…
106 executed code which must change the static state, after the Application object has been set up, will
128 necessary switches, depending on the executed application, are done at a later point in time.
131 JavaScript for the PageRenderer in backend scope to a hook implementation. The hook has later been
145 if they are executed in frontend or backend scope. A use cases is for instance the need to calculate
166 :php:`$GLOBALS['TYPO3_REQUEST']` by the TYPO3 core. This is always set by the :php:`RequestHandler`…
169 for this fallback over time. A call using this fallback looks like::
[all …]
/dports/editors/kakoune/kakoune-2021.11.08/doc/pages/
H A Doptions.asciidoc9 [[set-option]]
13 set-option [-add|-remove] <scope> <name> <values>...
16 <scope> can be *global*, *buffer*, *window* or *current* (See
33 unset-option <scope> <name>
36 Unsetting an option will make it fallback to the value of its parent scope,
37 hence options cannot be unset from the *global* scope.
55 update-option <scope> <name>
213 to `true` in the `global` scope, or current buffer if set in the
215 scope are ignored
343 at the top of the terminal rather than at the bottom
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/cmake/
H A DDakotaMPI.cmake6 # - option to set and use compiler wrapper for CXX
8 # the wrong MPIEXEC if PATH isn't set.
16 # will fallback on CMAKE_CXX_COMPILER as last resort
28 # be set to MPI wrapper) only and omit libs/headers; in this case
41 …" MPI_CXX_COMPILER was set, but will be ignored; Use CMAKE_CXX_COMPILER to specify\n C++ MPI com…
59 # parent scope. Also, INCLUDE_PATH was deprecated in CMake 3.10.
60 set(MPI_CXX_${output} ${MPI_CXX_${output}} PARENT_SCOPE )
80 # This must be done once per directory src/ and test/, and NOT at top-level:
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/polymer2/bower_components/shadycss/
H A Dscoping-shim.min.js.map1fallback","setElementClassRaw","element","call","getIsExtends","localName","typeExtension","is","g…
/dports/sysutils/vector/vector-0.10.0/cargo-crates/rdkafka-sys-2.0.0+1.4.2/librdkafka/
H A DCONFIGURATION.md11 … buffer. Messages larger than this will be passed by reference (zero-copy) at the expense of large…
12at least `fetch.max.bytes` + 512 to allow for protocol overhead; the value is adjusted automatica…
37 … | * | | | low | Error callback (set with rd_kafka_conf_…
40 … | * | | | low | Log callback (set with rd_kafka_conf_…
51 …| * | | | low | Application opaque (set with rd_kafka_conf_…
54set to false, or the ApiVersionRequest fails, the fallback version `broker.version.fallback` will …
56 …rsion.fallback.ms | * | 0 .. 604800000 | 0 | medium | Dictates…
57fallback | * | | 0.10.0 | medium | Older broker vers…
70 … | * | | | low | CA certificate as set by rd_kafka_conf_se…
86scope, and lifeSeconds. The default value for principalClaimName is "sub", the default value for s…
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/Documentation/core-api/
H A Dmemory-allocation.rst49 have a reasonable fallback should be using ``GFP_NOWARN``.
53 of kmem accounting and must have ``__GFP_ACCOUNT`` bit set. There
77 use new scope APIs described in
94 attempt to free memory at all. The most light weight mode which even
104 fallback for a slow path.
107 non sleeping allocation with an expensive fallback so it can access
109 context with an expensive slow path fallback.
136 routines that set memory to zero, like kzalloc(). If you need to
146 The address of a chunk allocated with `kmalloc` is aligned to at least
148 alignment is also guaranteed to be at least the respective size.
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/Documentation/core-api/
H A Dmemory-allocation.rst49 have a reasonable fallback should be using ``GFP_NOWARN``.
53 of kmem accounting and must have ``__GFP_ACCOUNT`` bit set. There
77 use new scope APIs described in
94 attempt to free memory at all. The most light weight mode which even
104 fallback for a slow path.
107 non sleeping allocation with an expensive fallback so it can access
109 context with an expensive slow path fallback.
136 routines that set memory to zero, like kzalloc(). If you need to
146 The address of a chunk allocated with `kmalloc` is aligned to at least
148 alignment is also guaranteed to be at least the respective size.
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/Documentation/core-api/
H A Dmemory-allocation.rst49 have a reasonable fallback should be using ``GFP_NOWARN``.
53 of kmem accounting and must have ``__GFP_ACCOUNT`` bit set. There
77 use new scope APIs described in
94 attempt to free memory at all. The most light weight mode which even
104 fallback for a slow path.
107 non sleeping allocation with an expensive fallback so it can access
109 context with an expensive slow path fallback.
136 routines that set memory to zero, like kzalloc(). If you need to
146 The address of a chunk allocated with `kmalloc` is aligned to at least
148 alignment is also guaranteed to be at least the respective size.
[all …]
/dports/math/octave-forge-parallel/parallel-4.0.1/inst/
H A Dpserver.m23 ## @code{true} by default (TLS with SRP authentication); if set to
25 ## @code{auth_file} can be set to an alternative path to the file with
27 ## (default: 12502) and @code{data_port} (default: 12501) can be set
46 ## has to access must be available at the server machine. This can
48 ## system (which is outside the scope of this package documentation).
57 ## system (which is outside the scope of this package documentation).
71 ## machine will also be contained at some index position of this
77 ## of the command and data channels at the servers and the client
88 ## at the server for server-to-server data connections. Due to
94 ## runs at GNU/Linux, but not at some other operating systems like
[all …]
/dports/net/librdkafka/librdkafka-1.8.2/
H A DCONFIGURATION.md11 … buffer. Messages larger than this will be passed by reference (zero-copy) at the expense of large…
12at least `fetch.max.bytes` + 512 to allow for protocol overhead; the value is adjusted automatica…
38 … | * | | | low | Error callback (set with rd_kafka_conf_…
41 … | * | | | low | Log callback (set with rd_kafka_conf_…
52 …| * | | | low | Application opaque (set with rd_kafka_conf_…
55set to false, or the ApiVersionRequest fails, the fallback version `broker.version.fallback` will …
57 …rsion.fallback.ms | * | 0 .. 604800000 | 0 | medium | Dictates…
58fallback | * | | 0.10.0 | medium | Older broker vers…
72 … | * | | | low | CA certificate as set by rd_kafka_conf_se…
92scope, and lifeSeconds. The default value for principalClaimName is "sub", the default value for s…
[all …]

12345678910>>...277