OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Preconditions
(Results
201 - 225
of
1035
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/guava/guava/src/com/google/common/collect/
EvictingQueue.java
19
import static com.google.common.base.
Preconditions
.checkArgument;
20
import static com.google.common.base.
Preconditions
.checkNotNull;
SingletonImmutableSet.java
20
import com.google.common.base.
Preconditions
;
47
this.element =
Preconditions
.checkNotNull(element);
/external/guava/guava/src/com/google/common/hash/
ChecksumHashFunction.java
17
import static com.google.common.base.
Preconditions
.checkArgument;
18
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/guava/guava/src/com/google/common/io/
MultiReader.java
19
import com.google.common.base.
Preconditions
;
65
Preconditions
.checkArgument(n >= 0, "n is negative");
/external/guava/guava/src/com/google/common/net/
HostSpecifier.java
20
import com.google.common.base.
Preconditions
;
79
Preconditions
.checkArgument(!parsedHost.hasPort());
/external/guava/guava/src/com/google/common/reflect/
Reflection.java
19
import static com.google.common.base.
Preconditions
.checkArgument;
20
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/guava/guava/src/com/google/common/util/concurrent/
ForwardingCheckedFuture.java
20
import com.google.common.base.
Preconditions
;
70
this.delegate =
Preconditions
.checkNotNull(delegate);
ForwardingFuture.java
19
import com.google.common.base.
Preconditions
;
87
this.delegate =
Preconditions
.checkNotNull(delegate);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
HashMultimap.java
21
import com.google.common.base.
Preconditions
;
91
Preconditions
.checkArgument(expectedValuesPerKey >= 0);
/external/guice/core/src/com/google/inject/internal/
InjectorOptionsProcessor.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
20
import static com.google.common.base.
Preconditions
.checkState;
/external/guice/core/src/com/google/inject/spi/
MembersInjectorLookup.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
20
import static com.google.common.base.
Preconditions
.checkState;
/external/opencensus-java/contrib/agent/src/main/java/io/opencensus/contrib/agent/
AgentMain.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
20
import static com.google.common.base.
Preconditions
.checkState;
/external/opencensus-java/contrib/agent/src/main/java/io/opencensus/contrib/agent/instrumentation/
ContextStrategyImpl.java
19
import com.google.common.base.
Preconditions
;
74
Preconditions
.checkNotNull(context.attach(), "context.attach()");
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DataType.java
3
import com.google.common.base.
Preconditions
;
74
return
Preconditions
.checkNotNull(FROM_BYTE.get(code), "Unknown resource type: %s", code);
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowCameraCharacteristics.java
7
import com.google.common.base.
Preconditions
;
36
Preconditions
.checkArgument(!charactersKeyToValue.containsKey(key));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderInstruction20bc.java
40
import org.jf.dexlib2.util.
Preconditions
;
54
this.verificationError =
Preconditions
.checkVerificationError(verificationError);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction20bc.java
41
import org.jf.dexlib2.util.
Preconditions
;
55
this.verificationError =
Preconditions
.checkVerificationError(verificationError);
ImmutableInstruction21c.java
40
import org.jf.dexlib2.util.
Preconditions
;
54
this.registerA =
Preconditions
.checkByteRegister(registerA);
ImmutableInstruction31c.java
40
import org.jf.dexlib2.util.
Preconditions
;
54
this.registerA =
Preconditions
.checkByteRegister(registerA);
/cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1BMPString.java
21
import com.google.common.base.
Preconditions
;
79
Preconditions
.checkNotNull(value, "No value set.");
81
Preconditions
.checkState(length >= minimumSize, "Value too short.");
82
Preconditions
.checkState(maximumSize == null || length <= maximumSize,
134
Preconditions
.checkState(codepoint <= 0xFFFF,
Asn1OctetString.java
21
import com.google.common.base.
Preconditions
;
66
Preconditions
.checkNotNull(value, "No value set.");
71
Preconditions
.checkNotNull(value, "No value set.");
80
Preconditions
.checkNotNull(value, "No value set.");
81
Preconditions
.checkState(
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/trace/
RecordEventsSpanImpl.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
20
import static com.google.common.base.
Preconditions
.checkState;
23
import com.google.common.base.
Preconditions
;
277
Preconditions
.checkNotNull(key, "key");
278
Preconditions
.checkNotNull(value, "value");
290
Preconditions
.checkNotNull(attributes, "attributes");
302
Preconditions
.checkNotNull(description, "description");
303
Preconditions
.checkNotNull(attributes, "attribute");
319
Preconditions
.checkNotNull(annotation, "annotation");
332
Preconditions
.checkNotNull(messageEvent, "messageEvent")
[
all
...]
/external/grpc-grpc-java/core/src/main/java/io/grpc/
MethodDescriptor.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
22
import com.google.common.base.
Preconditions
;
228
this.type =
Preconditions
.checkNotNull(type, "type");
229
this.fullMethodName =
Preconditions
.checkNotNull(fullMethodName, "fullMethodName");
230
this.requestMarshaller =
Preconditions
.checkNotNull(requestMarshaller, "requestMarshaller");
231
this.responseMarshaller =
Preconditions
.checkNotNull(responseMarshaller, "responseMarshaller");
236
Preconditions
.checkArgument(!safe || type == MethodType.UNARY,
/external/grpc-grpc-java/cronet/src/main/java/io/grpc/cronet/
CronetChannelBuilder.java
19
import static com.google.common.base.
Preconditions
.checkArgument;
20
import static com.google.common.base.
Preconditions
.checkNotNull;
24
import com.google.common.base.
Preconditions
;
59
Preconditions
.checkNotNull(cronetEngine, "cronetEngine");
95
this.cronetEngine =
Preconditions
.checkNotNull(cronetEngine, "cronetEngine");
226
this.executor =
Preconditions
.checkNotNull(executor, "executor");
227
this.transportTracer =
Preconditions
.checkNotNull(transportTracer, "transportTracer");
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
NettyServerTransport.java
21
import com.google.common.base.
Preconditions
;
97
this.channel =
Preconditions
.checkNotNull(channel, "channel");
99
this.protocolNegotiator =
Preconditions
.checkNotNull(protocolNegotiator, "protocolNegotiator");
101
Preconditions
.checkNotNull(streamTracerFactories, "streamTracerFactories");
102
this.transportTracer =
Preconditions
.checkNotNull(transportTracer, "transportTracer");
117
Preconditions
.checkState(this.listener == null, "Handler already registered");
231
Preconditions
.checkState(ch.eventLoop().inEventLoop());
Completed in 938 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>