Searched refs:target (Results 26 - 50 of 9494) sorted by relevance

1234567891011>>

/external/mockito/src/org/mockito/internal/util/reflection/
H A DFieldSetter.java11 private final Object target; field in class:FieldSetter
14 public FieldSetter(Object target, Field field) { argument
15 this.target = target;
23 field.set(target, value);
25 throw new RuntimeException("Access not authorized on field '" + field + "' of object '" + target + "' with value: '" + value + "'", e);
27 throw new RuntimeException("Wrong argument on field '" + field + "' of object '" + target + "' with value: '" + value + "', \n" +
H A DFieldReader.java13 final Object target; field in class:FieldReader
17 public FieldReader(Object target, Field field) { argument
18 this.target = target;
29 return field.get(target);
31 throw new MockitoException("Cannot read state from field: " + field + ", on instance: " + target);
/external/valgrind/main/none/tests/s390x/
H A Dmvst.c14 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);
H A Dmvc.c6 char target[] = "---------------------"; variable
17 printf("before: target = |%s|\n", target);
19 ::"a" (target),"a" (buffer): "memory");
21 printf("after: target = |%s|\n", target);
33 memset(target, '-', sizeof target - 1); // restore initial state
34 printf("before: target = |%s|\n", target);
[all...]
H A Dex.stdout.exp1 ------- Copy 10+1 bytes from buffer to target
4 before: target = |XXXXXXXXXXXXXXXX|
6 after: target = |0123456789aXXXXX|
8 ------- EX 0,... has no effect (writes out target)
9 target = |0123456789aXXXXX|
11 ------- EX to OR in the syscall number (writes out target)
12 target = |0123456789aXXXXX|
H A Dexrl.stdout.exp1 ------- Copy 10+1 bytes from buffer to target
4 before: target = |XXXXXXXXXXXXXXXX|
6 after: target = |0123456789aXXXXX|
8 ------- EXRL 0,... has no effect (writes out target)
9 target = |0123456789aXXXXX|
11 ------- EXRL to OR in the syscall number (writes out target)
12 target = |0123456789aXXXXX|
/external/chromium_org/tools/gn/
H A Dninja_copy_target_writer_unittest.cc10 #include "tools/gn/target.h"
20 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar"));
21 target.set_output_type(Target::COPY_FILES);
23 target.sources().push_back(SourceFile("//foo/input1.txt"));
24 target.sources().push_back(SourceFile("//foo/input2.txt"));
26 target.action_values().outputs() =
29 target.SetToolchain(setup.toolchain());
30 ASSERT_TRUE(target.OnResolved(&err));
33 NinjaCopyTargetWriter writer(&target, out);
52 Target target(setu
[all...]
H A Dninja_action_target_writer_unittest.cc11 #include "tools/gn/target.h"
20 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar"));
21 target.set_output_type(Target::ACTION_FOREACH);
22 target.action_values().outputs() = SubstitutionList::MakeForTest(
26 target.SetToolchain(setup.toolchain());
27 ASSERT_TRUE(target.OnResolved(&err));
30 NinjaActionTargetWriter writer(&target, out);
45 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar"));
46 target.set_output_type(Target::ACTION);
48 target
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DTargetInsn.java23 * Instruction which has a single branch target.
26 /** {@code non-null;} the branch target */
27 private CodeAddress target; field in class:TargetInsn
31 * unknown ({@code -1}), and the target is initially
39 * @param target {@code non-null;} the branch target
42 RegisterSpecList registers, CodeAddress target) {
45 if (target == null) {
46 throw new NullPointerException("target == null");
49 this.target
41 TargetInsn(Dop opcode, SourcePosition position, RegisterSpecList registers, CodeAddress target) argument
74 withNewTargetAndReversed(CodeAddress target) argument
[all...]
/external/guava/guava/src/com/google/common/io/
H A DAppendableWriter.java25 * Writer that places all output on an {@link Appendable} target. If the target
27 * be delegated to the target.
34 private final Appendable target; field in class:AppendableWriter
38 * Creates a new writer that appends everything it writes to {@code target}.
40 * @param target target to which to append output
42 AppendableWriter(Appendable target) { argument
43 this.target = target;
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dtarget.c2 * Helper functions for handling target threads/cpus
9 #include "target.h"
16 enum perf_target_errno perf_target__validate(struct perf_target *target) argument
20 if (target->pid)
21 target->tid = target->pid;
24 if (target->tid && target->cpu_list) {
25 target->cpu_list = NULL;
31 if (target
61 perf_target__parse_uid(struct perf_target *target) argument
107 perf_target__strerror(struct perf_target *target, int errnum, char *buf, size_t buflen) argument
[all...]
/external/chromium_org/ash/wm/
H A Dsystem_modal_container_event_filter.cc22 aura::Window* target = static_cast<aura::Window*>(event->target()); local
23 if (!delegate_->CanWindowReceiveEvents(target))
29 aura::Window* target = static_cast<aura::Window*>(event->target()); local
30 if (!delegate_->CanWindowReceiveEvents(target))
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimation.idl35 Constructor(Element? target, sequence<Dictionary> keyframes),
36 Constructor(Element? target, sequence<Dictionary> keyframes, double timingInput),
37 Constructor(Element? target, sequence<Dictionary> keyframes, Dictionary timingInput),
/external/chromium_org/third_party/polymer/components-chromium/core-collapse/
H A Dcore-collapse-extracted.js5 * Fired when the target element has been resized as a result of the opened
12 * The target element.
14 * @attribute target
18 target: null,
48 * If true, the size of the target element is fixed and is set
64 this.target = this.target || this;
74 if (this.target) {
75 this.removeListeners(this.target);
83 if (!this.target) {
[all...]
/external/chromium_org/third_party/polymer/components-chromium/core-overlay/
H A Dcore-overlay-extracted.js8 * The target element that will be shown when the overlay is
9 * opened. If unspecified, the core-overlay itself is the target.
11 * @attribute target
15 target: null,
22 * target element, but it can be specifically set to a specific element
23 * inside the target if that is more appropriate. This is useful, for
28 * @default the target element
96 * A `core-overlay` target's size is constrained to the window size.
99 * a shadow displayed outside the target will always be visible.
137 this.target
[all...]
/external/chromium_org/courgette/
H A Dsimple_delta.h16 SinkStream* target);
18 Status GenerateSimpleDelta(SourceStream* old, SourceStream* target,
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/
H A Dmount.h13 const char* target,
18 int umount(const char* target);
/external/chromium_org/net/http/
H A Dhttp_auth_filter.cc29 HttpAuth::Target target) {
30 if ((target != HttpAuth::AUTH_SERVER) && (target != HttpAuth::AUTH_PROXY))
33 if (target == HttpAuth::AUTH_PROXY)
44 HttpAuth::Target target) const {
45 if ((target != HttpAuth::AUTH_SERVER) && (target != HttpAuth::AUTH_PROXY))
48 if (target == HttpAuth::AUTH_PROXY)
28 AddFilter(const std::string& filter, HttpAuth::Target target) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DProcessingInstruction.idl25 readonly attribute DOMString? target;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLBaseElement.idl22 [Reflect] attribute DOMString target;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAElement.idl27 [ImplementedAs=svgTarget] readonly attribute SVGAnimatedString target;
H A DSVGStringListTearOff.cpp36 SVGStringListTearOff::SVGStringListTearOff(PassRefPtr<SVGStringList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName) argument
37 : SVGPropertyTearOff<SVGStringList>(target, contextElement, propertyIsAnimVal, attributeName)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/noop/
H A DSConscript9 target = 'noop',
/external/chromium_org/third_party/mesa/src/src/gallium/targets/
H A DSConscript.dri35 target = 'utils.o',
40 target = 'xmlconfig.o',
45 target = 'dri_util.o',
50 target = 'drisw_util.o',
/external/mesa3d/src/gallium/drivers/noop/
H A DSConscript9 target = 'noop',

Completed in 566 milliseconds

1234567891011>>