Home
last modified time | relevance | path

Searched refs:IsDeclaration (Results 1 – 3 of 3) sorted by relevance

/external/google-breakpad/src/testing/scripts/generator/cpp/
Dast.py115 def IsDeclaration(self): member in Node
327 def IsDeclaration(self): member in Class
331 return not self.IsDeclaration()
334 return not self.IsDeclaration()
370 def IsDeclaration(self): member in Function
447 def IsDeclaration(self): member in Type
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp1108 bool IsDeclaration; ///< Is this DIE only a declaration? member
1113 IsDeclaration(false) {} in AttributesInfo()
1934 Info.IsDeclaration = true; in cloneScalarAttribute()
2154 } else if (isTypeTag(Tag) && !AttrInfo.IsDeclaration && in cloneDIE()
/external/llvm/bindings/go/llvm/
Dir.go959 func (v Value) IsDeclaration() bool { return C.LLVMIsDeclaration(v.C) != 0 } func