/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
D | aclhelpers.py | 61 def __init__(self, acl_change_descriptor, scope_type): argument 73 self._Parse(acl_change_descriptor, scope_type) 78 self.scope_type, self.perm, self.identifier) 80 def _Parse(self, change_descriptor, scope_type): argument 112 self.scope_type = '{0}ByDomain'.format(scope_type) 115 self.scope_type = '{0}By{1}'.format(scope_type, scope_class) 118 self.scope_type = 'AllAuthenticatedUsers' 120 self.scope_type = 'AllUsers' 122 self.scope_type = 'Project' 127 self.scope_type = scope_string [all …]
|
D | translation_helper.py | 740 scope_type = USER_BY_EMAIL 742 scope_type = GROUP_BY_EMAIL 743 return Entry(type=scope_type, email_address=entry_json['email'], 747 scope_type = USER_BY_ID 749 scope_type = GROUP_BY_ID 750 return Entry(type=scope_type, id=entry_json['entityId'], 754 scope_type = GROUP_BY_DOMAIN 755 return Entry(type=scope_type, domain=entry_json['domain'],
|
/external/v8/src/debug/ |
D | debug-evaluate.cc | 155 ScopeIterator::ScopeType scope_type = it.Type(); in ContextBuilder() local 156 if (scope_type == ScopeIterator::ScopeTypeLocal) { in ContextBuilder() 157 DCHECK_EQ(FUNCTION_SCOPE, it.CurrentScopeInfo()->scope_type()); in ContextBuilder() 178 } else if (scope_type == ScopeIterator::ScopeTypeCatch || in ContextBuilder() 179 scope_type == ScopeIterator::ScopeTypeWith) { in ContextBuilder() 186 } else if (scope_type == ScopeIterator::ScopeTypeBlock || in ContextBuilder() 187 scope_type == ScopeIterator::ScopeTypeEval) { in ContextBuilder()
|
D | debug-scopes.cc | 75 if (scope_info->scope_type() == FUNCTION_SCOPE) { in ScopeIterator() 87 if (scope_info->scope_type() != FUNCTION_SCOPE) { in ScopeIterator() 92 if (scope_info->scope_type() == SCRIPT_SCOPE) { in ScopeIterator() 95 DCHECK(scope_info->scope_type() == EVAL_SCOPE); in ScopeIterator() 178 ScopeType scope_type = Type(); in Next() local 179 if (scope_type == ScopeTypeGlobal) { in Next() 183 } else if (scope_type == ScopeTypeScript) { in Next() 189 DCHECK_EQ(nested_scope_chain_.last().scope_info->scope_type(), in Next() 217 switch (scope_info->scope_type()) { in Type() 691 DCHECK(scope_info->scope_type() == BLOCK_SCOPE || in SetInnerScopeVariableValue() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/ |
D | test_acl.py | 216 scope_type=aclhelpers.ChangeType.USER) 223 scope_type=aclhelpers.ChangeType.GROUP) 230 scope_type=aclhelpers.ChangeType.USER) 237 scope_type=aclhelpers.ChangeType.GROUP) 244 scope_type=aclhelpers.ChangeType.GROUP) 251 scope_type=aclhelpers.ChangeType.PROJECT) 258 scope_type=aclhelpers.ChangeType.GROUP) 265 scope_type=aclhelpers.ChangeType.GROUP) 275 scope_type=aclhelpers.ChangeType.USER) 286 scope_type=aclhelpers.ChangeType.PROJECT) [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/ |
D | defacl.py | 224 aclhelpers.AclChange(a, scope_type=aclhelpers.ChangeType.GROUP)) 227 aclhelpers.AclChange(a, scope_type=aclhelpers.ChangeType.USER)) 230 aclhelpers.AclChange(a, scope_type=aclhelpers.ChangeType.PROJECT))
|
D | acl.py | 363 aclhelpers.AclChange(a, scope_type=aclhelpers.ChangeType.GROUP)) 366 aclhelpers.AclChange(a, scope_type=aclhelpers.ChangeType.PROJECT)) 369 aclhelpers.AclChange(a, scope_type=aclhelpers.ChangeType.USER))
|
/external/v8/src/ast/ |
D | scopes.cc | 85 Scope::Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type, in Scope() argument 94 scope_type == MODULE_SCOPE ? ModuleDescriptor::New(zone) : NULL), in Scope() 99 SetDefaults(scope_type, outer_scope, Handle<ScopeInfo>::null(), in Scope() 102 DCHECK(scope_type == SCRIPT_SCOPE || outer_scope != NULL); in Scope() 105 Scope::Scope(Zone* zone, Scope* inner_scope, ScopeType scope_type, in Scope() argument 118 SetDefaults(scope_type, NULL, scope_info); in Scope() 155 void Scope::SetDefaults(ScopeType scope_type, Scope* outer_scope, in SetDefaults() argument 159 scope_type_ = scope_type; in SetDefaults() 825 static const char* Header(ScopeType scope_type, FunctionKind function_kind, in Header() argument 827 switch (scope_type) { in Header() [all …]
|
D | scopeinfo.cc | 68 DCHECK(context_global_count == 0 || scope->scope_type() == SCRIPT_SCOPE); in Create() 85 int flags = ScopeTypeField::encode(scope->scope_type()) | in Create() 271 ScopeType ScopeInfo::scope_type() { in scope_type() function in v8::internal::ScopeInfo 315 scope_type() == WITH_SCOPE || in ContextLength() 316 (scope_type() == BLOCK_SCOPE && CallsSloppyEval() && in ContextLength() 318 (scope_type() == FUNCTION_SCOPE && CallsSloppyEval()) || in ContextLength() 319 scope_type() == MODULE_SCOPE; in ContextLength()
|
D | scopes.h | 91 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type, 377 ScopeType scope_type() const { return scope_type_; } in scope_type() function
|
/external/selinux/libsepol/tests/ |
D | test-common.h | 37 extern void test_sym_presence(policydb_t * p, char *id, int sym_type, unsigned int scope_type, unsi…
|
D | test-common.c | 29 void test_sym_presence(policydb_t * p, char *id, int sym_type, unsigned int scope_type, unsigned in… in test_sym_presence() argument 42 CU_ASSERT(scope->scope == scope_type); in test_sym_presence()
|
/external/v8/src/parsing/ |
D | parser.h | 544 V8_INLINE Scope* NewScope(Scope* parent_scope, ScopeType scope_type, 1128 Scope* ParserTraits::NewScope(Scope* parent_scope, ScopeType scope_type, in NewScope() argument 1130 return parser_->NewScope(parent_scope, scope_type, kind); in NewScope()
|
D | parser-base.h | 584 Scope* NewScope(Scope* parent, ScopeType scope_type) { in NewScope() argument 586 DCHECK(scope_type != FUNCTION_SCOPE); in NewScope() 587 return NewScope(parent, scope_type, kNormalFunction); in NewScope() 590 Scope* NewScope(Scope* parent, ScopeType scope_type, FunctionKind kind) { in NewScope() argument 593 Scope(zone(), parent, scope_type, ast_value_factory(), kind); in NewScope()
|
/external/v8/test/cctest/ |
D | test-parsing.cc | 1186 i::ScopeType scope_type; in TEST() member 1402 CHECK_EQ(inner_scope->scope_type(), source_data[i].scope_type); in TEST()
|
/external/v8/src/ |
D | objects.h | 4084 ScopeType scope_type();
|