Searched refs:target (Results 1 - 25 of 5676) sorted by relevance

1234567891011>>

/external/clang/test/CXX/except/except.spec/
H A Dp9-dynamic.cpp5 void target() throw(int) function
H A Dp9-noexcept.cpp5 void target() noexcept
/external/chromium_org/v8/test/webkit/
H A Dtostring-exception-in-property-access.js27 var target = {"" : "Did not assign to property when setter subscript threw"};
30 target[toStringThrower] = "Assigned to property on object when subscript threw";
34 shouldBe('target[""]', "'Did not assign to property when setter subscript threw'");
36 target[""] = "Did not delete property when subscript threw";
38 delete target[toStringThrower];
42 shouldBe('target[""]', "'Did not delete property when subscript threw'");
44 delete target[""];
46 target.__defineGetter__("", function(){
52 localTest = target[toStringThrower];
/external/chromium_org/remoting/host/installer/mac/Scripts/
H A Dkeystone_install.sh9 /usr/sbin/installer -pkg "$1/@@HOST_PKG@@.pkg" -target /
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dserialization_test.h24 bool VerifyHHEA(Table* original, Table* target);
25 bool VerifyGLYF(Table* original, Table* target);
26 bool VerifyHMTX(Table* original, Table* target);
27 bool VerifyLOCA(Table* original, Table* target);
28 bool VerifyMAXP(Table* original, Table* target);
29 bool VerifyNAME(Table* original, Table* target);
30 bool VerifyOS_2(Table* original, Table* target);
/external/sfntly/cpp/src/test/
H A Dserialization_test.h24 bool VerifyHHEA(Table* original, Table* target);
25 bool VerifyGLYF(Table* original, Table* target);
26 bool VerifyHMTX(Table* original, Table* target);
27 bool VerifyLOCA(Table* original, Table* target);
28 bool VerifyMAXP(Table* original, Table* target);
29 bool VerifyNAME(Table* original, Table* target);
30 bool VerifyOS_2(Table* original, Table* target);
/external/chromium_org/native_client_sdk/src/build_tools/
H A Ddsc2gyp.py40 'toolset': 'target',
54 'toolset': 'target',
72 'toolset': 'target',
87 'toolset': 'target',
211 def WriteNaClTargets(output, target, tools):
219 target['CONFIGS'] = configs
220 if target['TYPE'] == 'lib':
221 output.write(NLIB_TARGET % target)
223 output.write(NEXE_TARGET % target)
274 # make a list of all the so target name
[all...]
/external/chromium_org/cc/output/
H A Dcompositor_frame.cc13 void CompositorFrame::AssignTo(CompositorFrame* target) { argument
14 target->delegated_frame_data = delegated_frame_data.Pass();
15 target->gl_frame_data = gl_frame_data.Pass();
16 target->software_frame_data = software_frame_data.Pass();
17 target->metadata = metadata;
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
H A Dstandard.h20 #define bis(target,mask) ((target) |= (mask))
21 #define bic(target,mask) ((target) &= ~(mask))
22 #define bit(target,mask) ((target) & (mask))
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dsyscall_mount.c8 int mount(const char* source, const char* target, const char* filesystemtype, argument
10 return ki_mount(source, target, filesystemtype, mountflags, data);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DTransition.java34 * transitions) and has a label/target pair. I have abstracted the notion
38 /** What label must be consumed to transition to target */
41 /** The target of this transition */
42 public State target; field in class:Transition
44 public Transition(Label label, State target) { argument
46 this.target = target;
49 public Transition(int label, State target) { argument
51 this.target = target;
[all...]
/external/chromium_org/tools/cr/cr/actions/
H A Dadb.py19 # Tracks the set of killed target names, so we don't keep issuing kill
24 def GetPids(cls, target):
25 """Gets the set of running PIDs that match the specified target."""
27 output = cr.Host.Capture(target, '{CR_ADB}', 'shell', 'ps')
36 def Run(cls, target, arguments):
37 """Invoke a target binary on the device."""
39 target,
48 def Kill(cls, target, _):
49 """Kill all running processes for a target."""
50 target_name = target
[all...]
/external/chromium_org/chrome/browser/resources/quota_internals/
H A Dmessage_dispatcher.js44 var target = null;
47 target = cr.quota.onAvailableSpaceUpdated;
50 target = cr.quota.onGlobalInfoUpdated;
53 target = cr.quota.onPerHostInfoUpdated;
56 target = cr.quota.onPerOriginInfoUpdated;
59 target = cr.quota.onStatisticsUpdated;
65 if (target) {
68 target.dispatchEvent(event);
/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/coregrind/m_gdbserver/
H A Dvalgrind_low.h29 /* defines the characteristics of the "low" valgrind target architecture.
57 /* Returns the target xml description of the set of registers.
62 If shadow_mode, returns a target xml description
65 Returns NULL if there is no target xml file*/
70 extern void x86_init_architecture (struct valgrind_target_ops *target);
71 extern void amd64_init_architecture (struct valgrind_target_ops *target);
72 extern void arm_init_architecture (struct valgrind_target_ops *target);
73 extern void ppc32_init_architecture (struct valgrind_target_ops *target);
74 extern void ppc64_init_architecture (struct valgrind_target_ops *target);
75 extern void s390x_init_architecture (struct valgrind_target_ops *target);
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DNetworkPanelDescriptor.js44 * @param {!Object} target
46 appendApplicableItems: function(event, contextMenu, target)
48 if (!(target instanceof WebInspector.NetworkRequest || target instanceof WebInspector.Resource || target instanceof WebInspector.UISourceCode))
50 this.panel().appendApplicableItems(event, contextMenu, 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);
/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/chromium_org/cc/resources/
H A Dtile_priority_unittest.cc14 gfx::Rect target(0, 0, 800, 600);
17 gfx::Rect(-200, 0, 100, 100), current, 1, target));
19 gfx::Rect(-100, 0, 100, 100), current, 1, target));
21 gfx::Rect(400, 400, 100, 100), current, 1, target));
25 gfx::Rect(0, 0, 100, 100), current, 1, target));
27 gfx::Rect(-200, -200, 100, 100), current, 1, target));
29 gfx::Rect(-400, -400, 100, 100), current, 1, target));
34 gfx::Rect target(0, 0, 800, 600);
37 gfx::Rect(-200, 0, 200, 200), current, 1, target));
39 gfx::Rect(-100, 0, 50, 50), current, 1, target));
[all...]
/external/chromium_org/ash/wm/
H A Dsystem_modal_container_event_filter.cc23 aura::Window* target = static_cast<aura::Window*>(event->target()); local
24 if (!delegate_->CanWindowReceiveEvents(target))
30 aura::Window* target = static_cast<aura::Window*>(event->target()); local
31 if (!delegate_->CanWindowReceiveEvents(target))
/external/chromium/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/ash/wm/panels/
H A Dpanel_window_event_handler.cc24 aura::Window* target = static_cast<aura::Window*>(event->target()); local
28 target->delegate()->GetNonClientComponent(event->location()) ==
30 wm::GetWindowState(target)->Minimize();
37 aura::Window* target = static_cast<aura::Window*>(event->target()); local
40 target->delegate()->GetNonClientComponent(event->location()) ==
42 wm::GetWindowState(target)->Minimize();
/external/chromium_org/courgette/
H A Dsimple_delta.h16 SinkStream* target);
18 Status GenerateSimpleDelta(SourceStream* old, SourceStream* target,

Completed in 1086 milliseconds

1234567891011>>