HomeSort by relevance Sort by last modified time
    Searched defs:target (Results 226 - 250 of 4780) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
ImageViewTarget.java 1 package com.bumptech.glide.request.target;
9 * A base {@link com.bumptech.glide.request.target.Target} for displaying resources in
12 * @param <Z> The type of resource that this target will display in the wrapped {@link android.widget.ImageView}.
PreloadTarget.java 1 package com.bumptech.glide.request.target;
7 * A one time use {@link com.bumptech.glide.request.target.Target} class that loads a resource into memory and then
SimpleTarget.java 1 package com.bumptech.glide.request.target;
4 * A simple {@link com.bumptech.glide.request.target.Target} base class with default (usually noop) implementations
24 * @param <Z> The type of resource that this target will receive.
31 * Constructor for the target that assumes you will have called
32 * {@link com.bumptech.glide.GenericRequestBuilder#override(int, int)} on the request builder this target is given
36 * Requests that load into this target will throw an {@link java.lang.IllegalArgumentException} if
45 * Constructor for the target that takes the desired dimensions of the decoded and/or transformed resource.
Target.java 1 package com.bumptech.glide.request.target;
23 * null model object. onLoadCleared similarly may never be called if the target is never cleared. See the docs for
27 * @param <R> The type of resource the target can display.
29 public interface Target<R> extends LifecycleListener {
77 * A method to retrieve the size of this target.
79 * @param cb The callback that must be called when the size of the target has been determined
84 * Sets the current request for this target to retain, should not be called outside of Glide.
89 * Retrieves the current request for this target, should not be called outside of Glide.
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
AbstractServletModuleBinding.java 30 private final T target; field in class:AbstractServletModuleBinding
33 AbstractServletModuleBinding(Map<String, String> initParams, String pattern, T target,
37 this.target = target;
50 return target;
  /external/icu/icu4c/source/common/
ustr_cnv.cpp 135 UChar *target = ucs1; local
141 &target,
153 if(target < (ucs1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */
154 *target = 0; /* terminate */
207 char *target = s1; local
213 &target,
225 if(target < (s1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */
226 *target = 0; /* terminate */
  /external/icu/icu4c/source/i18n/
tridpars.h 33 * A basic ID, which contains source, target, and variant, but no
58 * 'source' and 'target' will always be non-null. The 'variant'
71 UnicodeString target; // not null member in class:TransliteratorIDParser::Specs
223 * @param target the given target.
228 * @return an array of 4 strings: source, target, variant, and
231 * isSourcePresent will be non-null. The target may be empty if the
236 UnicodeString& target,
241 * Given source, target, and variant strings, concatenate them into a
246 const UnicodeString& target,
    [all...]
  /external/icu/icu4c/source/samples/datefmt/
util.cpp 24 // Append a hex string to the target
27 UnicodeString& target) {
30 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
32 return target;
38 UnicodeString target; local
39 target += "\"";
43 target += "\\u";
44 appendHex(ch, 4, target);
46 target += ch;
49 target += "\""
    [all...]
  /external/icu/icu4c/source/samples/msgfmt/
util.cpp 24 // Append a hex string to the target
27 UnicodeString& target) {
30 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
32 return target;
38 UnicodeString target; local
39 target += "\"";
43 target += "\\u";
44 appendHex(ch, 4, target);
46 target += ch;
49 target += "\""
    [all...]
  /external/icu/icu4c/source/samples/translit/
util.cpp 24 // Append a hex string to the target
27 UnicodeString& target) {
30 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
32 return target;
38 UnicodeString target; local
39 target += "\"";
43 target += "\\u";
44 appendHex(ch, 4, target);
46 target += ch;
49 target += "\""
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ccurrtst.c 102 UChar source[2], target[2]; local
125 u_strcpy(target, currency[j]);
140 compareResult = ucol_strcoll(c, source, u_strlen(source), target, u_strlen(target));
148 sortklen=ucol_getSortKey(c, target, u_strlen(target), NULL, 0);
150 ucol_getSortKey(c, target, u_strlen(target), sortKey2, sortklen+1);
157 reportCResult( source, target, sortKey1, sortKey2, compareResult, keyResult, compareResult, expectedResult );
eurocreg.c 145 char target[20]; local
152 target,
153 sizeof(target),
165 target,
  /external/iproute2/tc/
q_codel.c 56 fprintf(stderr, "Usage: ... codel [ limit PACKETS ] [ target TIME ]\n");
65 unsigned int target = 0; local
78 } else if (strcmp(*argv, "target") == 0) {
80 if (get_time(&target, *argv)) {
81 fprintf(stderr, "Illegal \"target\"\n");
117 if (target)
118 addattr_l(n, 1024, TCA_CODEL_TARGET, &target, sizeof(target));
134 unsigned int target; local
152 target = rta_getattr_u32(tb[TCA_CODEL_TARGET])
    [all...]
  /external/iptables/include/linux/netfilter_arp/
arpt_mangle.h 17 int target; member in struct:arpt_mangle
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
AnalysisTimeScenario.java 27 private final Class<?> target; field in class:AnalysisTimeScenario
31 protected AnalysisTimeScenario(Class<?> target, int count) {
33 this.target = target;
39 final byte[] bytes = TargetLoader.getClassDataAsBytes(target);
49 analyzer.analyzeClass(bytes, target.getName());
ExecuteInstrumentedCodeScenario.java 29 private final Class<? extends Callable<Void>> target; field in class:ExecuteInstrumentedCodeScenario
32 Class<? extends Callable<Void>> target) {
34 this.target = target;
40 ClassReader reader = new ClassReader(TargetLoader.getClassData(target));
47 return (Callable<Void>) loader.add(target, instrumentedBuffer)
53 return target.newInstance();
InstrumentationSizeSzenario.java 26 private final Class<?> target; field in class:InstrumentationSizeSzenario
28 public InstrumentationSizeSzenario(Class<?> target) {
29 this.target = target;
34 ClassReader reader = new ClassReader(TargetLoader.getClassData(target));
  /external/junit/src/main/java/org/junit/internal/runners/statements/
RunAfters.java 13 private final Object target; field in class:RunAfters
17 public RunAfters(Statement next, List<FrameworkMethod> afters, Object target) {
20 this.target = target;
33 each.invokeExplosively(target);
RunBefores.java 11 private final Object target; field in class:RunBefores
15 public RunBefores(Statement next, List<FrameworkMethod> befores, Object target) {
18 this.target = target;
24 before.invokeExplosively(target);
  /external/kernel-headers/original/uapi/linux/netfilter_arp/
arpt_mangle.h 18 int target; member in struct:arpt_mangle
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_F.pass.cpp 45 FunctionObject target; local
48 std::function<FuncType> f2(std::allocator_arg, alloc, target);
51 assert(f2.template target<FunctionObject>());
52 assert(f2.template target<FuncType>() == 0);
53 assert(f2.template target<FuncType*>() == 0);
65 FuncType* target = &FreeFunction; local
67 std::function<FuncType> f2(std::allocator_arg, alloc, target);
69 assert(f2.template target<FuncType*>());
70 assert(*f2.template target<FuncType*>() == target);
82 TargetType target = &MemFunClass::foo; local
    [all...]
  /external/libnl/lib/cli/cls/
basic.c 24 " -t, --target=ID Target class to send matching packets to\n"
30 " nl-cls-add --dev=eth0 --parent=q_root basic --target=c_default\n");
37 uint32_t target; local
48 { "target", 1, 0, 't' },
63 if ((err = rtnl_tc_str2handle(optarg, &target)) < 0)
64 nl_cli_fatal(err, "Unable to parse target \"%s\":",
67 rtnl_basic_set_target(cls, target);
  /external/lisa/experiments/power/eas/
run_cpu_frequency.py 65 def update_cpus(target, on_cpus, off_cpus):
67 target.hotplug.online(cpu)
70 target.hotplug.offline(cpu)
72 def run_dhrystone(target, dhrystone, outdir, energy, samples, on_cpus):
76 target.execute('nohup taskset {:x} {} -t {} -r {} 2>/dev/null 1>/dev/null &'.format(1 << (on_cpu), dhrystone, 1, args.duration_s+30))
97 for freq in target.cpufreq.list_frequencies(cluster[0]):
119 update_cpus(target, on_cpus, off_cpus)
120 target.cpufreq.set_frequency(cpu, freq)
127 run_dhrystone(target, dhrystone, outdir, energy, samples, on_cpus)
130 target.hotplug.online_all(
314 target = te.target variable
    [all...]
  /external/lisa/experiments/
run_binder_throughput.py 29 # Setup target configuration
31 # Target platform and board
62 target = te.target variable
65 target.cpufreq.set_all_governors("performance")
68 return target.execute(cmd)
run_jankbench.py 62 help='Flag to reimage target device (kernel-update kernel image | all-update complete android image)')
121 # Setup target configuration
124 # Target platform and board
163 target = te.target variable

Completed in 1399 milliseconds

1 2 3 4 5 6 7 8 91011>>