OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Preconditions
(Results
151 - 175
of
1035
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/desugar/java/com/google/devtools/build/android/desugar/
LambdaInfo.java
16
import static com.google.common.base.
Preconditions
.checkArgument;
/external/grpc-grpc-java/core/src/main/java/io/grpc/inprocess/
InProcessSocketAddress.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
ForwardingNameResolver.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
LogExceptionRunnable.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
SharedResourceHolder.java
19
import com.google.common.base.
Preconditions
;
123
Preconditions
.checkArgument(instance == cached.payload, "Releasing the wrong instance");
124
Preconditions
.checkState(cached.refcount > 0, "Refcount has already reached zero");
134
Preconditions
.checkState(cached.destroyTask == null, "Destroy task already scheduled");
/external/grpc-grpc-java/grpclb/src/main/java/io/grpc/grpclb/
BackendAddressGroup.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/
Headers.java
22
import com.google.common.base.
Preconditions
;
51
Preconditions
.checkNotNull(headers, "headers");
52
Preconditions
.checkNotNull(defaultPath, "defaultPath");
53
Preconditions
.checkNotNull(authority, "authority");
/external/grpc-grpc-java/services/src/main/java/io/grpc/services/
HealthStatusManager.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/guava/guava/src/com/google/common/cache/
RemovalListeners.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/guava/guava/src/com/google/common/collect/
CollectPreconditions.java
19
import static com.google.common.base.
Preconditions
.checkState;
TransformedIterator.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/guava/guava/src/com/google/common/eventbus/
SubscriberExceptionContext.java
18
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableEnumMap.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
SingletonImmutableSet.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/guava/guava-tests/test/com/google/common/io/
RandomAmountInputStream.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
TestReader.java
20
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/guice/core/src/com/google/inject/spi/
DisableCircularProxiesOption.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
RequireAtInjectOnConstructorsOption.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
RequireExactBindingAnnotationsOption.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
RequireExplicitBindingsOption.java
19
import static com.google.common.base.
Preconditions
.checkNotNull;
/external/jsilver/src/com/google/streamhtmlparser/util/
EntityResolver.java
19
import com.google.common.base.
Preconditions
;
197
Preconditions
.checkState(status != Status.NOT_STARTED || sb.length() == 0);
233
Preconditions
.checkArgument(sb.length() > 0);
234
Preconditions
.checkArgument(sb.charAt(0) == '&');
JavascriptTokenBuffer.java
19
import com.google.common.base.
Preconditions
;
224
Preconditions
.checkArgument(start <= end);
225
Preconditions
.checkArgument(start < 0);
226
Preconditions
.checkArgument(end < 0);
/external/setupcompat/main/java/com/google/android/setupcompat/internal/
Preconditions.java
22
* correctly (that is, whether its <i>
preconditions
</i> were met).
24
* <p>If the precondition is not met, the {@code
Preconditions
} method throws an unchecked exception
28
public final class
Preconditions
{
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowNotificationManager.java
14
import com.google.common.base.
Preconditions
;
230
Preconditions
.checkNotNull(id);
249
Preconditions
.checkNotNull(automaticZenRule);
250
Preconditions
.checkNotNull(automaticZenRule.getName());
251
Preconditions
.checkNotNull(automaticZenRule.getOwner());
252
Preconditions
.checkNotNull(automaticZenRule.getConditionId());
263
Preconditions
.checkNotNull(automaticZenRule);
264
Preconditions
.checkNotNull(automaticZenRule.getName());
265
Preconditions
.checkNotNull(automaticZenRule.getOwner());
266
Preconditions
.checkNotNull(automaticZenRule.getConditionId())
[
all
...]
/cts/common/device-side/util/src/com/android/compatibility/common/util/
StateChangerRule.java
22
import com.google.common.base.
Preconditions
;
50
mStateManager =
Preconditions
.checkNotNull(stateManager);
Completed in 1764 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>