HomeSort by relevance Sort by last modified time
    Searched full:delegates (Results 1 - 25 of 452) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
Mixin.java 48 abstract public Mixin newInstance(Object[] delegates);
56 public static Mixin create(Object[] delegates) {
58 gen.setDelegates(delegates);
68 public static Mixin create(Class[] interfaces, Object[] delegates) {
71 gen.setDelegates(delegates);
99 private Object[] delegates; field in class:Mixin.Generator
128 public void setDelegates(Object[] delegates) {
129 this.delegates = delegates;
133 if (classes == null && delegates == null)
    [all...]
  /external/clang/test/PCH/
cxx0x-delegating-ctors.cpp 18 // expected-note{{which delegates to}}
20 // expected-note@11{{it delegates to}}
21 // expected-note@13{{it delegates to}}
23 // expected-note@14{{which delegates to}}
  /external/proguard/src/proguard/io/
NameFilter.java 28 * This DataEntryReader delegates to one of two other DataEntryReader instances,
36 * Creates a new NameFilter that delegates to the given reader, depending
47 * Creates a new NameFilter that delegates to either of the two given
61 * Creates a new NameFilter that delegates to the given reader, depending
72 * Creates a new NameFilter that delegates to either of the two given
ClassFilter.java 28 * This DataEntryReader delegates to one of two other DataEntryReader instances,
36 * Creates a new ClassFilter that delegates reading classes to the
46 * Creates a new ClassFilter that delegates to either of the two given
DirectoryFilter.java 24 * This DataEntryReader delegates to one of two other DataEntryReader instances,
32 * Creates a new ClassFilter that delegates reading directories to the
42 * Creates a new ClassFilter that delegates to either of the two given
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
SLF4JLocationAwareLog.java 29 * delegates all processing to a wrapped {@link Logger org.slf4j.Logger}
56 * Delegates to the <code>isTraceEnabled<code> method of the wrapped
64 * Directly delegates to the wrapped <code>org.slf4j.Logger</code> instance.
71 * Directly delegates to the wrapped <code>org.slf4j.Logger</code> instance.
78 * Directly delegates to the wrapped <code>org.slf4j.Logger</code> instance.
85 * Directly delegates to the wrapped <code>org.slf4j.Logger</code> instance.
92 * Delegates to the <code>isErrorEnabled<code> method of the wrapped
100 * Converts the input parameter to String and then delegates to the debug
111 * Converts the first input parameter to String and then delegates to the
124 * Converts the input parameter to String and then delegates to the wrappe
    [all...]
SLF4JLog.java 28 * delegates all processing to a wrapped {@link Logger org.slf4j.Logger}
53 * Directly delegates to the wrapped <code>org.slf4j.Logger</code> instance.
60 * Directly delegates to the wrapped <code>org.slf4j.Logger</code> instance.
67 * Delegates to the <code>isErrorEnabled<code> method of the wrapped
75 * Directly delegates to the wrapped <code>org.slf4j.Logger</code> instance.
82 * Delegates to the <code>isDebugEnabled<code> method of the wrapped
90 * Directly delegates to the wrapped <code>org.slf4j.Logger</code> instance.
97 * Converts the input parameter to String and then delegates to the debug
108 * Converts the first input parameter to String and then delegates to the
121 * Converts the input parameter to String and then delegates to the wrappe
    [all...]
  /external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/
JCLLoggerAdapter.java 54 * Delegates to the {@link Log#isTraceEnabled} method of the underlying
64 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying
74 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying
95 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying
118 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying
137 * Delegates to the {@link Log#trace(java.lang.Object, java.lang.Throwable)} method of
150 * Delegates to the {@link Log#isDebugEnabled} method of the underlying
160 * Delegates to the {@link Log#debug(java.lang.Object)} method of the underlying
170 * Delegates to the {@link Log#debug(java.lang.Object)} method of the underlying
191 * Delegates to the {@link Log#debug(java.lang.Object)} method of the underlyin
    [all...]
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Category.java 134 * Delegates to {@link org.slf4j.Logger#isDebugEnabled} method in SLF4J
141 * Delegates to {@link org.slf4j.Logger#isInfoEnabled} method in SLF4J
148 * Delegates tob {@link org.slf4j.Logger#isWarnEnabled} method in SLF4J
155 * Delegates to {@link org.slf4j.Logger#isErrorEnabled} method in SLF4J
216 * Delegates to {@link org.slf4j.Logger#debug(String)} method of SLF4J.
223 * Delegates to {@link org.slf4j.Logger#debug(String,Throwable)} method in
231 * Delegates to {@link org.slf4j.Logger#info(String)} method in SLF4J.
238 * Delegates to {@link org.slf4j.Logger#info(String,Throwable)} method in
246 * Delegates to {@link org.slf4j.Logger#warn(String)} method in SLF4J.
253 * Delegates to {@link org.slf4j.Logger#warn(String,Throwable)} method i
    [all...]
Logger.java 62 * Delegates to {@link org.slf4j.Logger#isTraceEnabled}
70 * Delegates to {@link org.slf4j.Logger#trace(String)} method in SLF4J.
77 * Delegates to {@link org.slf4j.Logger#trace(String,Throwable)}
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
StatementParser.java 44 List<String> delegates = new ArrayList<String>(); local
59 delegates.addAll(result.getDelegates());
63 return new ParsedStatement(statements, delegates);
83 List<String> delegates = new ArrayList<String>(); local
88 delegates.add(statement.optString(Utils.DELEGATE_FIELD_DELEGATE));
109 return new ParsedStatement(statements, delegates);
ParsedStatement.java 29 public ParsedStatement(List<Statement> statements, List<String> delegates) {
31 this.mDelegates = delegates;
  /cts/tools/dasm/src/java_cup/runtime/
token.java 15 /* Simple constructor -- just delegates to the super class. */
  /external/clang/test/SemaCXX/
cxx0x-delegating-ctors.cpp 29 foo::foo (const float* f) : foo(*f) { // expected-note{{it delegates to}}
33 //expected-note{{which delegates to}}
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
BRWriter.kt 19 import kotlin.properties.Delegates
24 val klass: String by Delegates.lazy {
LayoutBinderWriter.kt 35 import kotlin.properties.Delegates
73 val ExprModel.ext by Delegates.lazy { target : ExprModel ->
85 val BindingTarget.readableName by Delegates.lazy { target: BindingTarget ->
101 val BindingTarget.fieldName : String by Delegates.lazy { target : BindingTarget ->
111 val BindingTarget.androidId by Delegates.lazy { target : BindingTarget ->
119 val BindingTarget.interfaceType by Delegates.lazy { target : BindingTarget ->
127 val BindingTarget.constructorParamName by Delegates.lazy { target : BindingTarget ->
132 val Expr.readableName by Delegates.lazy { expr : Expr ->
138 val Expr.fieldName by Delegates.lazy { expr : Expr ->
142 val Expr.listenerClassName by Delegates.lazy { expr : Expr -
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
AbstractSuggestionCursorWrapper.java 19 * A SuggestionCursor that delegates all calls to other suggestions.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Delegator.py 3 # The cache is only used to be able to change delegates!
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Delegator.py 3 # The cache is only used to be able to change delegates!
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
BindableMediaRequest.java 37 * Delegates the media resource callback to the listener. Performs binding check to ensure
49 * Delegates the media resource callback to the listener. Performs binding check to ensure
  /external/guava/guava/src/com/google/common/reflect/
AbstractInvocationHandler.java 53 * <li>{@code proxy.hashCode()} delegates to {@link AbstractInvocationHandler#hashCode}
54 * <li>{@code proxy.toString()} delegates to {@link AbstractInvocationHandler#toString}
91 * {@link #invoke} delegates to this method upon any method invocation on the proxy instance,
102 * By default delegates to {@link Object#equals} so instances are only equal if they are
114 * By default delegates to {@link Object#hashCode}. The dynamic proxies' {@code hashCode()} will
122 * By default delegates to {@link Object#toString}. The dynamic proxies' {@code toString()} will
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/ext/
ext.kt 18 import kotlin.properties.Delegates
54 fun Delegates.lazy<K, T>(initializer: (k : K) -> T): ReadOnlyProperty<K, T> = LazyExt(initializer)
55 fun Delegates.versionedLazy<K, T>(initializer: (k : K) -> T): ReadOnlyProperty<K, T> = VersionedLazyExt(initializer)
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
SwappedDataInputStream.java 87 * Delegates to {@link EndianUtils#readSwappedDouble(InputStream)}.
99 * Delegates to {@link EndianUtils#readSwappedFloat(InputStream)}.
153 * Delegates to {@link EndianUtils#readSwappedInteger(InputStream)}.
178 * Delegates to {@link EndianUtils#readSwappedLong(InputStream)}.
190 * Delegates to {@link EndianUtils#readSwappedShort(InputStream)}.
214 * Delegates to {@link EndianUtils#readSwappedUnsignedShort(InputStream)}.
  /developers/build/prebuilts/gradle/NfcProvisioning/Application/src/main/java/com/example/android/nfcprovisioning/
TextWatcherWrapper.java 23 * This class wraps {@link TextWatcher} and delegates {@link TextWatcher#afterTextChanged} event to
  /developers/samples/android/admin/NfcProvisioning/Application/src/main/java/com/example/android/nfcprovisioning/
TextWatcherWrapper.java 23 * This class wraps {@link TextWatcher} and delegates {@link TextWatcher#afterTextChanged} event to

Completed in 1033 milliseconds

1 2 3 4 5 6 7 8 91011>>