Home
last modified time | relevance | path

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

12345678910>>...43

/external/libchrome/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/llvm-project/lldb/source/Target/
DABI.cpp182 if (reg_info->kinds[eRegisterKindGeneric] == LLDB_REGNUM_GENERIC_SP) { in GetFallbackRegisterLocation()
216 if (info.kinds[eRegisterKindEHFrame] != LLDB_INVALID_REGNUM && in AugmentRegisterInfo()
217 info.kinds[eRegisterKindDWARF] != LLDB_INVALID_REGNUM) in AugmentRegisterInfo()
224 if (info.kinds[eRegisterKindEHFrame] == LLDB_INVALID_REGNUM) in AugmentRegisterInfo()
225 info.kinds[eRegisterKindEHFrame] = abi_info.kinds[eRegisterKindEHFrame]; in AugmentRegisterInfo()
226 if (info.kinds[eRegisterKindDWARF] == LLDB_INVALID_REGNUM) in AugmentRegisterInfo()
227 info.kinds[eRegisterKindDWARF] = abi_info.kinds[eRegisterKindDWARF]; in AugmentRegisterInfo()
228 if (info.kinds[eRegisterKindGeneric] == LLDB_INVALID_REGNUM) in AugmentRegisterInfo()
229 info.kinds[eRegisterKindGeneric] = abi_info.kinds[eRegisterKindGeneric]; in AugmentRegisterInfo()
236 if (info.kinds[eRegisterKindEHFrame] == LLDB_INVALID_REGNUM) in AugmentRegisterInfo()
[all …]
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DDynamicRegisterInfo.cpp160 ->kinds[eRegisterKindLLDB]] in SetRegisterInfo()
163 containing_reg_info->kinds[eRegisterKindLLDB]); in SetRegisterInfo()
165 containing_reg_info->kinds[eRegisterKindLLDB]); in SetRegisterInfo()
223 composite_reg_info->kinds[eRegisterKindLLDB]); in SetRegisterInfo()
225 ->kinds[eRegisterKindLLDB]] in SetRegisterInfo()
228 composite_reg_info->kinds[eRegisterKindLLDB]); in SetRegisterInfo()
325 reg_info.kinds[lldb::eRegisterKindLLDB] = i; in SetRegisterInfo()
326 reg_info.kinds[lldb::eRegisterKindProcessPlugin] = i; in SetRegisterInfo()
333 reg_info.kinds[lldb::eRegisterKindEHFrame] = eh_frame_regno; in SetRegisterInfo()
335 "dwarf", reg_info.kinds[lldb::eRegisterKindDWARF], LLDB_INVALID_REGNUM); in SetRegisterInfo()
[all …]
DRegisterContextDummy.cpp53 m_pc_reg_info.kinds[eRegisterKindEHFrame] = LLDB_INVALID_REGNUM; in RegisterContextDummy()
54 m_pc_reg_info.kinds[eRegisterKindDWARF] = LLDB_INVALID_REGNUM; in RegisterContextDummy()
55 m_pc_reg_info.kinds[eRegisterKindGeneric] = LLDB_REGNUM_GENERIC_PC; in RegisterContextDummy()
56 m_pc_reg_info.kinds[eRegisterKindProcessPlugin] = LLDB_INVALID_REGNUM; in RegisterContextDummy()
57 m_pc_reg_info.kinds[eRegisterKindLLDB] = LLDB_INVALID_REGNUM; in RegisterContextDummy()
91 uint32_t reg_number = reg_info->kinds[eRegisterKindGeneric]; in ReadRegister()
DRegisterContextHistory.cpp54 m_pc_reg_info.kinds[eRegisterKindEHFrame] = LLDB_INVALID_REGNUM; in RegisterContextHistory()
55 m_pc_reg_info.kinds[eRegisterKindDWARF] = LLDB_INVALID_REGNUM; in RegisterContextHistory()
56 m_pc_reg_info.kinds[eRegisterKindGeneric] = LLDB_REGNUM_GENERIC_PC; in RegisterContextHistory()
57 m_pc_reg_info.kinds[eRegisterKindProcessPlugin] = LLDB_INVALID_REGNUM; in RegisterContextHistory()
58 m_pc_reg_info.kinds[eRegisterKindLLDB] = LLDB_INVALID_REGNUM; in RegisterContextHistory()
92 uint32_t reg_number = reg_info->kinds[eRegisterKindGeneric]; in ReadRegister()
/external/llvm-project/clang/bindings/python/tests/cindex/
Dtest_cursor_kind.py16 kinds = CursorKind.get_all_kinds()
17 self.assertIn(CursorKind.UNEXPOSED_DECL, kinds)
18 self.assertIn(CursorKind.TRANSLATION_UNIT, kinds)
19 self.assertIn(CursorKind.VARIABLE_REF, kinds)
20 self.assertIn(CursorKind.LAMBDA_EXPR, kinds)
21 self.assertIn(CursorKind.OBJ_BOOL_LITERAL_EXPR, kinds)
22 self.assertIn(CursorKind.OBJ_SELF_EXPR, kinds)
23 self.assertIn(CursorKind.MS_ASM_STMT, kinds)
24 self.assertIn(CursorKind.MODULE_IMPORT_DECL, kinds)
25 self.assertIn(CursorKind.TYPE_ALIAS_TEMPLATE_DECL, kinds)
/external/libchrome/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/llvm-project/flang/include/flang/Optimizer/Support/
DInternalNames.h51 llvm::ArrayRef<std::int64_t> kinds) in DeconstructedName()
53 kinds{kinds.begin(), kinds.end()} {}
58 llvm::SmallVector<std::int64_t, 4> kinds; member
75 llvm::ArrayRef<std::int64_t> kinds);
93 llvm::ArrayRef<std::int64_t> kinds);
99 llvm::ArrayRef<std::int64_t> kinds);
103 llvm::ArrayRef<std::int64_t> kinds);
122 std::string doKinds(llvm::ArrayRef<std::int64_t> kinds);
/external/dagger2/java/dagger/internal/codegen/binding/
DModuleKind.java46 public static ImmutableSet<Class<? extends Annotation>> annotationsFor(Set<ModuleKind> kinds) { in annotationsFor() argument
47 return kinds.stream().map(ModuleKind::annotation).collect(toImmutableSet()); in annotationsFor()
58 Set<ModuleKind> kinds = EnumSet.noneOf(ModuleKind.class); in forAnnotatedElement() local
61 kinds.add(kind); in forAnnotatedElement()
65 if (kinds.size() > 1) { in forAnnotatedElement()
67 element + " cannot be annotated with more than one of " + annotationsFor(kinds)); in forAnnotatedElement()
69 return kinds.stream().findAny(); in forAnnotatedElement()
DComponentKind.java88 Iterable<ComponentKind> kinds) { in annotationsFor() argument
89 return stream(kinds).map(ComponentKind::annotation).collect(toImmutableSet()); in annotationsFor()
107 ImmutableSet<ComponentKind> kinds = getComponentKinds(element); in forAnnotatedElement() local
108 if (kinds.size() > 1) { in forAnnotatedElement()
110 element + " cannot be annotated with more than one of " + annotationsFor(kinds)); in forAnnotatedElement()
112 return kinds.stream().findAny(); in forAnnotatedElement()
/external/google-fruit/tests/
Dvalgrind_suppressions.supp4 match-leak-kinds: possible
11 match-leak-kinds: definite
19 match-leak-kinds: definite
27 match-leak-kinds: definite
34 match-leak-kinds: definite
/external/llvm-project/flang/lib/Optimizer/Support/
DInternalNames.cpp88 std::string fir::NameUniquer::doKinds(llvm::ArrayRef<std::int64_t> kinds) { in doKinds() argument
90 for (auto i : kinds) in doKinds()
113 llvm::ArrayRef<std::int64_t> kinds) { in doDispatchTable() argument
116 return result.append(toLower(name)).append(doKinds(kinds)); in doDispatchTable()
164 llvm::ArrayRef<std::int64_t> kinds) { in doType() argument
167 return result.append(toLower(name)).append(doKinds(kinds)); in doType()
174 llvm::ArrayRef<std::int64_t> kinds) { in doTypeDescriptor() argument
177 return result.append(toLower(name)).append(doKinds(kinds)); in doTypeDescriptor()
182 llvm::StringRef name, llvm::ArrayRef<std::int64_t> kinds) { in doTypeDescriptor() argument
185 return doTypeDescriptor(rmodules, rhost, name, kinds); in doTypeDescriptor()
[all …]
/external/llvm-project/lldb/unittests/Process/minidump/
DRegisterContextMinidumpTest.cpp156 EXPECT_NE(info->kinds[lldb::eRegisterKindEHFrame], LLDB_INVALID_REGNUM); in TestARMRegInfo()
157 EXPECT_NE(info->kinds[lldb::eRegisterKindDWARF], LLDB_INVALID_REGNUM); in TestARMRegInfo()
161 EXPECT_EQ(info->kinds[lldb::eRegisterKindGeneric], in TestARMRegInfo()
164 EXPECT_EQ(info->kinds[lldb::eRegisterKindGeneric], in TestARMRegInfo()
167 EXPECT_EQ(info->kinds[lldb::eRegisterKindGeneric], in TestARMRegInfo()
170 EXPECT_EQ(info->kinds[lldb::eRegisterKindGeneric], in TestARMRegInfo()
173 EXPECT_EQ(info->kinds[lldb::eRegisterKindGeneric], in TestARMRegInfo()
176 EXPECT_EQ(info->kinds[lldb::eRegisterKindGeneric], in TestARMRegInfo()
179 EXPECT_EQ(info->kinds[lldb::eRegisterKindGeneric], in TestARMRegInfo()
182 EXPECT_EQ(info->kinds[lldb::eRegisterKindGeneric], in TestARMRegInfo()
[all …]
/external/llvm-project/flang/unittests/Optimizer/
DInternalNamesTest.cpp20 llvm::ArrayRef<std::int64_t> kinds) in DeconstructedName()
22 kinds{kinds.begin(), kinds.end()} {}
26 (actualObj.host == host) && (actualObj.kinds == kinds)) { in isObjEqual()
36 llvm::SmallVector<std::int64_t, 4> kinds; member
/external/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
DUnwindAssemblyInstEmulation.cpp176 if (sp_reg_info.kinds[row_kind] == row_cfa_regnum) in GetNonCallSiteUnwindPlanFromAssembly()
223 if (sp_reg_info.kinds[row_kind] == row_cfa_regnum) in GetNonCallSiteUnwindPlanFromAssembly()
472 .kinds[unwind_reg_kind]; in WriteMemory()
474 .kinds[eRegisterKindGeneric]; in WriteMemory()
585 if (m_fp_is_cfa && reg_info->kinds[kind] == m_cfa_reg_info.kinds[kind] && in WriteRegister()
587 context.info.RegisterPlusOffset.reg.kinds[kind] == in WriteRegister()
588 m_cfa_reg_info.kinds[kind]) { in WriteRegister()
617 reg_info->kinds[m_unwind_plan_ptr->GetRegisterKind()]; in WriteRegister()
618 const uint32_t generic_regnum = reg_info->kinds[eRegisterKindGeneric]; in WriteRegister()
653 reg_info->kinds[m_unwind_plan_ptr->GetRegisterKind()]; in WriteRegister()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_domain_verifier.cc48 std::set<string> kinds; in PopulateDomainKinds() local
55 kinds.insert(string(instruction->user_side_metadata().Kind())); in PopulateDomainKinds()
59 verifier_->kinds_.insert(verifier_->kinds_.end(), kinds.begin(), in PopulateDomainKinds()
60 kinds.end()); in PopulateDomainKinds()
Dhlo_domain_verifier.h34 HloDomainVerifier(std::vector<string> kinds) : kinds_(std::move(kinds)) {} in HloDomainVerifier() argument
/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/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSVals.def1 //===-- SVals.def - Metadata about SVal kinds -------------------*- C++ -*-===//
9 // The list of symbolic values (SVal kinds and sub-kinds) used in the Static
15 // BASIC_SVAL(Id, Parent) - for specific SVal sub-kinds, which are
/external/llvm-project/flang/test/Evaluate/
Dfolding13.f905 integer, parameter :: kinds(*) = [1, 2, 4, 8] variable
7 (int(z'100010101', kind=kinds(j)), j=1,4)]
/external/llvm-project/lldb/source/Plugins/ABI/PowerPC/
DABISysV_ppc.cpp363 ->kinds[eRegisterKindLLDB]; in GetArgumentValues()
366 ->kinds[eRegisterKindLLDB]; in GetArgumentValues()
369 ->kinds[eRegisterKindLLDB]; in GetArgumentValues()
372 ->kinds[eRegisterKindLLDB]; in GetArgumentValues()
375 ->kinds[eRegisterKindLLDB]; in GetArgumentValues()
378 ->kinds[eRegisterKindLLDB]; in GetArgumentValues()
381 ->kinds[eRegisterKindLLDB]; in GetArgumentValues()
384 ->kinds[eRegisterKindLLDB]; in GetArgumentValues()
603 reg_ctx->GetRegisterInfoByName("r3", 0)->kinds[eRegisterKindLLDB]; in GetReturnValueObjectSimple()
856 reg_ctx_sp->GetRegisterInfoByName("r3", 0)->kinds[eRegisterKindLLDB]; in GetReturnValueObjectImpl()
/external/dokka/core/src/main/kotlin/Formats/
DDacOutlineService.kt316 fun DocumentationNode.getMembersOfKinds(vararg kinds: NodeKind): MutableList<DocumentationNode> { in getMembersOfKinds()
318 recursiveSetMembersOfKinds(kinds, membersOfKind) in getMembersOfKinds()
322 private fun DocumentationNode.recursiveSetMembersOfKinds(kinds: Array<out NodeKind>, in DocumentationNode()
325 if (member.kind in kinds) { in DocumentationNode()
328 member.recursiveSetMembersOfKinds(kinds, membersOfKind) in DocumentationNode()

12345678910>>...43