Searched defs:model (Results 1 - 25 of 233) sorted by relevance

12345678910

/external/caliper/caliper/src/main/java/com/google/caliper/model/
H A Dpackage-info.java18 * These classes model the data that is collected by the caliper {@linkplain
25 package com.google.caliper.model
H A DAllocationMeasurement.java17 package com.google.caliper.model;
H A DArbitraryMeasurement.java17 package com.google.caliper.model;
H A DExcludeFromJson.java17 package com.google.caliper.model;
H A DDefaults.java17 package com.google.caliper.model;
24 * Default instances of non-model classes used by the Caliper model. These are present to facilitate
H A DPersistentHashing.java17 package com.google.caliper.model;
H A DStringMapFunnel.java17 package com.google.caliper.model;
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DModelLoader.java1 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 DFileLoader.java1 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 DResourceLoader.java1 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 DStringLoader.java1 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 DUrlLoader.java1 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 DImageVideoWrapper.java1 package com.bumptech.glide.load.model;
H A DModelLoaderFactory.java1 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 DFileDescriptorModelLoader.java1 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 DStreamModelLoader.java1 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 DBaseGlideUrlLoader.java1 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 DMediaStoreStreamLoader.java1 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 DStatement.java1 package org.junit.runners.model;
H A DAnnotatable.java1 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 DRunnerScheduler.java1 package org.junit.runners.model;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DITestCaseInput.java28 package org.antlr.gunit.swingui.model;
H A DITestCaseOutput.java33 package org.antlr.gunit.swingui.model;
/external/junit/src/main/java/org/junit/internal/runners/model/
H A DMultipleFailureException.java1 package org.junit.internal.runners.model;
6 public class MultipleFailureException extends org.junit.runners.model.MultipleFailureException {
H A DReflectiveCallable.java1 package org.junit.internal.runners.model;

Completed in 265 milliseconds

12345678910