Searched refs:IsInstance (Results 1 – 14 of 14) sorted by relevance
/external/llvm/include/llvm/CodeGen/ |
D | TargetPassConfig.h | 53 bool IsInstance; variable 55 IdentifyingPassPtr() : P(nullptr), IsInstance(false) {} in IdentifyingPassPtr() 56 IdentifyingPassPtr(AnalysisID IDPtr) : ID(IDPtr), IsInstance(false) {} in IdentifyingPassPtr() 57 IdentifyingPassPtr(Pass *InstancePtr) : P(InstancePtr), IsInstance(true) {} in IdentifyingPassPtr() 60 bool isInstance() const { return IsInstance; } in isInstance() 63 assert(!IsInstance && "Not a Pass ID"); in getID() 67 assert(IsInstance && "Not a Pass Instance"); in getInstance()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | TargetPassConfig.h | 57 bool IsInstance = false; variable 62 IdentifyingPassPtr(Pass *InstancePtr) : P(InstancePtr), IsInstance(true) {} in IdentifyingPassPtr() 65 bool isInstance() const { return IsInstance; } in isInstance() 68 assert(!IsInstance && "Not a Pass ID"); in getID() 73 assert(IsInstance && "Not a Pass Instance"); in getInstance()
|
/external/pdfium/xfa/fwl/ |
D | cfwl_formproxy.cpp | 27 bool CFWL_FormProxy::IsInstance(const WideStringView& wsClass) const { in IsInstance() function in CFWL_FormProxy 30 return CFWL_Form::IsInstance(wsClass); in IsInstance()
|
D | cfwl_form.cpp | 48 bool CFWL_Form::IsInstance(const WideStringView& wsClass) const { in IsInstance() function in CFWL_Form 51 return CFWL_Widget::IsInstance(wsClass); in IsInstance()
|
D | cfwl_formproxy.h | 25 bool IsInstance(const WideStringView& wsClass) const override;
|
D | cfwl_form.h | 33 bool IsInstance(const WideStringView& wsClass) const override;
|
D | cfwl_widget.h | 56 virtual bool IsInstance(const WideStringView& wsClass) const;
|
D | cfwl_widget.cpp | 66 bool CFWL_Widget::IsInstance(const WideStringView& wsClass) const { in IsInstance() function in CFWL_Widget
|
D | cfwl_widgetmgr.cpp | 372 if (!pWidget->IsInstance(FWL_CLASS_Form)) in IsAbleNative()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 123 unsigned IsInstance : 1; variable 235 IsInstance(isInstance), IsVariadic(isVariadic), in NamedDecl() 414 bool isInstanceMethod() const { return IsInstance; } in isInstanceMethod() 415 void setInstanceMethod(bool isInst) { IsInstance = isInst; } in setInstanceMethod() 419 bool isClassMethod() const { return !IsInstance; } in isClassMethod()
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 1240 bool IsInstance = isInstanceMethod(); in findPropertyDecl() local 1246 if (IsInstance) { in findPropertyDecl()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3242 bool IsInstance, 7558 bool IsInstance); 7560 bool IsInstance);
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 1982 Add ``TestCase.assert(Not)IsInstance()`` methods.
|
/external/clang/lib/Sema/ |
D | SemaOverload.cpp | 5864 Sema::SelectBestMethod(Selector Sel, MultiExprArg Args, bool IsInstance, in SelectBestMethod() argument
|