Home
last modified time | relevance | path

Searched refs:kinds (Results 1 - 25 of 31) sorted by relevance

12

/third_party/python/Tools/c-analyzer/c_analyzer/
H A D__init__.py34 kinds=None,
38 kinds = KIND.DECLS if kinds is None else (KIND.DECLS & set(kinds))
42 parsed = filter_by_kind(parsed, kinds)
/third_party/python/Tools/c-analyzer/c_parser/
H A Dmatch.py127 kinds = _KIND._TYPE_DECLS
129 kinds = _KIND._TYPE_DECLS
133 kinds = set(kind)
135 kinds = {kind} if okay else set(kind)
137 if item.kind in kinds:
H A Dinfo.py20 # kinds
58 # XXX Treat group as a set of kinds & return in priority order?
830 # All the kinds have *something* even it is unknown.
1564 kinds = KIND.resolve_group(kind)
1565 if decl.kind not in kinds:
/third_party/python/Tools/c-analyzer/cpython/
H A D__main__.py238 parser.add_argument('--kinds', action='append', metavar='KIND[,...]')
240 parser.add_argument(f'--{kind}', dest='kinds',
243 kinds = []
244 for raw in args.kinds or ():
247 kinds.append(kind)
250 args.kinds = set(kinds)
292 kinds=None,
310 if kinds:
311 items = (item for item in items if item.kind in kinds)
[all...]
H A D_analyzer.py123 kinds=KINDS,
/third_party/python/Include/internal/
H A Dpycore_code.h130 * Those kinds represent the source of the initial value and the
142 // kinds of locals (e.g. pos-only arg, varkwargs, local-only).
150 _PyLocals_GetKind(PyObject *kinds, int i) in _PyLocals_GetKind() argument
152 assert(PyBytes_Check(kinds)); in _PyLocals_GetKind()
153 assert(0 <= i && i < PyBytes_GET_SIZE(kinds)); in _PyLocals_GetKind()
154 char *ptr = PyBytes_AS_STRING(kinds); in _PyLocals_GetKind()
159 _PyLocals_SetKind(PyObject *kinds, int i, _PyLocals_Kind kind) in _PyLocals_SetKind() argument
161 assert(PyBytes_Check(kinds)); in _PyLocals_SetKind()
162 assert(0 <= i && i < PyBytes_GET_SIZE(kinds)); in _PyLocals_SetKind()
163 char *ptr = PyBytes_AS_STRING(kinds); in _PyLocals_SetKind()
[all...]
/third_party/node/deps/v8/tools/profview/
H A Dprofview.js216 kinds: ["JS_OPT"],
222 kinds: ["JS_TURBOPROP"],
228 kinds: ["JS_BASELINE"],
234 kinds: ["JS_UNOPT", "BC"],
240 kinds: ["IC"],
246 kinds: ["STUB", "BUILTIN", "REGEXP"],
252 kinds: ["CPP", "LIB"],
258 kinds: ["CPP_EXT"],
264 kinds: ["CPP_PARSE"],
270 kinds
[all...]
/third_party/pulseaudio/scripts/
H A Dgenerate-map-file.sh14 ctags -I ${CTAGS_IDENTIFIER_LIST} -f - --c-kinds=p "$@" | awk '/^pa_/ { print $1 ";" }' | sort
/third_party/python/Tools/c-analyzer/c_common/
H A Dscriptutil.py372 parser.add_argument('--kinds', action='append')
377 kinds = []
378 for kind in ns.pop('kinds') or default or ():
379 kinds.extend(kind.strip().replace(',', ' ').split())
381 if not kinds:
386 for kind in kinds:
/third_party/skia/third_party/externals/spirv-tools/
H A DAndroid.mk193 $(1)/core.insts-unified1.inc $(1)/operand.kinds-unified1.inc \
212 --operand-kinds-output=$(1)/operand.kinds-unified1.inc
215 $(LOCAL_PATH)/source/operand.cpp: $(1)/operand.kinds-unified1.inc
/third_party/spirv-tools/
H A DAndroid.mk208 $(1)/core.insts-unified1.inc $(1)/operand.kinds-unified1.inc \
227 --operand-kinds-output=$(1)/operand.kinds-unified1.inc \
231 $(LOCAL_PATH)/source/operand.cpp: $(1)/operand.kinds-unified1.inc
/third_party/node/deps/v8/src/torque/
H A Dtypes.cc654 std::vector<ObjectSlotKind> kinds; in ComputeArraySlotKind() local
655 ComputeSlotKindsHelper(&kinds, 0, ComputeArrayFields()); in ComputeArraySlotKind()
656 if (kinds.empty()) return base::nullopt; in ComputeArraySlotKind()
657 std::sort(kinds.begin(), kinds.end()); in ComputeArraySlotKind()
658 if (kinds.front() == kinds.back()) return {kinds.front()}; in ComputeArraySlotKind()
659 if (kinds.front() == ObjectSlotKind::kStrongPointer && in ComputeArraySlotKind()
660 kinds in ComputeArraySlotKind()
[all...]
/third_party/python/Tools/scripts/
H A Ddeepfreeze.py61 kinds: bytes) -> Tuple[int, int, int, int]:
66 assert len(names) == len(kinds)
67 for name, kind in zip(names, kinds):
H A Dstable_abi.py64 # even if they're different kinds (e.g. function vs. macro).
68 def select(self, kinds, *, include_abi_only=True, ifdef=None):
71 kinds: set of requested kinds, e.g. {'function', 'macro'}
82 if item.kind not in kinds:
/third_party/openGLES/xml/
H A Dreadme.tex184 \item \tag{kinds} (see section~\ref{tag:kinds}) - defines tags
187 One parameter can be of multiple kinds, separated by commas.
254 \section{Kinds (\tag{kinds} tag)}
255 \label{tag:kinds}
257 The \tag{kinds} tag contain individual \tag{kind} tags describing
261 \subsection{Attributes of (\tag{kinds} tag)}
268 \subsection{Contents of \tag{kinds} tags}
270 Each \tag{kinds} block contains zero or more \tag{kind} tags, in
273 \subsection{Example of a \tag{kinds} ta
[all...]
/third_party/node/deps/v8/src/objects/
H A Djs-function.cc86 V8_WARN_UNUSED_RESULT bool HighestTierOf(CodeKinds kinds, in HighestTierOf() argument
88 DCHECK_EQ((kinds & ~kJSFunctionCodeKindsMask), 0); in HighestTierOf()
91 if (kinds == 0) return false; in HighestTierOf()
93 31 - base::bits::CountLeadingZeros(static_cast<uint32_t>(kinds)); in HighestTierOf()
152 // available code kinds. If any JS code kind exists, we can discard. in CanDiscardCompiled()
155 // in the list of available code kinds, thus we must check for it manually. in CanDiscardCompiled()
/third_party/node/deps/v8/src/compiler/
H A Djs-call-reducer.cc3297 std::vector<ElementsKind>* kinds,
3308 auto kind_ptr = kinds->data();
3310 for (i = 0; i < kinds->size(); i++, kind_ptr++) {
3315 if (i == kinds->size()) kinds->push_back(current_kind);
3347 // TODO(jgruber): May only be needed for holey elements kinds.
5559 std::vector<ElementsKind> kinds;
5560 if (!CanInlineArrayResizingBuiltin(broker(), receiver_maps, &kinds, true)) {
5578 for (size_t i = 0; i < kinds.size(); i++) {
5579 ElementsKind kind = kinds[
[all...]
/third_party/python/Objects/
H A Dcodeobject.c160 PyObject *names, PyObject *kinds) in _Py_set_localsplus_info()
164 _PyLocals_SetKind(kinds, offset, kind); in _Py_set_localsplus_info()
168 get_localsplus_counts(PyObject *names, PyObject *kinds, in get_localsplus_counts() argument
178 _PyLocals_Kind kind = _PyLocals_GetKind(kinds, i); in get_localsplus_counts()
159 _Py_set_localsplus_info(int offset, PyObject *name, _PyLocals_Kind kind, PyObject *names, PyObject *kinds) _Py_set_localsplus_info() argument
/third_party/libunwind/libunwind/doc/
H A Dlibunwind-ia64.tex68 The IA-64-version of \Prog{libunwind} defines three kinds of register
H A Dlibunwind.tex133 the generic implementation which supports both kinds of unwinding. To
/third_party/python/Python/
H A Dcompile.c7936 PyObject *names, PyObject *kinds) in compute_localsplus_info()
7944 // For now we do not distinguish arg kinds. in compute_localsplus_info()
7949 _Py_set_localsplus_info(offset, k, kind, names, kinds); in compute_localsplus_info()
7966 _Py_set_localsplus_info(offset, k, CO_FAST_CELL, names, kinds); in compute_localsplus_info()
7975 _Py_set_localsplus_info(offset, k, CO_FAST_FREE, names, kinds); in compute_localsplus_info()
7935 compute_localsplus_info(struct compiler *c, int nlocalsplus, PyObject *names, PyObject *kinds) compute_localsplus_info() argument
/third_party/node/deps/v8/src/ic/
H A Daccessor-assembler.cc532 // Smi handlers should only be installed for supported elements kinds. in HandleLoadICSmiHandlerCase()
2326 int32_t kinds[] = { in EmitElementLoad() local
2347 Switch(elements_kind, unimplemented_elements_kind, kinds, labels, in EmitElementLoad()
2348 arraysize(kinds)); in EmitElementLoad()
2633 // Unimplemented elements kinds fall back to a runtime call. in GenericElementLoad()
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.cc2598 // kinds to the corresponding non-RAB / GSAB elements kinds.
2702 int32_t kinds[] = {
2721 Switch(elements_kind, &if_dictionary, kinds, labels, arraysize(kinds));
4270 // Handle any nonextensible elements kinds
9930 // TODO(verwaest): Support other elements kinds as well.
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js4234 /** Only the JSDoc scanner produces BacktickToken. The normal scanner produces NoSubstitutionTemplateLiteral and related kinds. */
5525 // NOTE: ES module kinds should be contiguous to more easily check whether a module kind is *any* ES module kind.
5526 // Non-ES module kinds should not come between ES2015 (the earliest ES module kind) and ESNext (the last ES
[all...]
/third_party/typescript/lib/
H A Dtsserverlibrary.js4219 /** Only the JSDoc scanner produces BacktickToken. The normal scanner produces NoSubstitutionTemplateLiteral and related kinds. */
5553 // NOTE: ES module kinds should be contiguous to more easily check whether a module kind is *any* ES module kind.
5554 // Non-ES module kinds should not come between ES2015 (the earliest ES module kind) and ESNext (the last ES
[all...]

Completed in 112 milliseconds

12