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

1 2 3 4 5 6 7 8

  /external/bluetooth/glib/glib/gnulib/
Makefile.am 2 include $(top_srcdir)/Makefile.decl
  /external/clang/test/CodeGen/
2005-09-24-BitFieldCrash.c 29 void foo (union tree_node * decl) {
30 decl->function_decl.built_in_class != 0;
  /external/llvm/include/llvm/Support/
Compiler.h 114 // LLVM_ATTRIBUTE_DEPRECATED(decl, "message")
116 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
117 decl __attribute__((deprecated(message)))
119 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
120 decl __attribute__((deprecated))
122 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
123 __declspec(deprecated(message)) decl
125 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
126 decl
  /external/llvm/lib/Target/PTX/
PTXAsmPrinter.cpp 298 std::string decl; local
302 decl += ".extern ";
305 decl += ".";
306 decl += getStateSpaceName(gv->getType()->getAddressSpace());
307 decl += " ";
312 decl += ".align ";
313 decl += utostr(gv->getAlignment());
314 decl += " ";
322 decl += ".b8 ";
323 decl += gvsym->getName()
412 std::string decl = isKernel ? ".entry" : ".func"; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ImplForVariable.java 82 private static GenericDeclaration nextLayer(GenericDeclaration decl) {
83 if (decl instanceof Class) {
85 Class cl = (Class)decl;
86 decl = cl.getEnclosingMethod();
87 if (decl != null) {
88 return decl;
90 decl = cl.getEnclosingConstructor();
91 if (decl != null) {
92 return decl;
95 } else if (decl instanceof Method)
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTableElement.cpp 316 if (attr->decl()) {
317 RefPtr<CSSValue> val = attr->decl()->getPropertyCSSValue(CSSPropertyBorderLeftWidth);
334 m_borderColorAttr = attr->decl();
335 if (!attr->decl() && !attr->isEmpty()) {
455 CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, tableborderAttr, borderValue); local
456 if (!decl) {
457 decl = CSSMappedAttributeDeclaration::create().releaseRef(); // This single ref pins us in the table until the document dies.
458 decl->setParent(document()->elementSheet());
459 decl->setNode(this);
460 decl->setStrictParsing(false); // Mapped attributes are just always quirky
513 CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, cellborderAttr, cellborderValue); local
599 CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, rulesAttr, rulesValue); local
    [all...]
  /external/bluetooth/glib/gthread/
Makefile.am 2 include $(top_srcdir)/Makefile.decl
  /external/clang/lib/AST/
StmtIterator.cpp 15 #include "clang/AST/Decl.h"
44 if (VarDecl* VD = dyn_cast<VarDecl>(decl))
59 assert(!decl);
68 assert(decl);
72 decl = 0;
73 else if (HandleDecl(decl))
90 bool StmtIteratorBase::HandleDecl(Decl* D) {
116 StmtIteratorBase::StmtIteratorBase(Decl *d, Stmt **s)
117 : stmt(s), decl(d), RawVAPtr(d ? DeclMode : 0) {
118 if (decl)
    [all...]
  /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/javassist/src/main/javassist/expr/
ConstructorCall.java 35 protected ConstructorCall(int pos, CodeIterator i, CtClass decl, MethodInfo m) {
36 super(pos, i, decl, m);
  /external/webkit/Source/WebCore/dom/
StyledElement.cpp 87 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr, CSSMappedAttributeDeclaration* decl)
91 mappedAttributeDecls->set(MappedAttributeKey(entryType, attr->name().localName().impl(), attr->value().impl()), decl); local
94 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, const QualifiedName& name, const AtomicString& value, CSSMappedAttributeDeclaration* decl)
98 mappedAttributeDecls->set(MappedAttributeKey(entryType, name.localName().impl(), value.impl()), decl); local
152 if (attr->decl() && !preserveDecls) {
163 if (attr->decl()) {
170 CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(entry, attr); local
171 if (decl) {
172 attr->setDecl(decl);
183 // But currently we always clear its parent and node below when adding it to the decl table.
394 RefPtr<CSSMappedAttributeDeclaration> decl = CSSMappedAttributeDeclaration::create(); local
    [all...]
Attribute.h 75 CSSMappedAttributeDeclaration* decl() const { return m_styleDecl.get(); } function in class:WebCore::Attribute
76 void setDecl(PassRefPtr<CSSMappedAttributeDeclaration> decl) { m_styleDecl = decl; }
  /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);
  /external/apache-xml/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...]
  /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);
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/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);
  /external/v8/tools/gcmole/
gcmole.cc 52 const clang::NamedDecl* decl,
54 if (!isa<clang::CXXConstructorDecl>(decl) &&
55 !isa<clang::CXXDestructorDecl>(decl)) {
58 ctx->mangleName(decl, out);
67 static bool InV8Namespace(const clang::NamedDecl* decl) {
68 return decl->getQualifiedNameAsString().compare(0, 4, "v8::") == 0;
160 virtual bool VisitFunctionDecl(clang::FunctionDecl* decl) {
161 callees_printer_->AnalyzeFunction(decl);
191 const clang::FunctionDecl* decl) {
194 if (!InV8Namespace(decl)) return false
    [all...]
  /external/clang/include/clang/AST/
StmtIterator.h 26 class Decl;
35 union { Decl *decl; Decl **DGI; }; member in union:clang::StmtIteratorBase::__anon4047
37 Decl **DGE;
65 bool HandleDecl(Decl* D);
70 StmtIteratorBase(Stmt **s) : stmt(s), decl(0), RawVAPtr(0) {}
71 StmtIteratorBase(Decl *d, Stmt **s);
73 StmtIteratorBase(Decl **dgi, Decl **dge)
    [all...]

Completed in 1340 milliseconds

1 2 3 4 5 6 7 8