OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Preconditions
(Results
26 - 50
of
371
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/guava/guava/src/com/google/common/base/
Suppliers.java
51
Preconditions
.checkNotNull(function);
52
Preconditions
.checkNotNull(supplier);
88
: new MemoizingSupplier<T>(
Preconditions
.checkNotNull(delegate));
155
this.delegate =
Preconditions
.checkNotNull(delegate);
157
Preconditions
.checkArgument(duration > 0);
215
return new ThreadSafeSupplier<T>(
Preconditions
.checkNotNull(delegate));
/external/smali/dexlib/src/main/java/org/jf/dexlib/
Item.java
31
import com.google.common.base.
Preconditions
;
196
Preconditions
.checkState(offset != -1,
206
Preconditions
.checkState(index != -1,
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
ProviderExecutor.java
22
import com.android.internal.util.
Preconditions
;
90
Preconditions
.checkNotNull(command);
98
Preconditions
.checkNotNull(command);
/packages/apps/Tag/src/com/android/apps/tag/record/
ImageRecord.java
20
import com.google.common.base.
Preconditions
;
43
mBitmap =
Preconditions
.checkNotNull(bitmap);
58
Preconditions
.checkArgument(mimeType.startsWith("image/"));
/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);
/frameworks/base/core/java/com/android/internal/util/
Preconditions.java
23
public class
Preconditions
{
/external/droiddriver/src/com/google/android/droiddriver/actions/
TypeAction.java
23
import com.google.common.base.
Preconditions
;
48
this.text =
Preconditions
.checkNotNull(text);
/external/guava/guava/src/com/google/common/cache/
ForwardingLoadingCache.java
20
import com.google.common.base.
Preconditions
;
83
this.delegate =
Preconditions
.checkNotNull(delegate);
/external/guava/guava/src/com/google/common/hash/
HashCode.java
18
import com.google.common.base.
Preconditions
;
67
Preconditions
.checkPositionIndexes(offset, offset + maxLength, dest.length);
/external/guava/guava/src/com/google/common/io/
LineReader.java
20
import com.google.common.base.
Preconditions
;
55
Preconditions
.checkNotNull(readable);
MultiReader.java
19
import com.google.common.base.
Preconditions
;
64
Preconditions
.checkArgument(n >= 0, "n is negative");
CharStreams.java
20
import com.google.common.base.
Preconditions
;
67
Preconditions
.checkNotNull(value);
86
Preconditions
.checkNotNull(in);
87
Preconditions
.checkNotNull(charset);
106
Preconditions
.checkNotNull(out);
107
Preconditions
.checkNotNull(charset);
126
Preconditions
.checkNotNull(from);
/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/primitives/
AndroidInteger.java
20
import static com.google.common.base.
Preconditions
.checkArgument;
21
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);
/packages/apps/Dialer/src/com/android/dialer/util/
AsyncTaskExecutors.java
23
import com.google.common.base.
Preconditions
;
82
Preconditions
.checkState(Thread.currentThread() == Looper.getMainLooper().getThread(),
/development/tools/idegen/src/com/android/idegen/
AggregatedModule.java
19
import com.google.common.base.
Preconditions
;
46
this.aggregatedModuleName =
Preconditions
.checkNotNull(aggregatedName);
47
this.modules =
Preconditions
.checkNotNull(modules);
ModuleCache.java
19
import com.google.common.base.
Preconditions
;
55
Preconditions
.checkState(indexes != null, "You must call init() first.");
97
Preconditions
.checkNotNull(module);
ModuleIndexes.java
19
import com.google.common.base.
Preconditions
;
93
Preconditions
.checkState(moduleNameToMakeFileMap != null,
99
Preconditions
.checkState(makeFileToModuleNamesMap != null,
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationPreferences.java
15
import com.google.common.base.
Preconditions
;
74
this.mContext =
Preconditions
.checkNotNull(context.getApplicationContext());
104
Preconditions
.checkNotNull(syncTypes);
/external/guava/guava/src/com/google/common/collect/
EmptyImmutableList.java
19
import static com.google.common.base.
Preconditions
.checkElementIndex;
20
import static com.google.common.base.
Preconditions
.checkPositionIndex;
21
import static com.google.common.base.
Preconditions
.checkPositionIndexes;
/frameworks/base/core/java/android/net/
BaseNetworkStateTracker.java
23
import com.android.internal.util.
Preconditions
;
81
mContext =
Preconditions
.checkNotNull(context);
82
mTarget =
Preconditions
.checkNotNull(target);
Completed in 393 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>