Searched defs:source (Results 76 - 100 of 1548) sorted by relevance

1234567891011>>

/external/guice/core/src/com/google/inject/internal/
H A DExposureBuilder.java31 private final Object source; field in class:ExposureBuilder
34 public ExposureBuilder(Binder binder, Object source, Key<T> key) { argument
36 this.source = source;
63 return source;
H A DInjectionRequestProcessor.java86 final Object source; field in class:InjectionRequestProcessor.StaticInjection
92 this.source = request.getSource();
97 Errors errorsForMember = errors.withSource(source);
H A DInternalFactoryToProviderAdapter.java30 private final Object source; field in class:InternalFactoryToProviderAdapter
32 public InternalFactoryToProviderAdapter(Provider<? extends T> provider, Object source) { argument
34 this.source = checkNotNull(source, "source");
41 return errors.checkForNull(provider.get(), source, dependency);
43 throw errors.withSource(source).errorInProvider(userException).toException();
H A DProviderInternalFactory.java35 protected final Object source; field in class:ProviderInternalFactory
37 ProviderInternalFactory(Object source) { argument
38 this.source = checkNotNull(source, "source");
81 T t = errors.checkForNull(provider.get(), source, dependency);
/external/guice/core/src/com/google/inject/spi/
H A DDisableCircularProxiesOption.java30 private final Object source; field in class:DisableCircularProxiesOption
32 DisableCircularProxiesOption(Object source) { argument
33 this.source = checkNotNull(source, "source");
37 return source;
H A DInjectionRequest.java39 private final Object source; field in class:InjectionRequest
43 public InjectionRequest(Object source, TypeLiteral<T> type, T instance) { argument
44 this.source = checkNotNull(source, "source");
50 return source;
H A DModuleAnnotatedMethodScannerBinding.java31 private final Object source; field in class:ModuleAnnotatedMethodScannerBinding
34 public ModuleAnnotatedMethodScannerBinding(Object source, ModuleAnnotatedMethodScanner scanner) { argument
35 this.source = checkNotNull(source, "source");
40 return source;
57 + " (bound at " + Errors.convert(source) + ")";
H A DProvisionListenerBinding.java35 private final Object source; field in class:ProvisionListenerBinding
39 ProvisionListenerBinding(Object source, argument
42 this.source = source;
60 return source;
H A DRequireAtInjectOnConstructorsOption.java31 private final Object source; field in class:RequireAtInjectOnConstructorsOption
33 RequireAtInjectOnConstructorsOption(Object source) { argument
34 this.source = checkNotNull(source, "source");
38 return source;
H A DRequireExactBindingAnnotationsOption.java30 private final Object source; field in class:RequireExactBindingAnnotationsOption
32 RequireExactBindingAnnotationsOption(Object source) { argument
33 this.source = checkNotNull(source, "source");
37 return source;
H A DRequireExplicitBindingsOption.java30 private final Object source; field in class:RequireExplicitBindingsOption
32 RequireExplicitBindingsOption(Object source) { argument
33 this.source = checkNotNull(source, "source");
37 return source;
H A DScopeBinding.java38 private final Object source; field in class:ScopeBinding
42 ScopeBinding(Object source, Class<? extends Annotation> annotationType, Scope scope) { argument
43 this.source = checkNotNull(source, "source");
49 return source;
H A DStaticInjectionRequest.java37 private final Object source; field in class:StaticInjectionRequest
40 StaticInjectionRequest(Object source, Class<?> type) { argument
41 this.source = checkNotNull(source, "source");
46 return source;
H A DTypeConverterBinding.java37 private final Object source; field in class:TypeConverterBinding
42 public TypeConverterBinding(Object source, Matcher<? super TypeLiteral<?>> typeMatcher, argument
44 this.source = checkNotNull(source, "source");
50 return source;
71 + " (bound at " + Errors.convert(source) + ")";
H A DTypeListenerBinding.java35 private final Object source; field in class:TypeListenerBinding
39 TypeListenerBinding(Object source, TypeListener listener, argument
41 this.source = source;
57 return source;
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
H A DFactoryModuleBuilder.java211 public <T> FactoryModuleBuilder implement(Class<T> source, Class<? extends T> target) { argument
212 return implement(source, TypeLiteral.get(target));
218 public <T> FactoryModuleBuilder implement(Class<T> source, TypeLiteral<? extends T> target) { argument
219 return implement(TypeLiteral.get(source), target);
225 public <T> FactoryModuleBuilder implement(TypeLiteral<T> source, Class<? extends T> target) { argument
226 return implement(source, TypeLiteral.get(target));
232 public <T> FactoryModuleBuilder implement(TypeLiteral<T> source, argument
234 return implement(Key.get(source), target);
240 public <T> FactoryModuleBuilder implement(Class<T> source, Annotation annotation, argument
242 return implement(source, annotatio
248 implement(Class<T> source, Annotation annotation, TypeLiteral<? extends T> target) argument
256 implement(TypeLiteral<T> source, Annotation annotation, Class<? extends T> target) argument
264 implement(TypeLiteral<T> source, Annotation annotation, TypeLiteral<? extends T> target) argument
272 implement(Class<T> source, Class<? extends Annotation> annotationType, Class<? extends T> target) argument
280 implement(Class<T> source, Class<? extends Annotation> annotationType, TypeLiteral<? extends T> target) argument
288 implement(TypeLiteral<T> source, Class<? extends Annotation> annotationType, Class<? extends T> target) argument
296 implement(TypeLiteral<T> source, Class<? extends Annotation> annotationType, TypeLiteral<? extends T> target) argument
304 implement(Key<T> source, Class<? extends T> target) argument
311 implement(Key<T> source, TypeLiteral<? extends T> target) argument
[all...]
/external/guice/extensions/grapher/src/com/google/inject/grapher/
H A DImplementationNode.java35 public ImplementationNode(NodeId id, Object source, Collection<Member> members) { argument
36 super(id, source);
57 return "ImplementationNode{id=" + getId() + " source=" + getSource()
H A DInstanceNode.java32 public InstanceNode(NodeId id, Object source, Object instance, Iterable<Member> members) { argument
33 super(id, source);
60 return "InstanceNode{id=" + getId() + " source=" + getSource() + " instance=" + instance
H A DInterfaceNode.java27 public InterfaceNode(NodeId id, Object source) { argument
28 super(id, source);
40 return "InterfaceNode{id=" + getId() + " source=" + getSource() + "}";
H A DNameFactory.java35 String getSourceName(Object source); argument
H A DNode.java29 * When set to true, the source object is ignored in {@link #equals} and {@link #hashCode}.
35 private final Object source; field in class:Node
37 protected Node(NodeId id, Object source) { argument
39 this.source = source;
47 return source;
56 && (ignoreSourceInComparisons || Objects.equal(source, other.source));
60 return ignoreSourceInComparisons ? id.hashCode() : Objects.hashCode(id, source);
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
H A DIsEventFrom.java15 private final Object source; field in class:IsEventFrom
17 public IsEventFrom(Class<?> eventClass, Object source) { argument
19 this.source = source;
30 mismatchDescription.appendText("source was ").appendValue(item.getSource());
38 return ev.getSource() == source;
46 .appendValue(source);
51 * derived from <var>eventClass</var> announced by <var>source</var>.
57 * @param source
58 * the source o
60 eventFrom(Class<? extends EventObject> eventClass, Object source) argument
73 eventFrom(Object source) argument
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationCurrencyTest.java13 * Source File: $ICU4CRoot/source/test/intltest/currcoll.cpp
70 String source;
75 source = new String(currency[i]);
86 int compareResult = c.compare(source, target);
89 sourceKey = c.getCollationKey(source);
92 errln("Couldn't get collationKey for source");
99 errln("Couldn't get collationKey for source");
105 reportCResult( source, target, sourceKey, targetKey, compareResult, keyResult, compareResult, expectedResult );
110 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
134 logln(msg1 + source
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
H A DTestUtility.java41 public static String replace(String source, String toBeReplaced, String replacement) { argument
44 for (int i = 0; i < source.length(); ++i) {
45 if (source.regionMatches(false, i, toBeReplaced, 0, len)) {
49 results.append(source.charAt(i));
55 public static String replaceAll(String source, UnicodeSet set, String replacement) { argument
58 for (int i = 0; i < source.length(); i += UTF16.getCharCount(cp)) {
59 cp = UTF16.charAt(source,i);
/external/icu/icu4c/source/common/unicode/
H A Dcaniter.h78 * @param source string to get results for
82 CanonicalIterator(const UnicodeString &source, UErrorCode &status);
91 * Gets the NFD form of the current source we are iterating over.
92 * @return gets the source: NOTE: it is the NFD form of source
113 * Set a new source for this iterator. Allows object reuse.
114 * @param newSource the source string to iterate against. This allows the same iterator to be used
115 * while changing the source string, saving object creation.
125 * @param source the string to find permutations for
131 static void U_EXPORT2 permute(UnicodeString &source, UBoo
167 UnicodeString source; member in class:U_FINAL
[all...]

Completed in 1033 milliseconds

1234567891011>>