HomeSort by relevance Sort by last modified time
    Searched refs:Receiver (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium/base/
timer.h 112 template <class Receiver, bool kIsRepeating>
115 typedef void (Receiver::*ReceiverMethod)();
119 void Start(TimeDelta delay, Receiver* receiver, ReceiverMethod method) {
121 InitiateDelayedTask(new TimerTask(delay, receiver, method));
137 typedef BaseTimer<Receiver, kIsRepeating> SelfType;
141 TimerTask(TimeDelta delay, Receiver* receiver, ReceiverMethod method)
143 receiver_(receiver),
193 Receiver* receiver_
    [all...]
  /external/v8/src/mips/
virtual-frame-mips-inl.h 44 // The receiver frame slot.
45 MemOperand VirtualFrame::Receiver() {
virtual-frame-mips.h 260 // Push the address of the receiver slot on the frame.
272 // The receiver frame slot.
273 inline MemOperand Receiver();
301 // Call load IC. Receiver is on the stack and is consumed. Result is returned
306 // frame. If not, value and receiver are on the frame. Both are consumed.
310 // Call keyed load IC. Key and receiver are on the stack. Both are consumed.
314 // Call keyed store IC. Value, key and receiver are on the stack. All three
459 // (the fp register). The parameters, receiver, function, and context
463 // The index of the first parameter. The receiver lies below the first
  /external/chromium/chrome/browser/extensions/
file_reader_unittest.cc 29 class Receiver {
31 Receiver() : succeeded_(false) {
35 return ::NewCallback(this, &Receiver::DidReadFile);
64 Receiver receiver; local
67 new FileReader(resource, receiver.NewCallback()));
72 EXPECT_EQ(file_exists, receiver.succeeded());
73 EXPECT_EQ(file_contents, receiver.data());
93 Receiver receiver; local
    [all...]
  /frameworks/base/services/java/com/android/server/
CountryDetectorService.java 47 private final class Receiver implements IBinder.DeathRecipient {
51 public Receiver(ICountryListener listener) {
62 if (otherObj instanceof Receiver) {
63 return mKey.equals(((Receiver) otherObj).mKey);
80 private final HashMap<IBinder, Receiver> mReceivers;
89 mReceivers = new HashMap<IBinder, Receiver>();
125 Receiver r = new Receiver(listener);
152 for (Receiver receiver : mReceivers.values())
    [all...]
LocationManagerService.java 143 private final HashMap<Object, Receiver> mReceivers = new HashMap<Object, Receiver>();
172 private Receiver mProximityReceiver = null;
192 private final class Receiver implements IBinder.DeathRecipient, PendingIntent.OnFinished {
200 Receiver(ILocationListener listener) {
206 Receiver(PendingIntent intent) {
214 if (otherObj instanceof Receiver) {
216 ((Receiver)otherObj).mKey);
230 result = "Receiver{"
234 result = "Receiver{"
420 Receiver receiver = mReceivers.get(binder); local
1045 Receiver receiver = mReceivers.get(binder); local
1063 Receiver receiver = mReceivers.get(intent); local
1796 Receiver receiver = r.mReceiver; local
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 241 /// \brief When the receiver in property access is 'super', this is
245 llvm::PointerUnion3<Stmt*, const Type*, ObjCInterfaceDecl*> Receiver;
256 IdLoc(l), ReceiverLoc(), Receiver(base) {
266 IdLoc(l), ReceiverLoc(sl), Receiver(st.getTypePtr()) {
276 IdLoc(IdLoc), ReceiverLoc(), Receiver(Base) {
285 IdLoc(IdLoc), ReceiverLoc(SuperLoc), Receiver(SuperTy.getTypePtr()) {
291 SourceLocation ReceiverLoc, ObjCInterfaceDecl *Receiver)
294 IdLoc(IdLoc), ReceiverLoc(ReceiverLoc), Receiver(Receiver) {
331 return cast<Expr>(Receiver.get<Stmt*>());
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 287 // - if the receiver is super, T is a pointer to the class of the
296 // - if the receiver is the name of a class U, T is a pointer to U
300 // - if the receiver is of type Class or qualified Class type,
306 // - if the receiver is id, qualified id, Class, or qualified Class, T
307 // is the receiver type, otherwise
308 // - T is the type of the receiver expression.
447 bool Sema::isSelfExpr(Expr *receiver) {
454 receiver = receiver->IgnoreParenLValueCasts();
455 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(receiver))
    [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 61 if (Expr* Receiver = ME->getInstanceReceiver()->IgnoreParenCasts())
62 if (ObjCIvarRefExpr* E = dyn_cast<ObjCIvarRefExpr>(Receiver))
69 if (Expr* Receiver = ME->getInstanceReceiver()->IgnoreParenCasts())
70 if (DeclRefExpr* E = dyn_cast<DeclRefExpr>(Receiver))
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 394 const Expr *Receiver = ME->getInstanceReceiver();
395 if (!Receiver)
398 const SVal &V = state->getSVal(Receiver);
406 // The receiver was nil, and hence the method was skipped.
408 // the receiver was null.
409 bugreporter::registerTrackNullOrUndefValue(BRC, Receiver, N);
411 PathDiagnosticLocation L(Receiver, BRC.getSourceManager());
413 "because the receiver is nil");
CFRefCount.cpp 62 // We have an expression for the receiver? Fetch the value
434 /// Receiver - If this summary applies to an Objective-C message expression,
435 /// this is the effect applied to the state of the receiver.
436 ArgEffect Receiver;
450 : Args(A), DefaultArgEffect(defaultEff), Receiver(ReceiverEff), Ret(R),
482 /// Sets the effect on the receiver of the message.
483 void setReceiverEffect(ArgEffect e) { Receiver = e; }
485 /// getReceiverEffect - Returns the effect on the receiver of the call.
487 ArgEffect getReceiverEffect() const { return Receiver; }
815 DoNothing /* receiver effect */)
    [all...]
ExprEngine.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 86 // implementation vary between runtimes. We can get the receiver and
91 // We don't retain the receiver in delegate init calls, and this is
92 // safe because the receiver value is always loaded from 'self',
105 // Find the receiver
107 llvm::Value *Receiver = 0;
114 Receiver = ter.getPointer();
116 Receiver = EmitARCRetainNonBlock(Receiver);
118 Receiver = EmitScalarExpr(E->getInstanceReceiver());
127 Receiver = Runtime.GetClass(Builder, OID)
    [all...]
CGObjCGNU.cpp 113 /// contains the receiver (object) and the expected class.
403 llvm::Value *&Receiver,
423 llvm::Value *Receiver,
434 llvm::Value *Receiver,
513 /// structure describing the receiver and the class, and a selector as
518 llvm::Value *&Receiver,
523 EnforceType(Builder, Receiver, IdTy),
551 /// a structure describing the receiver and the class, and a selector as
560 llvm::Value *&Receiver,
566 // Store the receiver on the stack so that we can reload it late
    [all...]
CGObjCRuntime.h 152 llvm::Value *Receiver,
CGObjCMac.cpp     [all...]
  /development/tools/emulator/system/qemud/
qemud.c 687 /** PACKET RECEIVER
705 } Receiver;
707 /* post a packet to a receiver. Note that this transfers
708 * ownership of the packet to the receiver.
711 receiver_post( Receiver* r, Packet* p )
719 /* tell a receiver the packet source was closed.
721 * receiver.
724 receiver_close( Receiver* r )
736 ** these are smart listeners that send incoming packets to a receiver
752 Receiver receiver[1] member in struct:FDHandler
1060 Receiver receiver[1]; \/* send payload there *\/ member in struct:Serial
    [all...]
  /sdk/emulator/qemud/
qemud.c 687 /** PACKET RECEIVER
705 } Receiver;
707 /* post a packet to a receiver. Note that this transfers
708 * ownership of the packet to the receiver.
711 receiver_post( Receiver* r, Packet* p )
719 /* tell a receiver the packet source was closed.
721 * receiver.
724 receiver_close( Receiver* r )
736 ** these are smart listeners that send incoming packets to a receiver
752 Receiver receiver[1] member in struct:FDHandler
1060 Receiver receiver[1]; \/* send payload there *\/ member in struct:Serial
    [all...]
  /external/v8/test/mjsunit/regress/
regress-124.js 50 // Receiver should be the arguments object here.
  /external/clang/lib/Parse/
ParseObjc.cpp     [all...]
  /external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.h 65 class Receiver;
  /packages/apps/MusicFX/src/com/android/musicfx/
Compatibility.java 96 public static class Receiver extends BroadcastReceiver {
191 // that the broadcast receiver(s) in that same package are enabled,
225 log("enabling receiver " + foo);
230 log("disabling receiver " + foo);
  /external/clang/lib/AST/
Expr.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp     [all...]

Completed in 686 milliseconds

1 2