Searched defs:target (Results 1 - 25 of 2412) sorted by relevance

1234567891011>>

/external/clang/test/CXX/except/except.spec/
H A Dp9-dynamic.cpp5 void target() throw(int) function
/external/llvm/test/MC/PowerPC/
H A Dppc64-fixup-explicit.s11 # even if the target symbol is local.
13 target: label
15 # CHECK-BE: addi 4, 3, target@GOT # encoding: [0x38,0x83,A,A]
16 # CHECK-LE: addi 4, 3, target@GOT # encoding: [A,A,0x83,0x38]
17 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@GOT, kind: fixup_ppc_half16
18 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@GOT, kind: fixup_ppc_half16
19 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16 target 0x0
20 # CHECK-LE-REL: 0x{{[0-9A-F]*[048C]}} R_PPC64_GOT16 target 0x0
21 addi 4, 3, target@got
23 # CHECK-BE: ld 1, target
[all...]
/external/chromium_org/chrome/test/ispy/client/
H A Dwait_on_ajax.js5 var target = document.body; variable
17 }).observe(target, {attributes: true, childList: true,
/external/chromium_org/third_party/skia/tests/
H A DRecordingTest.cpp22 SkCanvas target; local
23 playback->draw(&target);
/external/skia/tests/
H A DRecordingTest.cpp22 SkCanvas target; local
23 playback->draw(&target);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dhint.c37 _mesa_Hint( GLenum target, GLenum mode ) argument
44 _mesa_lookup_enum_by_nr(target),
52 switch (target) {
139 (*ctx->Driver.Hint)( ctx, target, mode );
145 _mesa_error(ctx, GL_INVALID_ENUM, "glHint(target)");
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dfix_interlocked_exchange_pointer_win.h11 // Various inline functions and macros to fix compilation of 32 bit target
22 // Platform SDK fixes when building with /Wp64 for a 32 bits target.
30 inline void* InterlockedExchangePointer(void* volatile* target, void* value) { argument
32 reinterpret_cast<volatile LONG*>(target),
/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/deqp/modules/glshared/
H A DglsVertexArrayTests.cpp66 std::string Array::targetToString(Target target) argument
68 DE_ASSERT(target < TARGET_LAST);
77 return targets[(int)target];
509 void ContextArray::data (Target target, int size, const char* ptr, Usage usage)
512 m_target = target;
516 m_ctx.bindBuffer(targetToGL(target), m_glBuffer);
519 m_ctx.bufferData(targetToGL(target), size, ptr, usageToGL(usage));
534 void ContextArray::subdata (Target target, int offset, int size, const char* ptr)
536 m_target = target;
540 m_ctx.bindBuffer(targetToGL(target), m_glBuffe
[all...]
/external/kernel-headers/original/uapi/linux/netfilter_bridge/
H A Debt_redirect.h6 int target; member in struct:ebt_redirect_info
H A Debt_arpreply.h6 int target; member in struct:ebt_arpreply_info
/external/mesa3d/src/mesa/main/
H A Dhint.c37 _mesa_Hint( GLenum target, GLenum mode ) argument
44 _mesa_lookup_enum_by_nr(target),
52 switch (target) {
139 (*ctx->Driver.Hint)( ctx, target, mode );
145 _mesa_error(ctx, GL_INVALID_ENUM, "glHint(target)");
/external/valgrind/main/none/tests/s390x/
H A Dex.c4 char target[] ="XXXXXXXXXXXXXXXX"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
13 printf("before: target = |%s|\n", target);
21 : : "a" (target), "a" (buffer): "1", "2", "memory");
23 printf("after: target = |%s|\n", target);
26 printf("------- EX 0,... has no effect (writes out target)\n");
27 printf(" target = |");
31 "lgr 3, %0\n\t" // target
[all...]
H A Dexrl.c4 char target[] ="XXXXXXXXXXXXXXXX"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
13 printf("before: target = |%s|\n", target);
20 : : "a" (target), "a" (buffer) : "1", "2", "memory");
22 printf("after: target = |%s|\n", target);
25 printf("------- EXRL 0,... has no effect (writes out target)\n");
26 printf(" target = |");
29 "lgr 3, %0\n\t" // target
[all...]
/external/webrtc/src/system_wrappers/interface/
H A Dfix_interlocked_exchange_pointer_win.h7 // Various inline functions and macros to fix compilation of 32 bit target
18 // Platform SDK fixes when building with /Wp64 for a 32 bits target.
26 inline void* InterlockedExchangePointer(void* volatile* target, void* value) { argument
28 reinterpret_cast<volatile LONG*>(target),
/external/chromium_org/third_party/icu/source/i18n/
H A Danytrans.h24 * A transliterator named Any-T or Any-T/V, where T is the target
27 * The target must be a script. It partitions text into runs of the
29 * transliterates from that script to the given target or
30 * target/variant. Adjacent COMMON or INHERITED script characters are
43 * The target or target/variant string.
45 UnicodeString target; member in class:AnyTransliterator
48 * The target script code. Never USCRIPT_INVALID_CODE.
91 * @param theTarget the target name. Must not be empty, and must
107 * Returns a transliterator from the given source to our target o
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_context.h60 struct pipe_stream_output_target target; member in struct:draw_so_target
/external/chromium_org/tools/gn/
H A Dninja_utils.cc9 #include "tools/gn/target.h"
11 SourceFile GetNinjaFileForTarget(const Target* target) { argument
12 return SourceFile(GetTargetOutputDir(target).value() +
13 target->label().name() + ".ninja");
/external/chromium_org/tools/gyp/test/subdirectory/
H A Dgyptest-subdir-all.py8 Verifies building a subsidiary dependent target from a .gyp file in a
25 target = test.ALL variable
27 test.build('prog2.gyp', target, chdir=chdir)
/external/chromium_org/ui/views/
H A Dmasked_targeter_delegate.cc13 bool MaskedTargeterDelegate::DoesIntersectRect(const View* target, argument
16 // of |target|.
17 if (!ViewTargeterDelegate::DoesIntersectRect(target, rect))
26 // of |target|.
28 clip_region.setRect(0, 0, target->width(), target->height());
/external/icu/icu4c/source/i18n/
H A Danytrans.h24 * A transliterator named Any-T or Any-T/V, where T is the target
27 * The target must be a script. It partitions text into runs of the
29 * transliterates from that script to the given target or
30 * target/variant. Adjacent COMMON or INHERITED script characters are
43 * The target or target/variant string.
45 UnicodeString target; member in class:AnyTransliterator
48 * The target script code. Never USCRIPT_INVALID_CODE.
91 * @param theTarget the target name. Must not be empty, and must
107 * Returns a transliterator from the given source to our target o
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_context.h60 struct pipe_stream_output_target target; member in struct:draw_so_target
/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/chrome/browser/omaha_query_params/
H A Dchrome_omaha_query_params_delegate_unittest.cc15 bool Contains(const std::string& source, const std::string& target) { argument
16 return source.find(target) != std::string::npos;
/external/chromium_org/chrome/test/remoting/
H A Dpage_load_notification_observer.cc13 PageLoadNotificationObserver::PageLoadNotificationObserver(const GURL& target) argument
18 target_(target) {

Completed in 527 milliseconds

1234567891011>>