/libcore/luni/src/test/java/libcore/java/util/ |
EventObjectTest.java | 36 assertSame(source, new EventObject(source).getSource()); 50 return a.getSource() == null 51 || b.getSource() == null 52 || a.getSource() == b.getSource();
|
/external/guice/extensions/jmx/src/com/google/inject/tools/jmx/ |
ManagedBinding.java | 29 public String getSource() { 30 return binding.getSource().toString();
|
ManagedBindingMBean.java | 29 String getSource();
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/ |
PreferenceChangeEventTest.java | 45 assertSame(Preferences.userRoot(), event.getSource()); 51 assertSame(Preferences.userRoot(), event.getSource()); 57 assertSame(Preferences.userRoot(), event.getSource()); 63 assertSame(Preferences.userRoot(), event.getSource()); 72 assertSame(Preferences.userRoot(), event.getSource());
|
/external/autotest/frontend/client/src/autotest/common/ui/ |
TableSelectionPanel.java | 46 if (event.getSource() == selectAll) { 48 } else if (event.getSource() == selectVisible) { 51 assert event.getSource() == selectNone;
|
/external/guice/core/src/com/google/inject/internal/ |
LinkedBindingImpl.java | 59 return new LinkedBindingImpl<T>(getSource(), getKey(), scoping, targetKey); 63 return new LinkedBindingImpl<T>(getSource(), key, getScoping(), targetKey); 67 getScoping().applyTo(binder.withSource(getSource()).bind(getKey()).to(getLinkedKey())); 73 .add("source", getSource())
|
UntargettedBindingImpl.java | 45 return new UntargettedBindingImpl<T>(getSource(), getKey(), scoping); 49 return new UntargettedBindingImpl<T>(getSource(), key, getScoping()); 53 getScoping().applyTo(binder.withSource(getSource()).bind(getKey())); 59 .add("source", getSource())
|
InstanceBindingImpl.java | 79 return new InstanceBindingImpl<T>(getSource(), getKey(), scoping, injectionPoints, instance); 83 return new InstanceBindingImpl<T>(getSource(), key, getScoping(), injectionPoints, instance); 88 binder.withSource(getSource()).bind(getKey()).toInstance(instance); 94 .add("source", getSource())
|
LinkedProviderBindingImpl.java | 85 return new LinkedProviderBindingImpl<T>(getSource(), getKey(), scoping, providerKey); 89 return new LinkedProviderBindingImpl<T>(getSource(), key, getScoping(), providerKey); 93 getScoping().applyTo(binder.withSource(getSource()) 100 .add("source", getSource())
|
ProviderInstanceBindingImpl.java | 86 getSource(), getKey(), scoping, injectionPoints, providerInstance); 91 getSource(), key, getScoping(), injectionPoints, providerInstance); 96 binder.withSource(getSource()).bind(getKey()).toProvider(getUserSuppliedProvider())); 103 .add("source", getSource())
|
/frameworks/base/tools/aapt2/diff/ |
Diff.cpp | 76 const Source& getSource() { 155 emitDiffLine(apkB->getSource(), strStream.str()); 177 emitDiffLine(apkB->getSource(), strStream.str()); 193 emitDiffLine(apkB->getSource(), strStream.str()); 213 emitDiffLine(apkB->getSource(), strStream.str()); 232 emitDiffLine(apkB->getSource(), strStream.str()); 251 emitDiffLine(apkB->getSource(), strStream.str()); 265 emitDiffLine(apkB->getSource(), strStream.str()); 281 emitDiffLine(apkA->getSource(), strStream.str()); 299 emitDiffLine(apkB->getSource(), strStream.str()) [all...] |
/external/guice/core/src/com/google/inject/spi/ |
DisableCircularProxiesOption.java | 36 public Object getSource() { 41 binder.withSource(getSource()).disableCircularProxies();
|
ModuleAnnotatedMethodScannerBinding.java | 39 public Object getSource() { 52 binder.withSource(getSource()).scanModulesForAnnotatedMethods(scanner);
|
RequireAtInjectOnConstructorsOption.java | 37 public Object getSource() { 42 binder.withSource(getSource()).requireAtInjectOnConstructors();
|
RequireExactBindingAnnotationsOption.java | 36 public Object getSource() { 41 binder.withSource(getSource()).requireExactBindingAnnotations();
|
RequireExplicitBindingsOption.java | 36 public Object getSource() { 41 binder.withSource(getSource()).requireExplicitBindings();
|
/external/guice/extensions/grapher/src/com/google/inject/grapher/ |
InterfaceNode.java | 32 return new InterfaceNode(id, getSource()); 40 return "InterfaceNode{id=" + getId() + " source=" + getSource() + "}";
|
/external/jmdns/src/javax/jmdns/impl/ |
NetworkTopologyEventImpl.java | 48 return (this.getSource() instanceof JmDNS ? (JmDNS) getSource() : null);
|
/external/webrtc/talk/app/webrtc/ |
rtpreceiver.cc | 42 RTC_DCHECK(track_->GetSource()->remote()); 44 track_->GetSource()->RegisterAudioObserver(this); 49 track_->GetSource()->UnregisterAudioObserver(this); 89 RTC_DCHECK(track_->GetSource()->remote()); 90 provider_->SetVideoPlayout(ssrc_, true, track_->GetSource()->FrameInput());
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/ |
ConnectionEventTest.java | 40 assertSame(ipc, ce.getSource()); 53 assertSame(ipc, ce.getSource()); 58 assertSame(ipc, ce.getSource());
|
/external/guice/core/test/com/google/inject/ |
ReflectionTest.java | 46 ElementSource source = (ElementSource) fooBinding.getSource(); 60 ElementSource source = (ElementSource) i.getSource(); 77 ElementSource source = (ElementSource) fooBinding.getSource();
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSScript.cpp | 30 BCCContext &context = pScript.getSource().getContext(); 40 &pScript.getSource().getModule(), &libclcore_source->getModule()); 43 if (!pScript.getSource().merge(*libclcore_source)) {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
EventObjectTest.java | 37 * java.util.EventObject#getSource() 40 // Test for method java.lang.Object java.util.EventObject.getSource() 42 myEventObject.getSource() == myObject);
|
/external/jarjar/src/main/com/tonicsystems/jarjar/util/ |
ClassPathEntry.java | 23 String getSource() throws IOException;
|
/frameworks/base/tools/aapt2/link/ |
ProductFilter.cpp | 34 diag->error(DiagMessage(configValue->value->getSource()) 39 diag->note(DiagMessage(previouslySelectedConfigValue->value->getSource()) 52 diag->error(DiagMessage(configValue->value->getSource()) 56 diag->note(DiagMessage(previouslyDefaultConfigValue->value->getSource())
|