Home
last modified time | relevance | path

Searched refs:decl (Results 1 – 25 of 261) sorted by relevance

1234567891011

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DAttribute.java36 public String decl; field in Attribute
47 public Attribute(String decl) { in Attribute() argument
48 extractAttribute(decl); in Attribute()
51 public Attribute(String name, String decl) { in Attribute() argument
53 this.decl = decl; in Attribute()
64 protected void extractAttribute(String decl) { in extractAttribute() argument
65 if ( decl==null ) { in extractAttribute()
70 int rightEdgeOfDeclarator = decl.length()-1; in extractAttribute()
71 int equalsIndex = decl.indexOf('='); in extractAttribute()
74 this.initValue = decl.substring(equalsIndex+1,decl.length()); in extractAttribute()
[all …]
/external/webkit/Source/WebCore/html/
DHTMLTableElement.cpp316 if (attr->decl()) { in parseMappedAttribute()
317 RefPtr<CSSValue> val = attr->decl()->getPropertyCSSValue(CSSPropertyBorderLeftWidth); in parseMappedAttribute()
334 m_borderColorAttr = attr->decl(); in parseMappedAttribute()
335 if (!attr->decl() && !attr->isEmpty()) { in parseMappedAttribute()
455 …CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, tableborderAttr, borderV… in additionalAttributeStyleDecls() local
456 if (!decl) { in additionalAttributeStyleDecls()
457decl = CSSMappedAttributeDeclaration::create().releaseRef(); // This single ref pins us in the tab… in additionalAttributeStyleDecls()
458 decl->setParent(document()->elementSheet()); in additionalAttributeStyleDecls()
459 decl->setNode(this); in additionalAttributeStyleDecls()
460 decl->setStrictParsing(false); // Mapped attributes are just always quirky. in additionalAttributeStyleDecls()
[all …]
/external/libsepol/src/
Davrule_block.c55 avrule_decl_t *decl; in avrule_decl_create() local
57 if ((decl = calloc(1, sizeof(*decl))) == NULL) { in avrule_decl_create()
60 decl->decl_id = decl_id; in avrule_decl_create()
62 if (symtab_init(&decl->symtab[i], symtab_sizes[i])) { in avrule_decl_create()
63 avrule_decl_destroy(decl); in avrule_decl_create()
64 free(decl); in avrule_decl_create()
70 ebitmap_init(&decl->required.scope[i]); in avrule_decl_create()
71 ebitmap_init(&decl->declared.scope[i]); in avrule_decl_create()
73 return decl; in avrule_decl_create()
113 avrule_decl_t *decl; in avrule_block_destroy() local
[all …]
Dlink.c1746 avrule_decl_t *decl, *last_decl = NULL; in copy_avrule_block() local
1757 for (decl = block->branch_list; decl != NULL; decl = decl->next) { in copy_avrule_block()
1786 module->avdecl_map[decl->decl_id] = new_decl->decl_id; in copy_avrule_block()
1788 ret = copy_avrule_decl(state, module, decl, new_decl); in copy_avrule_block()
1962 avrule_decl_t * decl, in is_decl_requires_met() argument
1982 bitmap = &decl->required.scope[i]; in is_decl_requires_met()
2001 for (i = 0; i < decl->required.class_perms_len; i++) { in is_decl_requires_met()
2003 bitmap = decl->required.class_perms_map + i; in is_decl_requires_met()
2179 avrule_decl_t *decl; in enable_avrules() local
2191 for (decl = block->branch_list->next; decl != NULL; in enable_avrules()
[all …]
/external/webkit/Source/WebCore/dom/
DStyledElement.cpp87 …AttributeDecl(MappedAttributeEntry entryType, Attribute* attr, CSSMappedAttributeDeclaration* decl) in setMappedAttributeDecl() argument
91 …s->set(MappedAttributeKey(entryType, attr->name().localName().impl(), attr->value().impl()), decl); in setMappedAttributeDecl()
94 …tryType, const QualifiedName& name, const AtomicString& value, CSSMappedAttributeDeclaration* decl) in setMappedAttributeDecl() argument
98 …pedAttributeDecls->set(MappedAttributeKey(entryType, name.localName().impl(), value.impl()), decl); in setMappedAttributeDecl()
152 if (attr->decl() && !preserveDecls) { in attributeChanged()
163 if (attr->decl()) { in attributeChanged()
170 CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(entry, attr); in attributeChanged() local
171 if (decl) { in attributeChanged()
172 attr->setDecl(decl); in attributeChanged()
192 if (checkDecl && attr->decl()) { in attributeChanged()
[all …]
/external/checkpolicy/
Dmodule_compiler.c32 avrule_decl_t *decl; /* if in an avrule block, which member
130 avrule_decl_t *decl = stack_top->decl; in declare_symbol() local
138 SCOPE_DECL, decl->decl_id, dest_value); in declare_symbol()
158 if (ebitmap_set_bit(decl->declared.scope + symbol_type, in declare_symbol()
244 roles_tab = stack_top->decl->p_roles.table; in declare_role()
449 users_tab = stack_top->decl->p_users.table; in declare_user()
523 types_tab = stack_top->decl->p_types.table; in get_local_type()
571 roles_tab = stack_top->decl->p_roles.table; in get_local_role()
625 avrule_decl_t *decl = stack_top->decl; in require_symbol() local
633 SCOPE_REQ, decl->decl_id, dest_value); in require_symbol()
[all …]
/external/clang/lib/AST/
DStmtIterator.cpp44 if (VarDecl* VD = dyn_cast<VarDecl>(decl)) in NextVA()
59 assert(!decl); in NextVA()
68 assert(decl); in NextDecl()
72 decl = 0; in NextDecl()
73 else if (HandleDecl(decl)) in NextDecl()
117 : stmt(s), decl(d), RawVAPtr(d ? DeclMode : 0) { in StmtIteratorBase()
118 if (decl) in StmtIteratorBase()
128 : stmt(0), decl(0), RawVAPtr(SizeOfTypeVAMode) { in StmtIteratorBase()
148 if (VarDecl* VD = dyn_cast<VarDecl>(decl)) { in GetDeclExpr()
153 EnumConstantDecl* ECD = cast<EnumConstantDecl>(decl); in GetDeclExpr()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemTemplateElement.java871 XMLNSDecl decl = new XMLNSDecl(prefix, uri, false); in setPrefixes() local
873 m_declaredPrefixes.add(decl); in setPrefixes()
927 XMLNSDecl decl = (XMLNSDecl) nsDecls.get(i); in getNamespaceForPrefix() local
929 if (prefix.equals(decl.getPrefix())) in getNamespaceForPrefix()
930 return decl.getURI(); in getNamespaceForPrefix()
1048 XMLNSDecl decl = (XMLNSDecl) m_declaredPrefixes.get(i); in resolvePrefixTables() local
1049 String prefix = decl.getPrefix(); in resolvePrefixTables()
1050 String uri = decl.getURI(); in resolvePrefixTables()
1068 decl = new XMLNSDecl(nsAlias.getStylesheetPrefix(), in resolvePrefixTables()
1072 decl = new XMLNSDecl(prefix, uri, shouldExclude); in resolvePrefixTables()
[all …]
DElemExtensionCall.java115 ElemExtensionDecl decl = null; in getElemExtensionDecl() local
127 decl = (ElemExtensionDecl) child; in getElemExtensionDecl()
129 String prefix = decl.getPrefix(); in getElemExtensionDecl()
134 return decl; in getElemExtensionDecl()
/external/libsepol/tests/
Dtest-deps.c143 avrule_decl_t *decl; in do_deps_modreq_global() local
173 decl = test_find_decl_by_sym(base, SYM_TYPES, decl_type); in do_deps_modreq_global()
174 CU_ASSERT_FATAL(decl != NULL); in do_deps_modreq_global()
176 CU_ASSERT(decl->enabled == 1); in do_deps_modreq_global()
225 avrule_decl_t *decl; in do_deps_modreq_opt() local
252 decl = test_find_decl_by_sym(base, SYM_TYPES, decl_type); in do_deps_modreq_opt()
253 CU_ASSERT_FATAL(decl != NULL); in do_deps_modreq_opt()
256 CU_ASSERT(decl->enabled == 1); in do_deps_modreq_opt()
258 CU_ASSERT(decl->enabled == 0); in do_deps_modreq_opt()
Dtest-linker-roles.c72 avrule_decl_t *decl; in base_role_tests() local
90 decl = test_find_decl_by_sym(base, SYM_TYPES, "tag_o1_b"); in base_role_tests()
91 decls[0] = decl->decl_id; in base_role_tests()
95 role = test_role_type_set(base, "o1_b_role_1", decl, types, 1, 0); in base_role_tests()
103 avrule_decl_t *decl; in module_role_tests() local
121 decl = test_find_decl_by_sym(base, SYM_TYPES, "tag_o1_m1"); in module_role_tests()
122 decls[0] = decl->decl_id; in module_role_tests()
126 role = test_role_type_set(base, "o1_m1_role_1", decl, types, 1, 0); in module_role_tests()
Dtest-common.c185 role_datum_t *test_role_type_set(policydb_t * p, char *id, avrule_decl_t * decl, char **types, unsi… in test_role_type_set() argument
191 if (decl) in test_role_type_set()
192 role = hashtab_search(decl->p_roles.table, id); in test_role_type_set()
226 void test_attr_types(policydb_t * p, char *id, avrule_decl_t * decl, char **types, int len) in test_attr_types() argument
233 if (decl) in test_attr_types()
234 attr = hashtab_search(decl->p_types.table, id); in test_attr_types()
239 printf("could not find attr %s in decl %d\n", id, decl->decl_id); in test_attr_types()
/external/openssl/crypto/bn/asm/
Dbn-586.S113 decl %ecx
124 decl %ecx
135 decl %ecx
146 decl %ecx
157 decl %ecx
168 decl %ecx
283 decl %ebp
292 decl %ebp
301 decl %ebp
310 decl %ebp
[all …]
/external/llvm/include/llvm/Support/
DCompiler.h254 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \ argument
255 decl __attribute__((deprecated(message)))
257 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \ argument
258 decl __attribute__((deprecated))
260 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \ argument
261 __declspec(deprecated(message)) decl
263 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \ argument
264 decl
/external/clang/include/clang/AST/
DStmtIterator.h35 union { Decl *decl; Decl **DGI; }; member
70 StmtIteratorBase(Stmt **s) : stmt(s), decl(0), RawVAPtr(0) {} in StmtIteratorBase()
74 StmtIteratorBase() : stmt(0), decl(0), RawVAPtr(0) {} in StmtIteratorBase()
110 return stmt == RHS.stmt && decl == RHS.decl && RawVAPtr == RHS.RawVAPtr;
114 return stmt != RHS.stmt || decl != RHS.decl || RawVAPtr != RHS.RawVAPtr;
/external/v8/src/
Dfull-codegen.cc55 VariableDeclaration* decl) { in VisitVariableDeclaration() argument
59 FunctionDeclaration* decl) { in VisitFunctionDeclaration() argument
63 ModuleDeclaration* decl) { in VisitModuleDeclaration() argument
67 ImportDeclaration* decl) { in VisitImportDeclaration() argument
71 ExportDeclaration* decl) { in VisitExportDeclaration() argument
587 Declaration* decl = declarations->at(i); in VisitDeclarations() local
588 Variable* var = decl->proxy()->var(); in VisitDeclarations()
592 FunctionDeclaration* fun_decl = decl->AsFunctionDeclaration(); in VisitDeclarations()
621 void FullCodeGenerator::VisitVariableDeclaration(VariableDeclaration* decl) { in VisitVariableDeclaration() argument
622 EmitDeclaration(decl->proxy(), decl->mode(), NULL); in VisitVariableDeclaration()
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
Dmain.m19 //LangParser.decl_return r = parser.decl();
27 walker.decl();
43 // LangParser_decl_return *r = [parser decl];
51 [walker decl];
/external/llvm/test/Transforms/GVN/
D2008-12-15-CacheVisited.ll5 define fastcc void @gen_field_die(i32* %decl) nounwind {
13 %tmp = getelementptr i32* %decl, i32 1 ; <i32*> [#uses=1]
18 %tmp2 = getelementptr i32* %decl, i32 1 ; <i32*> [#uses=1]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
DSymbolTableParser.m262 * SymbolTable.g:30:1: globals : ( decl )* ;
275 // SymbolTable.g:36:5: ( ( decl )* ) // ruleBlockSingleAlt
276 // SymbolTable.g:36:9: ( decl )* // alt
288 // SymbolTable.g:36:10: decl // alt
292 [self decl];
382 * SymbolTable.g:47:1: block : '{' ( decl )* ( stat )* '}' ;
395 // SymbolTable.g:53:5: ( '{' ( decl )* ( stat )* '}' ) // ruleBlockSingleAlt
396 // SymbolTable.g:53:9: '{' ( decl )* ( stat )* '}' // alt
410 // SymbolTable.g:53:14: decl // alt
414 [self decl];
[all …]
DSymbolTable.g36 : (decl)*
53 : '{' (decl)* (stat)* '}'
64 decl: 'int' ID ';'
/external/elfutils/libdw/
Ddwarf_decl_column.c60 dwarf_decl_column (Dwarf_Die *decl, int *colp) in dwarf_decl_column() argument
62 return __libdw_attr_intval (decl, colp, DW_AT_decl_column); in dwarf_decl_column()
/external/valgrind/main/coregrind/m_demangle/
Dcplus-dem.c1169 string decl; in internal_cplus_demangle() local
1183 string_init (&decl); in internal_cplus_demangle()
1194 success = gnu_special (work, &mangled, &decl); in internal_cplus_demangle()
1198 success = demangle_prefix (work, &mangled, &decl); in internal_cplus_demangle()
1202 success = demangle_signature (work, &mangled, &decl); in internal_cplus_demangle()
1206 string_prepend (&decl, "global constructors keyed to "); in internal_cplus_demangle()
1211 string_prepend (&decl, "global destructors keyed to "); in internal_cplus_demangle()
1216 string_prepend (&decl, "import stub for "); in internal_cplus_demangle()
1219 demangled = mop_up (work, &decl, success); in internal_cplus_demangle()
3540 string decl; in do_type() local
[all …]
/external/checkpolicy/test/
Ddismod.c590 int display_avdecl(avrule_decl_t * decl, int field, in display_avdecl() argument
593 fprintf(out_fp, "decl %u:%s\n", decl->decl_id, in display_avdecl()
594 (decl->enabled ? " [enabled]" : "")); in display_avdecl()
597 cond_list_t *cond = decl->cond_list; in display_avdecl()
623 avrule_t *avrule = decl->avrules; in display_avdecl()
638 display_role_trans(decl->role_tr_rules, policy, out_fp); in display_avdecl()
642 display_role_allow(decl->role_allow_rules, policy, in display_avdecl()
648 (&decl->required, policy, out_fp)) { in display_avdecl()
655 (&decl->declared, policy, out_fp)) { in display_avdecl()
661 display_filename_trans(decl->filename_trans_rules, policy, in display_avdecl()
[all …]
/external/clang/test/CodeGen/
D2005-09-24-BitFieldCrash.c29 void foo (union tree_node * decl) { in foo() argument
30 decl->function_decl.built_in_class != 0; in foo()
/external/bison/src/
Dparse-gram.y61 static void add_param (char const *type, char *decl, location loc);
719 add_param (char const *type, char *decl, location loc) in add_param() argument
730 for (p = decl; p[1]; p++) in add_param()
731 if ((p == decl in add_param()
742 ++decl; in add_param()
743 while (c_isspace ((unsigned char) *decl)) in add_param()
744 ++decl; in add_param()
751 muscle_pair_list_grow (type, decl, name); in add_param()

1234567891011