HomeSort by relevance Sort by last modified time
    Searched defs:Self (Results 51 - 58 of 58) sorted by null

1 23

  /external/clang/lib/CodeGen/
CGObjC.cpp 319 // We generally assume that 'self' lives throughout a method call.
363 // safe because the receiver value is always loaded from 'self',
433 // self. This represents the call taking direct ownership of that
435 // arguments because they might also reference self, but we don't
436 // have to worry about any of them modifying self because that would
443 // Do an unsafe store of null into self.
470 // the call back into self. This takes ownership of the value.
499 llvm::Value *self = CGF.LoadObjCSelf(); variable
507 self,
942 llvm::Value *self = Builder.CreateBitCast(LoadObjCSelf(), VoidPtrTy); local
1225 llvm::Value *self = local
1370 llvm::Value *self = CGF.LoadObjCSelf(); local
    [all...]
CGObjCMac.cpp 78 /// self and selector parameters are shifted over by one.
87 /// [double | long double] objc_msgSend_fpret(id self, SEL op, ...)
100 /// _Complex long double objc_msgSend_fp2ret(id self, SEL op, ...)
272 // void objc_setProperty_atomic(id self, SEL _cmd,
274 // void objc_setProperty_nonatomic(id self, SEL _cmd,
276 // void objc_setProperty_atomic_copy(id self, SEL _cmd,
278 // void objc_setProperty_nonatomic_copy(id self, SEL _cmd,
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/clang/include/clang/Parse/
Parser.h 791 Parser *Self;
797 // parser Self where the new Scope is created with the flags
799 ParseScope(Parser *Self, unsigned ScopeFlags, bool EnteredScope = true,
801 : Self(Self) {
803 Self->EnterScope(ScopeFlags);
806 Self->incrementMSManglingNumber();
808 this->Self = nullptr;
815 if (Self) {
816 Self->ExitScope()
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
TreeTransform.h 100 Derived &Self;
104 ForgetPartiallySubstitutedPackRAII(Derived &Self) : Self(Self) {
105 Old = Self.ForgetPartiallySubstitutedPack();
109 Self.RememberPartiallySubstitutedPack(Old);
176 TreeTransform &Self;
181 TemporaryBase(TreeTransform &Self, SourceLocation Location,
182 DeclarationName Entity) : Self(Self) {
    [all...]

Completed in 1534 milliseconds

1 23