Home
last modified time | relevance | path

Searched refs:kinds (Results 1 – 25 of 392) sorted by relevance

12345678910>>...16

/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/generate/
Ddata_unittest.py72 imported_module.kinds[struct.spec] = struct
75 imported_module.kinds[union.spec] = union
78 imported_module.kinds[interface.spec] = interface
81 imported_module.kinds[enum.spec] = enum
86 self.assertIn(struct.spec, module.kinds)
87 self.assertEquals(struct.name, module.kinds[struct.spec].name)
89 self.assertIn(union.spec, module.kinds)
90 self.assertEquals(union.name, module.kinds[union.spec].name)
92 self.assertIn(interface.spec, module.kinds)
93 self.assertEquals(interface.name, module.kinds[interface.spec].name)
[all …]
Dpack_unittest.py32 def _CheckPackSequence(self, kinds, fields, offsets): argument
44 for kind in kinds:
49 self.assertEquals(len(kinds), num_fields)
123 kinds = (mojom.INT32, mojom.Interface('test_interface'))
126 self._CheckPackSequence(kinds, fields, offsets)
132 kinds = (mojom.INT32,
136 self._CheckPackSequence(kinds, fields, offsets)
/external/clang/bindings/python/tests/cindex/
Dtest_cursor_kind.py7 kinds = CursorKind.get_all_kinds()
8 assert CursorKind.UNEXPOSED_DECL in kinds
9 assert CursorKind.TRANSLATION_UNIT in kinds
10 assert CursorKind.VARIABLE_REF in kinds
11 assert CursorKind.LAMBDA_EXPR in kinds
12 assert CursorKind.OBJ_BOOL_LITERAL_EXPR in kinds
13 assert CursorKind.OBJ_SELF_EXPR in kinds
14 assert CursorKind.MS_ASM_STMT in kinds
15 assert CursorKind.MODULE_IMPORT_DECL in kinds
16 assert CursorKind.TYPE_ALIAS_TEMPLATE_DECL in kinds
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
Dtranslate.py113 def _LookupKind(kinds, spec, scope): argument
130 kind = kinds.get(test_spec)
134 return kinds.get(spec)
169 def _Kind(kinds, spec, scope): argument
185 kind = _LookupKind(kinds, spec, scope)
190 kind = _Kind(kinds, spec[1:], scope).MakeNullableKind()
192 kind = mojom.Array(_Kind(kinds, spec[2:], scope))
194 inner_kind = _Kind(kinds, spec[5:], scope)
202 kind = mojom.Array(_Kind(kinds, spec[colon+1:], scope), length)
204 kind = mojom.InterfaceRequest(_Kind(kinds, spec[2:], scope))
[all …]
Dpack_tests.py52 def TestSequence(kinds, fields, offsets): argument
56 for kind in kinds:
61 errors += EXPECT_EQ(len(kinds), num_fields)
84 kinds = (mojom.INT8, mojom.INT32, mojom.INT16, mojom.INT8, mojom.INT8)
88 return TestSequence(kinds, fields, offsets)
92 kinds = (mojom.STRING.MakeNullableKind(),
105 return TestSequence(kinds, fields, offsets)
/external/valgrind/
Ddarwin13.supp10 match-leak-kinds: possible
19 match-leak-kinds: definite
28 match-leak-kinds: definite
40 match-leak-kinds: reachable
50 match-leak-kinds: reachable
60 match-leak-kinds: reachable
71 match-leak-kinds: possible
82 match-leak-kinds: indirect
92 match-leak-kinds: reachable
102 match-leak-kinds: reachable
[all …]
Ddarwin15.supp10 match-leak-kinds: possible
19 match-leak-kinds: definite
28 match-leak-kinds: definite
50 match-leak-kinds: reachable
60 match-leak-kinds: reachable
71 match-leak-kinds: possible
82 match-leak-kinds: definite
92 match-leak-kinds: reachable
102 match-leak-kinds: reachable
112 # match-leak-kinds: definite
[all …]
Ddarwin16.supp10 match-leak-kinds: possible
19 match-leak-kinds: definite
28 match-leak-kinds: definite
50 match-leak-kinds: reachable
60 match-leak-kinds: reachable
71 match-leak-kinds: possible
82 match-leak-kinds: definite
92 match-leak-kinds: reachable
102 match-leak-kinds: reachable
112 # match-leak-kinds: definite
[all …]
Ddarwin14.supp10 match-leak-kinds: possible
19 # match-leak-kinds: definite
28 match-leak-kinds: definite
41 # match-leak-kinds: reachable
51 match-leak-kinds: reachable
61 match-leak-kinds: reachable
72 match-leak-kinds: possible
83 match-leak-kinds: definite
93 match-leak-kinds: reachable
103 match-leak-kinds: reachable
[all …]
Dsolaris12.supp67 match-leak-kinds: reachable
78 match-leak-kinds: reachable
91 match-leak-kinds: reachable
103 match-leak-kinds: reachable
116 match-leak-kinds: reachable
128 match-leak-kinds: reachable
139 match-leak-kinds: reachable
Ddarwin12.supp253 match-leak-kinds: definite
356 match-leak-kinds: reachable
366 match-leak-kinds: reachable
376 match-leak-kinds: reachable
387 match-leak-kinds: possible
398 match-leak-kinds: indirect
408 match-leak-kinds: indirect
418 match-leak-kinds: reachable
428 match-leak-kinds: reachable
438 match-leak-kinds: reachable
[all …]
/external/devlib/devlib/instrument/
D__init__.py298 def reset(self, sites=None, kinds=None, channels=None): argument
300 if kinds is None and sites is None and channels is None:
303 if sites is not None or kinds is not None:
315 if isinstance(kinds, basestring):
316 kinds = [kinds]
319 if (kinds is None or chan.kind in kinds) and \
Dgem5power.py78 def reset(self, sites=None, kinds=None, channels=None): argument
79 super(Gem5PowerInstrument, self).reset(sites, kinds, channels)
Dframes.py27 def reset(self, sites=None, kinds=None, channels=None): argument
28 super(FramesInstrument, self).reset(sites, kinds, channels)
Dmonsoon.py57 def reset(self, sites=None, kinds=None, channels=None): argument
58 super(MonsoonInstrument, self).reset(sites, kinds)
Denergy_probe.py61 def reset(self, sites=None, kinds=None, channels=None): argument
62 super(EnergyProbeInstrument, self).reset(sites, kinds, channels)
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSVals.def1 //===-- SVals.def - Metadata about SVal kinds -------------------*- C++ -*-===//
10 // The list of symbolic values (SVal kinds and sub-kinds) used in the Static
16 // BASIC_SVAL(Id, Parent) - for specific SVal sub-kinds, which are
/external/devlib/devlib/derived/
Denergy.py34 for channel, kinds in channel_map.iteritems():
35 if 'power' in kinds and not 'energy' in kinds:
/external/ltp/testcases/network/stress/
DREADME60 network_stress.whole : 118 kinds 615 tests
61 network_stress.selected : 33 kinds 103 tests
62 network_stress.interface : 13 kinds 27 tests
63 network_stress.route : 12 kinds 22 tests
64 network_stress.broken_ip : 11 kinds 11 tests
65 network_stress.icmp : 6 kinds 42 tests
66 network_stress.udp : 8 kinds 56 tests
67 network_stress.tcp : 22 kinds 308 tests
68 network_stress.multicast : 24 kinds 24 tests
69 network_stress.appl : 22 kinds 22 tests
/external/valgrind/memcheck/tests/
Dlks.vgtest3 vgopts: --leak-check=full --show-leak-kinds=definite,possible,indirect --errors-for-leak-kinds=defi…
/external/v8/tools/sodium/
Dsodium.js31 var kinds = ["FUNCTION", "OPTIMIZED_FUNCTION", "STUB", "BUILTIN",
105 selectedFunctionKind = kinds[index];
390 for (var x = 0; x < kinds.length; ++x) {
393 optionElement.text = kinds[x];
/external/devlib/doc/
Dinstrumentation.rst102 .. method:: Instrument.reset(sites=None, kinds=None, channels=None)
109 ``sites`` and ``kinds`` must both be ``None``.
111 Otherwise, if one of ``sites`` or ``kinds`` is provided, all channels
112 matching the given sites or kinds are enabled. If both are provided then all
113 channels of the given kinds at the given sites are enabled.
115 If none of ``sites``, ``kinds`` or ``channels`` are provided then all
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DComponentDescriptor.java91 Set<Kind> kinds = EnumSet.noneOf(Kind.class); in forAnnotatedElement() local
94 kinds.add(kind); in forAnnotatedElement()
98 kinds.size() <= 1, "%s cannot be annotated with more than one of %s", element, kinds); in forAnnotatedElement() local
99 return Optional.fromNullable(getOnlyElement(kinds, null)); in forAnnotatedElement()
/external/valgrind/gdbserver_tests/
Dmchelp.stdoutB.exp31 [kinds kind1,kind2,...|reachable|possibleleak*|definiteleak]
43 leak_check full kinds indirect,possible
103 [kinds kind1,kind2,...|reachable|possibleleak*|definiteleak]
115 leak_check full kinds indirect,possible
/external/v8/tools/profviz/
Dcomposer.js72 function CodeKind(color, kinds) { argument
77 this.kinds = kinds;
162 if (CodeKinds[name].kinds.indexOf(kind) >= 0) {

12345678910>>...16