Home
last modified time | relevance | path

Searched refs:is_type (Results 1 – 24 of 24) sorted by relevance

/external/deqp-deps/SPIRV-Tools/source/val/
Dfunction.cpp160 if (current_block_->is_type(kBlockTypeLoop)) { in RegisterBlockEnd()
224 ret = block->is_type(type); in IsBlockType()
319 } else if (bb->is_type(kBlockTypeContinue)) { in GetBlockDepth()
340 } else if (bb->is_type(kBlockTypeMerge)) { in GetBlockDepth()
346 } else if (bb_dom->is_type(kBlockTypeSelection) || in GetBlockDepth()
347 bb_dom->is_type(kBlockTypeLoop)) { in GetBlockDepth()
Dvalidate_cfg.cpp459 (depth == target_depth && block->is_type(kBlockTypeContinue))) { in FindCaseFallThrough()
684 if (!loop_header->is_type(kBlockTypeLoop)) continue; in StructuredControlFlowChecks()
767 if (block->is_type(BlockType::kBlockTypeSelection) || in StructuredControlFlowChecks()
768 block->is_type(BlockType::kBlockTypeLoop)) { in StructuredControlFlowChecks()
809 if (block->is_type(kBlockTypeMerge)) { in PerformWebGPUCfgChecks()
848 } else if (block->is_type(kBlockTypeContinue)) { in PerformWebGPUCfgChecks()
Dbasic_block.h71 bool is_type(BlockType type) const { in is_type() function
Dconstruct.cpp111 block->is_type(kBlockTypeContinue)) { in blocks()
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dfunction.cpp160 if (current_block_->is_type(kBlockTypeLoop)) { in RegisterBlockEnd()
224 ret = block->is_type(type); in IsBlockType()
319 } else if (bb->is_type(kBlockTypeContinue)) { in GetBlockDepth()
340 } else if (bb->is_type(kBlockTypeMerge)) { in GetBlockDepth()
346 } else if (bb_dom->is_type(kBlockTypeSelection) || in GetBlockDepth()
347 bb_dom->is_type(kBlockTypeLoop)) { in GetBlockDepth()
Dvalidate_cfg.cpp450 (depth == target_depth && block->is_type(kBlockTypeContinue))) { in FindCaseFallThrough()
675 if (!loop_header->is_type(kBlockTypeLoop)) continue; in StructuredControlFlowChecks()
758 if (block->is_type(BlockType::kBlockTypeSelection) || in StructuredControlFlowChecks()
759 block->is_type(BlockType::kBlockTypeLoop)) { in StructuredControlFlowChecks()
800 if (block->is_type(kBlockTypeMerge)) { in PerformWebGPUCfgChecks()
839 } else if (block->is_type(kBlockTypeContinue)) { in PerformWebGPUCfgChecks()
Dbasic_block.h71 bool is_type(BlockType type) const { in is_type() function
Dconstruct.cpp111 block->is_type(kBlockTypeContinue)) { in blocks()
/external/angle/third_party/spirv-tools/src/source/val/
Dfunction.cpp160 if (current_block_->is_type(kBlockTypeLoop)) { in RegisterBlockEnd()
224 ret = block->is_type(type); in IsBlockType()
319 } else if (bb->is_type(kBlockTypeContinue)) { in GetBlockDepth()
340 } else if (bb->is_type(kBlockTypeMerge)) { in GetBlockDepth()
346 } else if (bb_dom->is_type(kBlockTypeSelection) || in GetBlockDepth()
347 bb_dom->is_type(kBlockTypeLoop)) { in GetBlockDepth()
Dvalidate_cfg.cpp459 (depth == target_depth && block->is_type(kBlockTypeContinue))) { in FindCaseFallThrough()
684 if (!loop_header->is_type(kBlockTypeLoop)) continue; in StructuredControlFlowChecks()
767 if (block->is_type(BlockType::kBlockTypeSelection) || in StructuredControlFlowChecks()
768 block->is_type(BlockType::kBlockTypeLoop)) { in StructuredControlFlowChecks()
809 if (block->is_type(kBlockTypeMerge)) { in PerformWebGPUCfgChecks()
848 } else if (block->is_type(kBlockTypeContinue)) { in PerformWebGPUCfgChecks()
Dbasic_block.h71 bool is_type(BlockType type) const { in is_type() function
Dconstruct.cpp111 block->is_type(kBlockTypeContinue)) { in blocks()
/external/skqp/tests/
DJSONTest.cpp151 bool is_type) { in check_primitive() argument
153 REPORTER_ASSERT(reporter, v.is<VT>() == is_type); in check_primitive()
155 REPORTER_ASSERT(reporter, (cast_t != nullptr) == is_type); in check_primitive()
157 if (is_type) { in check_primitive()
/external/skia/tests/
DJSONTest.cpp151 bool is_type) { in check_primitive() argument
153 REPORTER_ASSERT(reporter, v.is<VT>() == is_type); in check_primitive()
155 REPORTER_ASSERT(reporter, (cast_t != nullptr) == is_type); in check_primitive()
157 if (is_type) { in check_primitive()
/external/selinux/libsepol/src/
Dmodule_to_cil.c184 int is_type; member
743 static char *get_new_attr_name(struct policydb *pdb, int is_type) in get_new_attr_name() argument
752 if (is_type) { in get_new_attr_name()
777 static int cil_add_attr_to_list(struct list *attr_list, char *attr_name, int is_type, void *set) in cil_add_attr_to_list() argument
795 attr_list_node->is_type = is_type; in cil_add_attr_to_list()
805 static int cil_print_attr_strs(int indent, struct policydb *pdb, int is_type, void *set, char *attr… in cil_print_attr_strs() argument
825 if (is_type) { in cil_print_attr_strs()
900 rc = cil_print_attr_strs(indent, pdb, node->is_type, node->set, node->attr_name); in cil_print_attr_list()
909 static char *search_attr_list(struct list *attr_list, int is_type, void *set) in search_attr_list() argument
916 if (is_type) { in search_attr_list()
[all …]
/external/pdfium/third_party/pymock/
Dmock.py2159 is_type = isinstance(spec, ClassTypes)
2177 elif is_type and instance and not _instance_callable(spec):
2193 _check_signature(spec, mock, is_type, instance)
2198 if is_type and not instance and 'return_value' not in kwargs:
2240 skipfirst = _must_skip(spec, entry, is_type)
2253 def _must_skip(spec, entry, is_type): argument
2261 return is_type
2269 return is_type
2273 return is_type
/external/python/cpython2/Lib/test/
D_mock_backport.py2109 is_type = isinstance(spec, type)
2129 elif is_type and instance and not _instance_callable(spec):
2147 _check_signature(spec, mock, is_type, instance)
2152 if is_type and not instance and 'return_value' not in kwargs:
2187 skipfirst = _must_skip(spec, entry, is_type)
2205 def _must_skip(spec, entry, is_type): argument
2225 return is_type
2231 return is_type
/external/python/mock/mock/
Dmock.py2338 is_type = isinstance(spec, ClassTypes)
2358 elif is_type and instance and not _instance_callable(spec):
2376 _check_signature(spec, mock, is_type, instance)
2381 if is_type and not instance and 'return_value' not in kwargs:
2422 skipfirst = _must_skip(spec, entry, is_type)
2440 def _must_skip(spec, entry, is_type): argument
2452 return is_type
2463 return is_type
2468 return is_type
/external/python/cpython3/Lib/unittest/
Dmock.py2588 is_type = isinstance(spec, type)
2613 elif is_type and instance and not _instance_callable(spec):
2633 _check_signature(spec, mock, is_type, instance)
2638 if is_type and not instance and 'return_value' not in kwargs:
2673 skipfirst = _must_skip(spec, entry, is_type)
2695 def _must_skip(spec, entry, is_type): argument
2715 return is_type
2720 return is_type
/external/cpuinfo/test/build.prop/
Dpixel.log101 persist.camera.is_type=4
Dnexus6p.log115 persist.camera.is_type=4
Dpixel-xl.log101 persist.camera.is_type=4
Dmoto-g-gen5.log157 persist.camera.is_type=1
/external/python/pycparser/pycparser/
Dc_parser.py207 is_type = self._is_type_in_scope(name)
208 return is_type