/external/caliper/caliper/src/main/java/com/google/caliper/model/ |
H A D | package-info.java | 18 * These classes model the data that is collected by the caliper {@linkplain 25 package com.google.caliper.model
|
H A D | AllocationMeasurement.java | 17 package com.google.caliper.model;
|
H A D | ArbitraryMeasurement.java | 17 package com.google.caliper.model;
|
H A D | ExcludeFromJson.java | 17 package com.google.caliper.model;
|
H A D | Defaults.java | 17 package com.google.caliper.model; 24 * Default instances of non-model classes used by the Caliper model. These are present to facilitate
|
H A D | PersistentHashing.java | 17 package com.google.caliper.model;
|
H A D | StringMapFunnel.java | 17 package com.google.caliper.model;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
H A D | ModelLoader.java | 1 package com.bumptech.glide.load.model; 6 * A factory interface for translating an arbitrarily complex data model into a concrete data type that can be used 7 * by an {@link DataFetcher} to obtain the data for a resource represented by the model. 11 * 1. To translate a specific model into a data type that can be decoded into a resource. 13 * 2. To allow a model to be combined with the dimensions of the view to fetch a resource of a specific size. 23 * @param <T> The type of the model. 30 * Obtains an {@link DataFetcher} that can fetch the data required to decode the resource represented by this model. 34 * Note - If no valid data fetcher can be returned (for example if a model has a null URL), then it is 39 * @param model The model representin 45 getResourceFetcher(T model, int width, int height) argument [all...] |
H A D | FileLoader.java | 1 package com.bumptech.glide.load.model; 10 * A simple model loader for loading data from {@link File}s. 24 public DataFetcher<T> getResourceFetcher(File model, int width, int height) { argument 25 return uriLoader.getResourceFetcher(Uri.fromFile(model), width, height);
|
H A D | ResourceLoader.java | 1 package com.bumptech.glide.load.model; 11 * A model loader for handling Android resource files. Model must be an Android resource id in the package of the given 31 public DataFetcher<T> getResourceFetcher(Integer model, int width, int height) { argument 33 + resources.getResourcePackageName(model) + '/' 34 + resources.getResourceTypeName(model) + '/' 35 + resources.getResourceEntryName(model));
|
H A D | StringLoader.java | 1 package com.bumptech.glide.load.model; 10 * A model loader for handling certain string models. Handles paths, urls, and any uri string with a scheme handled by 23 public DataFetcher<T> getResourceFetcher(String model, int width, int height) { argument 25 if (model.startsWith("/")) { 26 uri = toFileUri(model); 28 uri = Uri.parse(model); 31 uri = toFileUri(model);
|
H A D | UrlLoader.java | 1 package com.bumptech.glide.load.model; 8 * A wrapper class that translates {@link java.net.URL} objects into {@link com.bumptech.glide.load.model.GlideUrl} 9 * objects and then uses the wrapped {@link com.bumptech.glide.load.model.ModelLoader} for 10 * {@link com.bumptech.glide.load.model.GlideUrl}s to load the data. 22 public DataFetcher<T> getResourceFetcher(URL model, int width, int height) { argument 23 return glideUrlLoader.getResourceFetcher(new GlideUrl(model), width, height);
|
H A D | ImageVideoWrapper.java | 1 package com.bumptech.glide.load.model;
|
H A D | ModelLoaderFactory.java | 1 package com.bumptech.glide.load.model; 6 * An interface for creating a {@link ModelLoader} for a given model type. Will be retained statically so should not 11 * @param <T> The type of the model the {@link com.bumptech.glide.load.model.ModelLoader}s built by this factory 13 * @param <Y> The type of data the {@link com.bumptech.glide.load.model.ModelLoader}s built by this factory can load. 18 * Build a concrete ModelLoader for this model type.
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/file_descriptor/ |
H A D | FileDescriptorModelLoader.java | 1 package com.bumptech.glide.load.model.file_descriptor; 5 import com.bumptech.glide.load.model.ModelLoader; 10 * @param <T> The type of the model that will be translated into an {@link java.io.File}.
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/ |
H A D | StreamModelLoader.java | 1 package com.bumptech.glide.load.model.stream; 3 import com.bumptech.glide.load.model.ModelLoader; 10 * @param <T> The type of the model that will be translated into an {@link InputStream}.
|
H A D | BaseGlideUrlLoader.java | 1 package com.bumptech.glide.load.model.stream; 8 import com.bumptech.glide.load.model.GlideUrl; 9 import com.bumptech.glide.load.model.ModelCache; 10 import com.bumptech.glide.load.model.ModelLoader; 15 * A base class for loading images over http/https. Can be subclassed for use with any model that can be translated 18 * @param <T> The type of the model. 42 public DataFetcher<InputStream> getResourceFetcher(T model, int width, int height) { argument 45 result = modelCache.get(model, width, height); 49 String stringURL = getUrl(model, width, height); 57 modelCache.put(model, widt 72 getUrl(T model, int width, int height) argument [all...] |
H A D | MediaStoreStreamLoader.java | 1 package com.bumptech.glide.load.model.stream; 8 import com.bumptech.glide.load.model.ModelLoader; 13 * An {@link com.bumptech.glide.load.model.ModelLoader} that can use media store uris to open pre-generated thumbnails 17 * it falls back to the wrapped {@link com.bumptech.glide.load.model.ModelLoader} to load the 30 public DataFetcher<InputStream> getResourceFetcher(Uri model, int width, int height) { argument 31 return new MediaStoreThumbFetcher(context, model, uriLoader.getResourceFetcher(model, width, height), width,
|
/external/junit/src/main/java/org/junit/runners/model/ |
H A D | Statement.java | 1 package org.junit.runners.model;
|
H A D | Annotatable.java | 1 package org.junit.runners.model; 6 * A model element that may have annotations. 12 * Returns the model elements' annotations. 17 * Returns the annotation on the model element of the given type, or @code{null}
|
H A D | RunnerScheduler.java | 1 package org.junit.runners.model;
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/ |
H A D | ITestCaseInput.java | 28 package org.antlr.gunit.swingui.model;
|
H A D | ITestCaseOutput.java | 33 package org.antlr.gunit.swingui.model;
|
/external/junit/src/main/java/org/junit/internal/runners/model/ |
H A D | MultipleFailureException.java | 1 package org.junit.internal.runners.model; 6 public class MultipleFailureException extends org.junit.runners.model.MultipleFailureException {
|
H A D | ReflectiveCallable.java | 1 package org.junit.internal.runners.model;
|