HomeSort by relevance Sort by last modified time
    Searched refs:Preconditions (Results 51 - 75 of 1035) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction21t.java 37 import org.jf.dexlib2.util.Preconditions;
51 this.registerA = Preconditions.checkByteRegister(registerA);
52 this.codeOffset = Preconditions.checkShortCodeOffset(codeOffset);
ImmutableInstruction22x.java 37 import org.jf.dexlib2.util.Preconditions;
51 this.registerA = Preconditions.checkByteRegister(registerA);
52 this.registerB = Preconditions.checkShortRegister(registerB);
ImmutableInstruction32x.java 37 import org.jf.dexlib2.util.Preconditions;
51 this.registerA = Preconditions.checkShortRegister(registerA);
52 this.registerB = Preconditions.checkShortRegister(registerB);
ImmutableInstruction22b.java 37 import org.jf.dexlib2.util.Preconditions;
53 this.registerA = Preconditions.checkByteRegister(registerA);
54 this.registerB = Preconditions.checkByteRegister(registerB);
55 this.literal = Preconditions.checkByteLiteral(literal);
ImmutableInstruction22cs.java 37 import org.jf.dexlib2.util.Preconditions;
53 this.registerA = Preconditions.checkNibbleRegister(registerA);
54 this.registerB = Preconditions.checkNibbleRegister(registerB);
55 this.fieldOffset = Preconditions.checkFieldOffset(fieldOffset);
ImmutableInstruction22s.java 37 import org.jf.dexlib2.util.Preconditions;
53 this.registerA = Preconditions.checkNibbleRegister(registerA);
54 this.registerB = Preconditions.checkNibbleRegister(registerB);
55 this.literal = Preconditions.checkShortLiteral(literal);
ImmutableInstruction22t.java 37 import org.jf.dexlib2.util.Preconditions;
53 this.registerA = Preconditions.checkNibbleRegister(registerA);
54 this.registerB = Preconditions.checkNibbleRegister(registerB);
55 this.codeOffset = Preconditions.checkShortCodeOffset(codeOffset);
ImmutableInstruction23x.java 37 import org.jf.dexlib2.util.Preconditions;
53 this.registerA = Preconditions.checkByteRegister(registerA);
54 this.registerB = Preconditions.checkByteRegister(registerB);
55 this.registerC = Preconditions.checkByteRegister(registerC);
ImmutableInstruction3rmi.java 37 import org.jf.dexlib2.util.Preconditions;
53 this.startRegister = Preconditions.checkShortRegister(startRegister);
54 this.registerCount = Preconditions.checkRegisterRangeCount(registerCount);
55 this.inlineIndex = Preconditions.checkInlineIndex(inlineIndex);
ImmutableInstruction3rms.java 37 import org.jf.dexlib2.util.Preconditions;
53 this.startRegister = Preconditions.checkShortRegister(startRegister);
54 this.registerCount = Preconditions.checkRegisterRangeCount(registerCount);
55 this.vtableIndex = Preconditions.checkVtableIndex(vtableIndex);
  /external/grpc-grpc-java/cronet/src/main/java/io/grpc/cronet/
CronetWritableBuffer.java 19 import com.google.common.base.Preconditions;
27 this.buffer = Preconditions.checkNotNull(buffer, "buffer");
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingListenableFuture.java 19 import com.google.common.base.Preconditions;
66 this.delegate = Preconditions.checkNotNull(delegate);
SerializingExecutor.java 19 import com.google.common.base.Preconditions;
77 Preconditions.checkNotNull(executor, "'executor' must not be null.");
93 Preconditions.checkNotNull(r, "'r' must not be null.");
135 Preconditions.checkState(isThreadScheduled);
  /external/jsilver/src/com/google/streamhtmlparser/impl/
ParserStateTable.java 19 import com.google.common.base.Preconditions;
152 Preconditions.checkNotNull(from); // Developer error if it triggers
153 Preconditions.checkNotNull(to); // Developer error if it triggers
163 Preconditions.checkNotNull(from); // Developer error if it triggers
164 Preconditions.checkNotNull(to); // Developer error if it triggers
165 Preconditions.checkArgument(chr >= 0 && chr < MAX_CHARS,
177 Preconditions.checkArgument(start >= 0 && start < MAX_CHARS,
179 Preconditions.checkArgument(end >= 0 && end < MAX_CHARS,
InternalState.java 19 import com.google.common.base.Preconditions;
58 Preconditions.checkNotNull(name);
59 Preconditions.checkArgument(id >= FIRST_ID);
60 Preconditions.checkArgument(id <= MAX_ID);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowLegacyApkAssets.java 4 import com.android.internal.util.Preconditions;
20 Preconditions.checkNotNull(path, "path");
  /external/setupcompat/main/java/com/google/android/setupcompat/internal/
Validations.java 19 /** Commonly used validations and preconditions. */
29 Preconditions.checkArgument(
42 Preconditions.checkNotNull(input, String.format("%s cannot be null.", name));
  /external/sl4a/Common/src/com/googlecode/android_scripting/event/
Event.java 19 import com.google.common.base.Preconditions;
28 Preconditions.checkNotNull(name);
  /art/tools/class2greylist/src/com/android/class2greylist/
RepeatedAnnotationHandler.java 3 import com.google.common.base.Preconditions;
35 Preconditions.checkArgument(value.getValue() instanceof ArrayElementValue);
40 Preconditions.checkArgument(v instanceof AnnotationElementValue);
42 Preconditions.checkArgument(
  /cts/tests/autofillservice/src/android/autofillservice/cts/augmented/
AugmentedUiBot.java 32 import com.google.common.base.Preconditions;
65 Preconditions.checkNotNull(focusedId);
66 Preconditions.checkNotNull(expectedText);
88 Preconditions.checkState(mOkToCallAssertUiGone, "must call assertUiShown() first");
  /external/conscrypt/common/src/main/java/org/conscrypt/
AllocatedBuffer.java 34 import static org.conscrypt.Preconditions.checkNotNull;
  /external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
SendResponseHeadersCommand.java 20 import com.google.common.base.Preconditions;
33 this.stream = Preconditions.checkNotNull(stream, "stream");
34 this.headers = Preconditions.checkNotNull(headers, "headers");
45 stream, headers, Preconditions.checkNotNull(status, "status"));
  /external/guava/guava/src/com/google/common/eventbus/
EventSubscriber.java 19 import static com.google.common.base.Preconditions.checkNotNull;
21 import com.google.common.base.Preconditions;
54 Preconditions.checkNotNull(target,
56 Preconditions.checkNotNull(method, "EventSubscriber method cannot be null.");
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
RegularImmutableSet.java 19 import static com.google.common.base.Preconditions.checkArgument;
  /external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
StatsRecorderImpl.java 19 import static com.google.common.base.Preconditions.checkNotNull;

Completed in 210 milliseconds

1 23 4 5 6 7 8 91011>>