HomeSort by relevance Sort by last modified time
    Searched refs:scope_type (Results 1 - 16 of 16) sorted by null

  /external/chromium-trace/catapult/third_party/gsutil/gslib/
aclhelpers.py 61 def __init__(self, acl_change_descriptor, scope_type):
67 scope_type: Either ChangeType.USER or ChangeType.GROUP or
73 self._Parse(acl_change_descriptor, scope_type)
78 self.scope_type, self.perm, self.identifier)
80 def _Parse(self, change_descriptor, scope_type):
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
    [all...]
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'],
    [all...]
  /external/selinux/libsepol/tests/
test-common.h 30 * scope_type what scope the role should have (eg., SCOPE_DECL or SCOPE_REQ)
37 extern void test_sym_presence(policydb_t * p, char *id, int sym_type, unsigned int scope_type, unsigned int *decls, unsigned int len);
test-common.c 29 void test_sym_presence(policydb_t * p, char *id, int sym_type, unsigned int scope_type, unsigned int *decls, unsigned int len)
42 CU_ASSERT(scope->scope == scope_type);
  /external/v8/src/debug/
debug-evaluate.cc 155 ScopeIterator::ScopeType scope_type = it.Type(); local
156 if (scope_type == ScopeIterator::ScopeTypeLocal) {
157 DCHECK_EQ(FUNCTION_SCOPE, it.CurrentScopeInfo()->scope_type());
178 } else if (scope_type == ScopeIterator::ScopeTypeCatch ||
179 scope_type == ScopeIterator::ScopeTypeWith) {
186 } else if (scope_type == ScopeIterator::ScopeTypeBlock ||
187 scope_type == ScopeIterator::ScopeTypeEval) {
debug-scopes.cc 75 if (scope_info->scope_type() == FUNCTION_SCOPE) {
87 if (scope_info->scope_type() != FUNCTION_SCOPE) {
92 if (scope_info->scope_type() == SCRIPT_SCOPE) {
95 DCHECK(scope_info->scope_type() == EVAL_SCOPE);
178 ScopeType scope_type = Type(); local
179 if (scope_type == ScopeTypeGlobal) {
183 } else if (scope_type == ScopeTypeScript) {
189 DCHECK_EQ(nested_scope_chain_.last().scope_info->scope_type(),
217 switch (scope_info->scope_type()) {
691 DCHECK(scope_info->scope_type() == BLOCK_SCOPE |
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
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))
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/chromium-trace/catapult/third_party/gsutil/gslib/tests/
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/v8/src/ast/
scopes.cc 85 Scope::Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
94 scope_type == MODULE_SCOPE ? ModuleDescriptor::New(zone) : NULL),
99 SetDefaults(scope_type, outer_scope, Handle<ScopeInfo>::null(),
102 DCHECK(scope_type == SCRIPT_SCOPE || outer_scope != NULL);
105 Scope::Scope(Zone* zone, Scope* inner_scope, ScopeType scope_type,
118 SetDefaults(scope_type, NULL, scope_info);
155 void Scope::SetDefaults(ScopeType scope_type, Scope* outer_scope,
159 scope_type_ = scope_type;
825 static const char* Header(ScopeType scope_type, FunctionKind function_kind,
827 switch (scope_type) {
    [all...]
scopeinfo.cc 68 DCHECK(context_global_count == 0 || scope->scope_type() == SCRIPT_SCOPE);
85 int flags = ScopeTypeField::encode(scope->scope_type()) |
271 ScopeType ScopeInfo::scope_type() { function in class:v8::internal::ScopeInfo
315 scope_type() == WITH_SCOPE ||
316 (scope_type() == BLOCK_SCOPE && CallsSloppyEval() &&
318 (scope_type() == FUNCTION_SCOPE && CallsSloppyEval()) ||
319 scope_type() == MODULE_SCOPE;
scopes.h 91 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
377 ScopeType scope_type() const { return scope_type_; } function in class:v8::internal::Scope
  /external/v8/src/parsing/
parser.h 544 V8_INLINE Scope* NewScope(Scope* parent_scope, ScopeType scope_type,
    [all...]
parser-base.h 584 Scope* NewScope(Scope* parent, ScopeType scope_type) {
586 DCHECK(scope_type != FUNCTION_SCOPE);
587 return NewScope(parent, scope_type, kNormalFunction);
590 Scope* NewScope(Scope* parent, ScopeType scope_type, FunctionKind kind) {
593 Scope(zone(), parent, scope_type, ast_value_factory(), kind);
    [all...]
  /external/v8/test/cctest/
test-parsing.cc 1186 i::ScopeType scope_type; member in struct:SourceData
    [all...]
  /external/v8/src/
objects.h     [all...]

Completed in 1321 milliseconds