Home
last modified time | relevance | path

Searched refs:IsInstance (Results 1 – 14 of 14) sorted by relevance

/external/llvm/include/llvm/CodeGen/
DTargetPassConfig.h53 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/
DTargetPassConfig.h57 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/
Dcfwl_formproxy.cpp27 bool CFWL_FormProxy::IsInstance(const WideStringView& wsClass) const { in IsInstance() function in CFWL_FormProxy
30 return CFWL_Form::IsInstance(wsClass); in IsInstance()
Dcfwl_form.cpp48 bool CFWL_Form::IsInstance(const WideStringView& wsClass) const { in IsInstance() function in CFWL_Form
51 return CFWL_Widget::IsInstance(wsClass); in IsInstance()
Dcfwl_formproxy.h25 bool IsInstance(const WideStringView& wsClass) const override;
Dcfwl_form.h33 bool IsInstance(const WideStringView& wsClass) const override;
Dcfwl_widget.h56 virtual bool IsInstance(const WideStringView& wsClass) const;
Dcfwl_widget.cpp66 bool CFWL_Widget::IsInstance(const WideStringView& wsClass) const { in IsInstance() function in CFWL_Widget
Dcfwl_widgetmgr.cpp372 if (!pWidget->IsInstance(FWL_CLASS_Form)) in IsAbleNative()
/external/clang/include/clang/AST/
DDeclObjC.h123 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/
DDeclObjC.cpp1240 bool IsInstance = isInstanceMethod(); in findPropertyDecl() local
1246 if (IsInstance) { in findPropertyDecl()
/external/clang/include/clang/Sema/
DSema.h3242 bool IsInstance,
7558 bool IsInstance);
7560 bool IsInstance);
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst1982 Add ``TestCase.assert(Not)IsInstance()`` methods.
/external/clang/lib/Sema/
DSemaOverload.cpp5864 Sema::SelectBestMethod(Selector Sel, MultiExprArg Args, bool IsInstance, in SelectBestMethod() argument