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

1 2 3 4 5 6 7 8 91011>>

  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
InstrumentationTimeScenario.java 25 private final Class<?> target; field in class:InstrumentationTimeScenario
29 protected InstrumentationTimeScenario(Class<?> target, int count) {
31 this.target = target;
37 final byte[] bytes = TargetLoader.getClassDataAsBytes(target);
  /external/junit/src/main/java/org/junit/internal/runners/statements/
InvokeMethod.java 8 private final Object target; field in class:InvokeMethod
10 public InvokeMethod(FrameworkMethod testMethod, Object target) {
12 this.target = target;
17 testMethod.invokeExplosively(target);
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebt_mark_t.h 4 /* The target member is reused for adding new actions, the
5 * value of the real target is -1 to -NUM_STANDARD_TARGETS.
7 * but let's play it safe) are kept to designate this target.
19 int target; member in struct:ebt_mark_t_info
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_function.pass.cpp 37 assert(f.template target<FunctionObject>());
38 assert(f.template target<FuncType>() == 0);
39 assert(f.template target<FuncType*>() == 0);
44 assert(f2.template target<FunctionObject>());
45 assert(f2.template target<FuncType>() == 0);
46 assert(f2.template target<FuncType*>() == 0);
58 FuncType* target = &FreeFunction; local
59 std::function<FuncType> f = target;
61 assert(f.template target<FuncType*>());
62 assert(*f.template target<FuncType*>() == target)
80 TargetType target = &MemFunClass::foo; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_init.h 44 LLVMTargetDataRef target; member in struct:gallivm_state
  /external/mesa3d/src/gallium/state_trackers/clover/core/
format.cpp 150 pipe_texture_target target = translate_target(type); local
160 dev->pipe, f.second, target, 1, bindings);
  /external/mockito/src/main/java/org/mockito/internal/util/concurrent/
WeakConcurrentSet.java 19 final WeakConcurrentMap<V, Boolean> target; field in class:WeakConcurrentSet
24 target = new WeakConcurrentMap.WithInlinedExpunction<V, Boolean>();
28 target = new WeakConcurrentMap<V, Boolean>(cleaner == Cleaner.THREAD);
40 return target.put(value, Boolean.TRUE) == null; // is null or Boolean.TRUE
48 return target.containsKey(value);
56 return target.remove(value);
63 target.clear();
72 return target.approximateSize();
77 target.run();
94 target.expungeStaleEntries()
    [all...]
  /external/mockito/subprojects/android/src/main/java/org/mockito/android/internal/creation/
AndroidLoadingStrategy.java 15 File target = AndroidTempFileLocator.target; local
16 if (target == null) {
21 "'org.mockito.android.target' to a folder for storing generated class files",
24 "MyActivity.this.getDir(\"target\", Context.MODE_PRIVATE)",
29 return new AndroidClassLoadingStrategy.Injecting(target);
  /external/proguard/src/proguard/classfile/attribute/annotation/target/
CatchTargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
29 * Representation of a 'catch' annotation target.
EmptyTargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
28 * Representation of an empty annotation target.
FormalParameterTargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
28 * Representation of a formal parameter annotation target.
LocalVariableTargetElement.java 21 package proguard.classfile.attribute.annotation.target;
24 * Representation of an local variable target table entry.
OffsetTargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
29 * Representation of an offset annotation target.
SuperTypeTargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
28 * Representation of a super type annotation target.
TargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
29 * Representation of an annotation target.
56 * Returns the type of the target.
ThrowsTargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
28 * Representation of a 'throws' annotation target.
TypeParameterTargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
29 * Representation of a type parameter annotation target.
  /external/proguard/src/proguard/classfile/attribute/annotation/target/visitor/
LocalVariableTargetElementVisitor.java 21 package proguard.classfile.attribute.annotation.target.visitor;
26 import proguard.classfile.attribute.annotation.target.*;
  /external/protobuf/python/
setup.py 150 target = 'test_python' variable in class:test_conformance
156 cmd = 'cd ../conformance && make %s' % (test_conformance.target)
184 test_conformance.target = 'test_python_cpp'
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderOffsetInstruction.java 41 protected final Label target; field in class:BuilderOffsetInstruction
44 @Nonnull Label target) {
46 this.target = target;
53 throw new IllegalStateException("Target is out of range");
60 return target.getCodeAddress() - this.getLocation().getCodeAddress();
65 return target;
  /external/strace/tests/
mount.c 49 static const char target[] = "mount_target"; local
53 int rc = mount(source, target, fstype, 15, data);
55 source, target, fstype, str_ro_nosuid_nodev_noexec,
58 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
60 source, target, fstype,
64 rc = mount(source, target, fstype, MS_MGC_VAL, data);
66 source, target, fstype, "MS_MGC_VAL", data, rc, errno2name());
68 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data);
70 source, target, fstype,
74 rc = mount(source, target, fstype, MS_REMOUNT, data)
    [all...]
  /external/strace/tests-m32/
mount.c 49 static const char target[] = "mount_target"; local
53 int rc = mount(source, target, fstype, 15, data);
55 source, target, fstype, str_ro_nosuid_nodev_noexec,
58 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
60 source, target, fstype,
64 rc = mount(source, target, fstype, MS_MGC_VAL, data);
66 source, target, fstype, "MS_MGC_VAL", data, rc, errno2name());
68 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data);
70 source, target, fstype,
74 rc = mount(source, target, fstype, MS_REMOUNT, data)
    [all...]
  /external/strace/tests-mx32/
mount.c 49 static const char target[] = "mount_target"; local
53 int rc = mount(source, target, fstype, 15, data);
55 source, target, fstype, str_ro_nosuid_nodev_noexec,
58 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
60 source, target, fstype,
64 rc = mount(source, target, fstype, MS_MGC_VAL, data);
66 source, target, fstype, "MS_MGC_VAL", data, rc, errno2name());
68 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data);
70 source, target, fstype,
74 rc = mount(source, target, fstype, MS_REMOUNT, data)
    [all...]
  /external/valgrind/none/tests/s390x/
mvst.c 14 char target[512]; variable
40 printf("CC:%d\n", mvst(target, buffer));
41 printf("%s\n", target);
42 printf("CC:%d\n",mvst_full(target, bigbuf));
43 printf("%s\n", target);
  /external/vixl/benchmarks/aarch32/
bench-branch-masm.cc 55 Label target; local
56 __ B(&target);
57 __ B(eq, &target);
58 __ Bl(&target);
59 __ Blx(&target);
60 __ Bind(&target);

Completed in 599 milliseconds

1 2 3 4 5 6 7 8 91011>>