Home
last modified time | relevance | path

Searched refs:valid_types (Results 1 – 4 of 4) sorted by relevance

/external/chromium-trace/trace-viewer/perf_insights/third_party/cloudstorage/
Dapi_utils.py284 valid_types = [val_type]
286 valid_types.append(int)
288 if type(val) not in valid_types:
/external/selinux/policycoreutils/semanage/
Dseobject.py984 valid_types = sepolicy.info(sepolicy.ATTRIBUTE,"port_type")[0]["types"] variable in portRecords
986 valid_types = [] variable in portRecords
1027 if type not in self.valid_types:
1089 if setype and setype not in self.valid_types:
1250 valid_types = sepolicy.info(sepolicy.ATTRIBUTE,"node_type")[0]["types"] variable in nodeRecords
1252 valid_types = [] variable in nodeRecords
1295 if ctype not in self.valid_types:
1362 if setype and setype not in self.valid_types:
1673 valid_types = sepolicy.info(sepolicy.ATTRIBUTE,"file_type")[0]["types"] variable in fcontextRecords
1674 valid_types += sepolicy.info(sepolicy.ATTRIBUTE,"device_node")[0]["types"]
[all …]
/external/selinux/policycoreutils/sepolicy/sepolicy/
D__init__.py49 valid_types = [ALLOW, AUDITALLOW, NEVERALLOW, DONTAUDIT, TRANSITION, ROLE_ALLOW]
51 if setype not in valid_types:
52 raise ValueError("Type has to be in %s" % valid_types)
/external/v8/src/ic/
Dic-compiler.cc274 int valid_types, Handle<Name> name, ExtraICState extra_ic_state) { in ComputePolymorphic() argument
276 Code::StubType type = valid_types == 1 ? handler->type() : Code::NORMAL; in ComputePolymorphic()