/external/v8/src/ic/mips64/ |
stub-cache-mips64.cc | 20 StubCache::Table table, Register receiver, Register name, 60 __ ld(scratch2, FieldMemOperand(receiver, HeapObject::kMapOffset)); 94 Code::Flags flags, Register receiver, 109 DCHECK(!AreAliased(receiver, name, scratch, extra, extra2, extra3)); 138 // Check that the receiver isn't a smi. 139 __ JumpIfSmi(receiver, &miss); 141 // Get the map of the receiver and compute the hash. 143 __ ld(at, FieldMemOperand(receiver, HeapObject::kMapOffset)); 153 ProbeTable(isolate, masm, ic_kind, flags, kPrimary, receiver, name, scratch, 164 ProbeTable(isolate, masm, ic_kind, flags, kSecondary, receiver, name, scratch [all...] |
/external/v8/src/ic/ppc/ |
stub-cache-ppc.cc | 20 StubCache::Table table, Register receiver, Register name, 67 __ LoadP(scratch2, FieldMemOperand(receiver, HeapObject::kMapOffset)); 107 Code::Flags flags, Register receiver, 127 DCHECK(!AreAliased(receiver, name, scratch, extra, extra2, extra3)); 156 // Check that the receiver isn't a smi. 157 __ JumpIfSmi(receiver, &miss); 159 // Get the map of the receiver and compute the hash. 161 __ LoadP(ip, FieldMemOperand(receiver, HeapObject::kMapOffset)); 169 ProbeTable(isolate, masm, ic_kind, flags, kPrimary, receiver, name, scratch, 179 ProbeTable(isolate, masm, ic_kind, flags, kSecondary, receiver, name, scratch [all...] |
/frameworks/base/media/java/android/media/midi/ |
MidiReceiver.java | 38 * @param maxMessageSize the maximum size of a message this receiver can receive 45 * Called whenever the receiver is passed new MIDI data. 50 * The msg bytes should be copied by the receiver rather than retaining a reference 65 * Instructs the receiver to discard all pending MIDI data. 73 * Called when the receiver is instructed to discard all pending MIDI data. 82 * Returns the maximum size of a message this receiver can receive. 90 * Called to send MIDI data to the receiver without a timestamp. 91 * Data will be processed by receiver in the order sent. 109 * Called to send MIDI data to the receiver with a specified timestamp. 110 * Data will be processed by receiver in order first by timestamp, then in the order sent [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
CarrierSignalAgent.java | 46 * This is a map of intent action -> string array of carrier signal receiver names which are 52 * This is a map of intent action -> carrier config key of signal receiver names which are 71 * Read carrier signalling receiver name from CarrierConfig based on the intent type 72 * @return array of receiver Name: the package (a String) name / the class (a String) name 118 loge("Carrier receiver name is null"); 127 loge("Carrier receiver name could not be parsed"); 131 // Check if broadcast receiver is available 134 loge("Carrier signal receiver is configured, but not available: " + name); 143 if (DBG) log("send Intent to carrier signal receiver with action: " + 154 /* Clear cached receiver names * [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/ |
AndroidJUnitPropertyTester.java | 49 public boolean test(Object receiver, String property, Object[] args, Object expectedValue) { 50 if (!(receiver instanceof IAdaptable)) { 51 final String elementName = (receiver == null ? "null" : //$NON-NLS-1$ 52 receiver.getClass().getName()); 59 if (receiver instanceof IJavaElement) { 60 element = (IJavaElement) receiver; 61 } else if (receiver instanceof IResource) { 62 element = JavaCore.create((IResource) receiver); 67 element= (IJavaElement) ((IAdaptable) receiver).getAdapter(IJavaElement.class); 69 IResource resource = (IResource) ((IAdaptable) receiver).getAdapter [all...] |
/external/v8/src/ic/ia32/ |
stub-cache-ia32.cc | 20 StubCache::Table table, Register name, Register receiver, 47 __ cmp(offset, FieldOperand(receiver, HeapObject::kMapOffset)); 96 __ cmp(offset, FieldOperand(receiver, HeapObject::kMapOffset)); 147 Code::Flags flags, Register receiver, 160 DCHECK(!scratch.is(receiver)); 162 DCHECK(!extra.is(receiver)); 177 // Check that the receiver isn't a smi. 178 __ JumpIfSmi(receiver, &miss); 180 // Get the map of the receiver and compute the hash. 182 __ add(offset, FieldOperand(receiver, HeapObject::kMapOffset)) 192 ProbeTable(isolate(), masm, ic_kind, flags, kPrimary, name, receiver, offset, local 205 ProbeTable(isolate(), masm, ic_kind, flags, kSecondary, name, receiver, local [all...] |
/external/v8/src/ic/x87/ |
stub-cache-x87.cc | 20 StubCache::Table table, Register name, Register receiver, 47 __ cmp(offset, FieldOperand(receiver, HeapObject::kMapOffset)); 96 __ cmp(offset, FieldOperand(receiver, HeapObject::kMapOffset)); 147 Code::Flags flags, Register receiver, 160 DCHECK(!scratch.is(receiver)); 162 DCHECK(!extra.is(receiver)); 177 // Check that the receiver isn't a smi. 178 __ JumpIfSmi(receiver, &miss); 180 // Get the map of the receiver and compute the hash. 182 __ add(offset, FieldOperand(receiver, HeapObject::kMapOffset)) 192 ProbeTable(isolate(), masm, ic_kind, flags, kPrimary, name, receiver, offset, local 205 ProbeTable(isolate(), masm, ic_kind, flags, kSecondary, name, receiver, local [all...] |
/art/runtime/ |
reflection_test.cc | 85 mirror::Object** receiver, 115 *receiver = nullptr; 122 *receiver = c->AllocObject(self); 134 mirror::Object* receiver; local 135 ReflectionTestMakeExecutable(&method, &receiver, is_static, "nop", "()V"); 136 ScopedLocalRef<jobject> receiver_ref(soa.Env(), soa.AddLocalReference<jobject>(receiver)); 143 mirror::Object* receiver; local 144 ReflectionTestMakeExecutable(&method, &receiver, is_static, "identity", "(B)B"); 145 ScopedLocalRef<jobject> receiver_ref(soa.Env(), soa.AddLocalReference<jobject>(receiver)); 169 mirror::Object* receiver; local 194 mirror::Object* receiver; local 219 mirror::Object* receiver; local 248 mirror::Object* receiver; local 287 mirror::Object* receiver; local 331 mirror::Object* receiver; local 380 mirror::Object* receiver; local 414 mirror::Object* receiver; local 441 mirror::Object* receiver; local 471 mirror::Object* receiver; local [all...] |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.0-beta-1103/ |
kotlin-stdlib-1.0.0-beta-1103.jar | |
/external/v8/test/mjsunit/ |
keyed-call-generic.js | 30 function testOne(receiver, key, result) { 32 assertEquals(result, receiver[key]()); 36 function testMany(receiver, keys, results) { 39 assertEquals(results[k], receiver[keys[k]]()); 99 function testException(receiver, keys, exceptions) { 104 var result = receiver[keys[k]]();
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
bwe_simulations.cc | 57 RateCounterFilter counter2(&uplink_, 0, "Receiver", bwe_names[GetParam()]); 58 PacketReceiver receiver(&uplink_, 0, GetParam(), true, true); 69 RateCounterFilter counter2(&downlink_, 0, "Receiver", 71 PacketReceiver receiver(&downlink_, 0, GetParam(), true, true); 85 PacketReceiver receiver(&uplink_, kFlowIds[0], GetParam(), true, false); 111 RateCounterFilter counter(&uplink_, 0, "Receiver", bwe_names[GetParam()]); 112 PacketReceiver receiver(&uplink_, 0, GetParam(), true, false); 127 RateCounterFilter counter(&uplink_, 0, "Receiver", bwe_names[GetParam()]); 128 PacketReceiver receiver(&uplink_, 0, GetParam(), true, true); 142 RateCounterFilter counter(&uplink_, 0, "Receiver", bwe_names[GetParam()]) [all...] |
/frameworks/base/services/core/java/com/android/server/am/ |
ReceiverList.java | 29 * A receiver object that has registered for one or more broadcasts. 35 public final IIntentReceiver receiver; field in class:ReceiverList 48 receiver = _receiver; 65 owner.unregisterReceiver(receiver); 108 sb.append((receiver.asBinder() instanceof Binder) ? " local:" : " remote:"); 109 sb.append(Integer.toHexString(System.identityHashCode(receiver.asBinder())));
|
/packages/apps/Messaging/src/com/android/messaging/receiver/ |
SendStatusReceiver.java | 17 package com.android.messaging.receiver; 34 * The SMS sent and delivery intent receiver. 40 "com.android.messaging.receiver.SendStatusReceiver.MESSAGE_SENT"; 42 "com.android.messaging.receiver.SendStatusReceiver.MESSAGE_DELIVERED"; 44 "com.android.messaging.receiver.SendStatusReceiver.MMS_SENT"; 46 "com.android.messaging.receiver.SendStatusReceiver.MMS_DOWNLOADED";
|
AbortMmsWapPushReceiver.java | 17 package com.android.messaging.receiver; 29 * This receiver is used to abort MMS WAP broadcasts pre-KLP when SMS is enabled. 37 // receiver is not used on KLP but we do an extra check here just to make sure.
|
/packages/providers/MediaProvider/ |
AndroidManifest.xml | 40 <receiver android:name="MediaUpgradeReceiver"> 47 </receiver> 49 <receiver android:name="MediaScannerReceiver"> 65 </receiver> 73 <receiver android:name=".MtpReceiver"> 80 </receiver>
|
/cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/ |
ContentTest.java | 65 * This method will send an intent to a receiver in another profile. 67 * The receiver will read the message from the uri, and put it inside the result intent. 82 * This method will send an intent to a receiver in another profile. 84 * The receiver will read the message from the extra, and write it to the uri in 88 // It's the receiver of the intent that should write to the uri, not us. So, for now, we 106 // Now checking if the receiver can read this uri, without re-granting the read permission. 116 * The intent receiver will try to read uriNotGranted. 117 * Inside the same user, this uri can be read if the receiver has the 121 * We also grant uriGranted to the receiver (this uri belongs to the same content provider as 131 // Granting uriGranted to the receiver [all...] |
/cts/hostsidetests/systemui/app/ |
AndroidManifest.xml | 40 <receiver 41 android:name=".TestActiveTileService$Receiver"> 45 </receiver>
|
/cts/tests/tests/os/src/android/os/cts/ |
ResultReceiverTest.java | 39 ResultReceiver receiver = new ResultReceiver(mHandler); local 40 assertEquals(0, receiver.describeContents()); 43 receiver.writeToParcel(p, 0);
|
/development/samples/WiktionarySimple/ |
AndroidManifest.xml | 27 <!-- Broadcast Receiver that will process AppWidget updates --> 28 <receiver android:name=".WordWidget" android:label="@string/widget_name"> 34 </receiver>
|
/development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/service/ |
MessagingService.java | 22 import com.example.android.smssample.receiver.MessagingReceiver; 26 * that the {@link com.example.android.smssample.receiver.MessagingReceiver} passes over. It's 28 * the time allowed in a receiver.
|
/device/google/atv/overlay/frameworks/base/core/res/res/xml/ |
global_keys.xml | 31 <key keyCode="KEYCODE_GUIDE" component="com.google.android.tv/.receiver.GlobalKeyReceiver" /> 32 <key keyCode="KEYCODE_TV" component="com.google.android.tv/.receiver.GlobalKeyReceiver" /> 33 <key keyCode="KEYCODE_TV_INPUT" component="com.google.android.tv/.receiver.GlobalKeyReceiver" />
|
/external/clang/test/Analysis/ |
rdar-6540084.m | 12 @class NSArray; // expected-note {{receiver is instance of class declared here}} 18 @interface TazGuttenberg : NSObject {} typedef NSUInteger BugsBunnyType; @end // expected-note {{receiver is instance of class declared here}} 25 NSPredicate *isSearchablePredicate = [NSPredicate predicateWithFormat:@"isSearchable == YES"]; // expected-warning{{receiver 'NSPredicate' is a forward class and corresponding}} // expected-warning{{return type defaults to 'id'}}
|
/external/clang/test/Parser/ |
objcxx0x-lambda-expressions.mm | 30 [foo = bar baz]; // expected-warning {{receiver type 'int'}} expected-warning {{instance method '-baz'}} 35 [foo = bar ++ baz]; // expected-warning {{receiver type 'int'}} expected-warning {{instance method '-baz'}} 38 [foo = { bar } baz ]; // expected-warning {{receiver type 'int'}} expected-warning {{instance method '-baz'}}
|
/external/jemalloc/test/unit/ |
mq.c | 67 thd_t receiver; local 73 thd_create(&receiver, thd_receiver_start, (void *)&mq); 77 thd_join(receiver, NULL);
|
/external/srtp/test/ |
rtpw_test.sh | 5 # tests the rtpw sender and receiver functions 25 echo $0 ": starting rtpw receiver process... " 31 echo $0 ": receiver PID = $receiver_pid"
|