HomeSort by relevance Sort by last modified time
    Searched refs:decl (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/bluetooth/glib/glib/gnulib/
Makefile.am 2 include $(top_srcdir)/Makefile.decl
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ImplForVariable.java 86 static GenericDeclaration nextLayer(GenericDeclaration decl) {
87 if (decl instanceof Class) {
89 Class cl = (Class)decl;
90 decl = cl.getEnclosingMethod();
91 if (decl != null) {
92 return decl;
94 decl = cl.getEnclosingConstructor();
95 if (decl != null) {
96 return decl;
99 } else if (decl instanceof Method)
    [all...]
  /external/bluetooth/glib/gthread/
Makefile.am 2 include $(top_srcdir)/Makefile.decl
  /external/webkit/WebCore/dom/
MappedAttribute.h 50 CSSMappedAttributeDeclaration* decl() const { return m_styleDecl.get(); } function in class:WebCore::MappedAttribute
51 void setDecl(PassRefPtr<CSSMappedAttributeDeclaration> decl) { m_styleDecl = decl; }
StyledElement.cpp 83 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr, CSSMappedAttributeDeclaration* decl)
87 mappedAttributeDecls->set(MappedAttributeKey(entryType, attr->name().localName().impl(), attr->value().impl()), decl); local
90 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, const QualifiedName& name, const AtomicString& value, CSSMappedAttributeDeclaration* decl)
94 mappedAttributeDecls->set(MappedAttributeKey(entryType, name.localName().impl(), value.impl()), decl); local
154 if (mappedAttr->decl() && !preserveDecls) {
165 if (mappedAttr->decl()) {
173 CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(entry, attr); local
174 if (decl) {
175 mappedAttr->setDecl(decl);
186 // But currently we always clear its parent and node below when adding it to the decl table.
407 RefPtr<CSSMappedAttributeDeclaration> decl = CSSMappedAttributeDeclaration::create(); local
    [all...]
NamedMappedAttrMap.cpp 52 static_cast<MappedAttribute*>(attr)->decl())
64 // The values for each decl must match.
68 static_cast<MappedAttribute*>(attr)->decl()) {
  /bionic/libc/arch-x86/string/
strncmp.S 26 decl %edx
36 decl %edx
46 decl %edx
56 decl %edx
66 decl %edx
76 decl %edx
86 decl %edx
96 decl %edx
bcopy.S 80 decl %edi
81 decl %esi
swab.S 31 decl %ecx
62 decl %ecx
  /external/bluetooth/glib/docs/
Makefile.am 2 include $(top_srcdir)/Makefile.decl
  /external/bluetooth/glib/gmodule/
Makefile.am 2 include $(top_srcdir)/Makefile.decl
  /external/webkit/WebCore/css/
CSSVariablesRule.h 58 void setDeclaration(PassRefPtr<CSSVariablesDeclaration> decl) { m_variables = decl; }
  /external/webkit/WebCore/html/
HTMLTableElement.cpp 330 if (attr->decl()) {
331 RefPtr<CSSValue> val = attr->decl()->getPropertyCSSValue(CSSPropertyBorderLeftWidth);
348 m_borderColorAttr = attr->decl();
349 if (!attr->decl() && !attr->isEmpty()) {
469 CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, tableborderAttr, borderValue); local
470 if (!decl) {
471 decl = CSSMappedAttributeDeclaration::create().releaseRef(); // This single ref pins us in the table until the document dies.
472 decl->setParent(document()->elementSheet());
473 decl->setNode(this);
474 decl->setStrictParsing(false); // Mapped attributes are just always quirky
527 CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, cellborderAttr, cellborderValue); local
613 CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, rulesAttr, rulesValue); local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
langhooks.h 153 /* Function to add a decl to the current scope level. Takes one
154 argument, a decl to add. Returns that decl, or, if the same
155 symbol is already declared, may return a different decl for that
162 /* Returns true when we should warn for an unused global DECL.
170 /* True if this decl may be called via a sibcall. */
173 /* Return the COMDAT group into which this DECL should be placed.
174 It is known that the DECL belongs in *some* COMDAT group when
182 /* True if OpenMP should privatize what this DECL points to rather
183 than the DECL itself. *
    [all...]
l-ipo.h 55 void add_decl_to_current_module_scope (tree decl, void *b);
cgraph.h 130 Each function decl has assigned cgraph_node listing callees and callers. */
134 tree decl; local
177 /* Set when decl is an abstract function pointed to by the
238 Each static variable decl has assigned varpool_node. */
242 tree decl; local
402 struct cgraph_node *cgraph_real_node (tree decl);
403 struct cgraph_node *cgraph_real_node_1 (tree decl, bool);
414 struct varpool_node *real_varpool_node (tree decl);
485 gcc_assert (TREE_CODE (node->decl) == VAR_DECL);
486 if (DECL_INITIAL (node->decl))
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemTemplateElement.java 871 XMLNSDecl decl = new XMLNSDecl(prefix, uri, false); local
873 m_declaredPrefixes.add(decl);
927 XMLNSDecl decl = (XMLNSDecl) nsDecls.get(i); local
929 if (prefix.equals(decl.getPrefix()))
930 return decl.getURI();
990 * Tell if the result namespace decl should be excluded. Should be called before
1048 XMLNSDecl decl = (XMLNSDecl) m_declaredPrefixes.get(i); local
1049 String prefix = decl.getPrefix();
1050 String uri = decl.getURI();
1068 decl = new XMLNSDecl(nsAlias.getStylesheetPrefix(),
1101 XMLNSDecl decl = (XMLNSDecl) prefixes.get(i); local
1136 XMLNSDecl decl = (XMLNSDecl) m_prefixTable.get(i); local
1189 XMLNSDecl decl = (XMLNSDecl) m_prefixTable.get(i); local
1238 XMLNSDecl decl = (XMLNSDecl) m_prefixTable.get(i); local
    [all...]
ElemExtensionCall.java 115 ElemExtensionDecl decl = null; local
127 decl = (ElemExtensionDecl) child;
129 String prefix = decl.getPrefix();
134 return decl;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
langhooks.h 153 /* Function to add a decl to the current scope level. Takes one
154 argument, a decl to add. Returns that decl, or, if the same
155 symbol is already declared, may return a different decl for that
162 /* Returns true when we should warn for an unused global DECL.
170 /* True if this decl may be called via a sibcall. */
173 /* Return the COMDAT group into which this DECL should be placed.
174 It is known that the DECL belongs in *some* COMDAT group when
182 /* True if OpenMP should privatize what this DECL points to rather
183 than the DECL itself. *
    [all...]
l-ipo.h 55 void add_decl_to_current_module_scope (tree decl, void *b);
cgraph.h 130 Each function decl has assigned cgraph_node listing callees and callers. */
134 tree decl; local
179 /* Set when decl is an abstract function pointed to by the
240 Each static variable decl has assigned varpool_node. */
244 tree decl; local
406 struct cgraph_node *cgraph_real_node (tree decl);
407 struct cgraph_node *cgraph_real_node_1 (tree decl, bool);
418 struct varpool_node *real_varpool_node (tree decl);
491 gcc_assert (TREE_CODE (node->decl) == VAR_DECL);
492 if (DECL_INITIAL (node->decl))
    [all...]
  /external/webkit/WebCore/svg/
SVGForeignObjectElement.cpp 111 if (mappedAttr->decl()) {
119 if (CSSMappedAttributeDeclaration* decl = mappedAttr->decl()) {
120 // Add the decl to the table in the appropriate spot.
121 element->setMappedAttributeDecl(entry, mappedAttr, decl);
123 decl->setMappedState(entry, mappedAttr->name(), mappedAttr->value());
124 decl->setParent(0);
125 decl->setNode(0);
  /external/zlib/
zlib2ansi 24 my $decl = qr{ $sp (?: \w+ $sp )+ $d1 }xo ;
25 my $dList = qr{ $sp $decl (?: $sp , $d1 )* $sp ; $sp }xo ;
  /external/webkit/WebCore/platform/network/mac/
WebCoreURLResponse.mm 338 RetainPtr<CFDictionaryRef> decl(AdoptCF, UTTypeCopyDeclaration(uti));
339 if (!decl)
341 CFTypeRef value = CFDictionaryGetValue(decl.get(), kUTTypeConformsToKey);
  /external/quake/quake/src/QW/client/
d_copy.s 81 decl %ecx
100 decl %ebp
140 decl %ebp

Completed in 301 milliseconds

1 2 3 4 5