OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SuperClass
(Results
1 - 24
of
24
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/AST/
ExprObjC.cpp
117
Kind(IsInstanceSuper ? SuperInstance :
SuperClass
),
299
case
SuperClass
:
320
case
SuperClass
:
DeclObjC.cpp
289
if (const ObjCInterfaceDecl *
superClass
= OID->getSuperClass())
290
return
superClass
->FindPropertyDeclaration(PropertyId, QueryKind);
676
ObjCInterfaceDecl *
SuperClass
= getSuperClass();
677
return
SuperClass
?
SuperClass
->lookupNestedProtocol(Name) : nullptr;
JSONNodeDumper.cpp
1083
case ObjCMessageExpr::
SuperClass
:
StmtPrinter.cpp
2448
case ObjCMessageExpr::
SuperClass
:
ASTContext.cpp
2554
if (const ObjCInterfaceDecl *
SuperClass
= OI->getSuperClass())
2555
DeepCollectObjCIvars(
SuperClass
, false, Ivars);
9214
// Find the
superclass
.
9264
// Find the
superclass
of the RHS.
9291
// OK if conversion of LHS to
SuperClass
results in narrowing of types
9292
// ; i.e.,
SuperClass
may implement at least one of the protocols
9319
// Follow the
superclass
chain until we've matched the LHS class in the
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
GlobalISelEmitter.cpp
4595
Optional<const CodeGenRegisterClass *>
SuperClass
=
4598
if (!
SuperClass
)
4604
InsertPt, DstMIBuilder.getInsnID(), 0, **
SuperClass
);
4606
InsertPt, DstMIBuilder.getInsnID(), 1, **
SuperClass
);
4617
auto
SuperClass
= inferRegClassFromPattern(Dst->getChild(0));
4618
if (!
SuperClass
)
4627
(*
SuperClass
)->getMatchingSubClassWithSubRegs(CGRegs, *SubIdx);
4646
auto
SuperClass
= inferSuperRegisterClass(Dst->getExtType(0),
4648
if (!
SuperClass
)
4652
InsertPt, DstMIBuilder.getInsnID(), 0, **
SuperClass
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
SmallVector.h
559
using
SuperClass
= SmallVectorTemplateBase<T>;
562
using iterator = typename
SuperClass
::iterator;
563
using const_iterator = typename
SuperClass
::const_iterator;
564
using reference = typename
SuperClass
::reference;
565
using size_type = typename
SuperClass
::size_type;
569
using ValueParamT = typename
SuperClass
::ValueParamT;
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Operator.h
414
template<typename
SuperClass
, unsigned Opc>
415
class ConcreteOperator : public
SuperClass
{
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprObjC.h
931
/// 3. Send to the
superclass
instance of the current class.
932
/// 4. Send to the
superclass
of the current class.
1093
/// The receiver is a
superclass
.
1094
SuperClass
,
1096
/// The receiver is the instance of the
superclass
object.
1245
return getReceiverKind() == Class || getReceiverKind() ==
SuperClass
;
1292
if (getReceiverKind() == SuperInstance || getReceiverKind() ==
SuperClass
)
1327
if (getReceiverKind() == SuperInstance || getReceiverKind() ==
SuperClass
)
1334
Kind = IsInstanceSuper? SuperInstance :
SuperClass
;
DeclObjC.h
494
///
superclass
. Pass \c false if you only want to check the current class.
1087
/// Note, the
superclass
's properties are not included in the list.
1540
/// Retrieve the
superclass
type.
1548
// Retrieve the type source information for the
superclass
.
1560
// Retrieve the declaration for the
superclass
of this class, which
1561
// does not include any type arguments that apply to the
superclass
.
1564
void setSuperClass(TypeSourceInfo *
superClass
) {
1565
data().SuperClassTInfo =
superClass
;
1863
/// Retrieve the starting location of the
superclass
.
2538
ObjCInterfaceDecl *
SuperClass
;
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp
103
/// struct objc_super*. The type of the argument to the
superclass
message
476
llvm::Constant *
SuperClass
,
543
/// Looks up the method for sending a message to a
superclass
. This
682
/// The GCC ABI
superclass
message lookup function. Takes a pointer to a
723
/// The GNUstep ABI
superclass
message lookup function. Takes a pointer to
725
/// arguments. Returns the slot for the corresponding method.
Superclass
927
/// The GCC ABI
superclass
message lookup function. Takes a pointer to a
1770
// Get the
superclass
name.
1773
llvm::Constant *
SuperClass
= nullptr;
1776
SuperClass
= TheModule.getNamedGlobal(SuperClassName)
[
all
...]
CGObjC.cpp
332
case ObjCMessageExpr::
SuperClass
:
564
case ObjCMessageExpr::
SuperClass
:
640
case ObjCMessageExpr::
SuperClass
:
730
// Call [super dealloc] if we have a
superclass
.
/src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangAttrEmitter.cpp
2301
assert(!Supers.empty() && "Forgot to specify a
superclass
for the attr");
2718
AttrClass *
SuperClass
= nullptr;
2727
if (
SuperClass
) {
2729
SuperClass
->Descriptor.MacroName);
2801
if (AttrClass *
SuperClass
= findSuperClass(Class->TheRecord)) {
2802
Class->
SuperClass
=
SuperClass
;
2803
SuperClass
->SubClasses.push_back(Class.get());
2809
assert((i == Classes.begin()) == ((*i)->
SuperClass
== nullptr) &&
2852
// TableGen flattens the
superclass
list, so we just need to walk i
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp
1386
ObjCInterfaceDecl *
SuperClass
= ClassDecl->getSuperClass();
1387
while (
SuperClass
) {
1388
RewriteInterfaceDecl(
SuperClass
);
1389
SuperClass
=
SuperClass
->getSuperClass();
1480
case ObjCMessageExpr::
SuperClass
:
1563
case ObjCMessageExpr::
SuperClass
:
2976
// struct objc_object *object; struct objc_object *
superClass
;
2987
// struct objc_object *
superClass
;
3234
case ObjCMessageExpr::
SuperClass
:
[
all
...]
RewriteObjC.cpp
1296
case ObjCMessageExpr::
SuperClass
:
1372
case ObjCMessageExpr::
SuperClass
:
2662
case ObjCMessageExpr::
SuperClass
: {
4961
Preamble += "struct objc_object *
superClass
; ";
4966
Preamble += "object(o),
superClass
(s) {} ";
5431
ObjCInterfaceDecl *
SuperClass
= CDecl->getSuperClass();
5432
while (
SuperClass
) {
5433
RootClass =
SuperClass
;
5434
SuperClass
=
SuperClass
->getSuperClass()
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclObjC.cpp
476
// Only do this if the current class actually has a
superclass
.
477
if (const ObjCInterfaceDecl *
SuperClass
= IC->getSuperClass()) {
490
SuperClass
->lookupMethod(MDecl->getSelector(),
556
// Try to correct for a typo in the
superclass
name without correcting
605
// typedef int
SuperClass
;
606
// @interface MyClass :
SuperClass
{} @end
634
// Handle type arguments on the
superclass
.
2084
// If the
superclass
has the objc_runtime_visible attribute, we
2265
/// subclass must accept any object as an argument that its
superclass
's
2268
/// anywhere that you can use the
superclass
, but not vice versa). Th
[
all
...]
SemaCodeComplete.cpp
2609
// Add "super", if we're in an Objective-C class with a
superclass
.
4757
// Look in the
superclass
.
7017
// Add methods in
superclass
.
7199
case ObjCMessageExpr::
SuperClass
:
7220
.Case("
superclass
", Super)
7228
.Case("
superclass
", Super)
7233
// most likely case of forwarding all of our arguments to the
superclass
7260
// Try to find a
superclass
method with the same selector.
7280
// Check whether the
superclass
method has the same signature.
7299
// We have a
superclass
method. Now, form the send-to-super completion
[
all
...]
TreeTransform.h
13792
else if (E->getReceiverKind() == ObjCMessageExpr::
SuperClass
||
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp
149
if (MessageExpr->getReceiverKind() == ObjCMessageExpr::
SuperClass
) {
945
if (Sel.getAsString() == "
superclass
") {
946
// We try to figure out the type from the receiver of the '
superclass
'
/src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp
131
case ObjCMessageExpr::
SuperClass
:
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp
989
getOriginExpr()->getReceiverKind() == ObjCMessageExpr::
SuperClass
)
1134
// Search in the
superclass
on the next iteration.
/src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h
220
/// are not the
superclass
of some other listed class.
405
/// This is the common
superclass
of types that have a specific,
1575
/// Determine whether this record has the specified direct
superclass
.
1576
bool hasDirectSuperClass(const Record *
SuperClass
) const;
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
1534
case ObjCMessageExpr::
SuperClass
:
ASTWriterStmt.cpp
1408
case ObjCMessageExpr::
SuperClass
:
Completed in 211 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026