HomeSort by relevance Sort by last modified time
    Searched defs:target (Results 1 - 25 of 3598) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/except/except.spec/
p9-dynamic.cpp 5 void target() throw(int) function
  /external/llvm/test/MC/PowerPC/
ppc64-fixup-explicit.s 11 # 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@GOT(2) # encoding: [0xe8,0x22,A,0bAAAAAA00
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-578039-Proxy_construct_prototype_change.js 6 function target() {}; function
8 var proxy = new Proxy(target, {
10 // Reset the initial map of the target.
11 target.prototype = 123;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tilegx/
t_insns.s 0 target:
67 { fdouble_sub_flags r5, r6, r7 ; bnezt r15, target }
68 { fdouble_sub_flags r5, r6, r7 ; bnez r15, target }
69 { fdouble_addsub r5, r6, r7 ; bnez r15, target }
70 { fdouble_pack1 r5, r6, r7 ; bnez r15, target }
71 { fsingle_pack2 r5, r6, r7 ; bnez r15, target }
72 { fsingle_mul2 r5, r6, r7 ; blez r15, target }
73 { mula_hs_hu r5, r6, r7 ; bgtzt r15, target }
74 { mula_hu_lu r5, r6, r7 ; bgtzt r15, target }
75 { addli r5, r6, 0x1234 ; bgtzt r15, target }
1 target: label
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tilepro/
t_insns.s 0 target:
67 { mulllsa_uu r5, r6, r7 ; bbnst r15, target }
68 { mulhha_ss r5, r6, r7 ; blezt r15, target }
69 { mulhla_us r5, r6, r7 ; bbnst r15, target }
70 { mullla_uu r5, r6, r7 ; bgezt r15, target }
71 { addlis r5, r6, 0x1234 ; bzt r15, target }
72 { mulhh_uu r5, r6, r7 ; bbnst r15, target }
73 { mulhha_uu r5, r6, r7 ; bgzt r15, target }
74 { mulhl_uu r5, r6, r7 ; blezt r15, target }
75 { mulhla_us r5, r6, r7 ; blzt r15, target }
1 target: label
    [all...]
  /external/libcxx/test/std/re/re.const/re.matchflag/
match_not_bol.pass.cpp 24 std::string target = "foo"; local
26 assert( std::regex_match(target, re));
27 assert(!std::regex_match(target, re, std::regex_constants::match_not_bol));
31 std::string target = "foo"; local
33 assert( std::regex_match(target, re));
34 assert( std::regex_match(target, re, std::regex_constants::match_not_bol));
38 std::string target = "fooby"; local
40 assert( std::regex_search(target, re));
41 assert(!std::regex_search(target, re, std::regex_constants::match_not_bol));
45 std::string target = "fooby" local
    [all...]
match_not_eol.pass.cpp 24 std::string target = "foo"; local
26 assert( std::regex_match(target, re));
27 assert(!std::regex_match(target, re, std::regex_constants::match_not_eol));
31 std::string target = "foo"; local
33 assert( std::regex_match(target, re));
34 assert( std::regex_match(target, re, std::regex_constants::match_not_eol));
38 std::string target = "refoo"; local
40 assert( std::regex_search(target, re));
41 assert(!std::regex_search(target, re, std::regex_constants::match_not_eol));
45 std::string target = "refoo" local
    [all...]
  /external/v8/test/mjsunit/harmony/
proxies-keys.js 7 var target = {
8 target: 1
10 target.__proto__ = {
15 ownKeys: function(target) {
18 getOwnPropertyDescriptor: function(target, name) {
25 var proxy = new Proxy(target, handler);
38 // Fall through to target if there is no trap.
40 assertEquals(["target"], Object.keys(proxy));
41 assertEquals(["target"], Object.keys(target));
    [all...]
proxies-property-is-enumerable.js 8 var target = { a: 1 };
9 var proxy = new Proxy(target, handler);
11 assertTrue(target.propertyIsEnumerable('a'));
13 assertFalse(target.propertyIsEnumerable('b'));
16 handler.getOwnPropertyDescriptor = function(target, prop) {
19 assertTrue(target.propertyIsEnumerable('a'));
21 assertFalse(target.propertyIsEnumerable('b'));
24 handler.getOwnPropertyDescriptor = function(target, prop) {
27 assertTrue(target.propertyIsEnumerable('a'));
29 assertFalse(target.propertyIsEnumerable('b'))
    [all...]
  /external/v8/test/mjsunit/es6/regress/
regress-cr493566.js 35 getPropertyDescriptor(target, name) {
40 var target = {};
41 var proxy = new Proxy(target, handler);
59 assertEquals(2, target.x);
80 var target = {target:1};
90 set(target, name, value) {
94 var proxy = new Proxy(target, handler);
102 assertEquals(3, target.y);
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebt_redirect.h 22 int target; member in struct:ebt_redirect_info
  /development/ndk/platforms/android-21/include/linux/netfilter_bridge/
ebt_redirect.h 22 int target; member in struct:ebt_redirect_info
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebt_redirect.h 6 int target; member in struct:ebt_redirect_info
  /external/v8/test/webkit/
tostring-exception-in-property-access.js 27 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/valgrind/none/tests/s390x/
ex.c 4 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...]
exrl.c 4 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/vogar/src/vogar/target/
MainRunnerFactory.java 16 package vogar.target;
Runner.java 17 package vogar.target;
RunnerFactory.java 16 package vogar.target;
  /external/vogar/test/vogar/target/junit4/
SuiteTest.java 17 package vogar.target.junit4;
WrongSuiteTest.java 17 package vogar.target.junit4;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_redirect.h 7 int target; member in struct:ebt_redirect_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_redirect.h 6 int target; member in struct:ebt_redirect_info
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/netfilter_bridge/
ebt_redirect.h 22 int target; member in struct:ebt_redirect_info
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/netfilter_bridge/
ebt_redirect.h 22 int target; member in struct:ebt_redirect_info

Completed in 535 milliseconds

1 2 3 4 5 6 7 8 91011>>