Searched refs:l4 (Results 1 - 25 of 48) sorted by relevance

12

/external/annotation-tools/annotation-file-utilities/tests/source-extension/
H A DWildcards.java8 Map<? extends Map<?, String>, Object> l4; field in class:Wildcards
/external/annotation-tools/asmx/test/conform/annotations/
H A DExtendedValuesDump.class ... .Label l3 org.objectweb.asm.Label l4 public static byte[] dumpFieldGeneric () throws java.lang.Exception ...
H A DExtendedValuesDump.java399 Label l4 = new Label();
400 mv.visitLabel(l4);
401 mv.visitLocalVariable("this", "Lannotations/tests/classfile/cases/TestFieldSimple;", null, l0, l4, 0);
679 Label l4 = new Label();
680 mv.visitLabel(l4);
681 mv.visitLocalVariable("this", "Lannotations/tests/classfile/cases/TestLocalVariable;", "Lannotations/tests/classfile/cases/TestLocalVariable<TT;>;", l0, l4, 0);
682 mv.visitLocalVariable("t", "I", null, l2, l4, 1);
741 Label l4 = new Label();
742 mv.visitLabel(l4);
743 mv.visitLineNumber(23, l4);
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp3-generic-lambda-1y.cpp44 auto l4 = [](decltype(auto) a) -> int { return 0; }; //expected-error{{decltype(auto)}} local
52 auto l4 = [](auto (*fp)(int)) -> int { return fp(3); }; //expected-error{{no viable conversion from returned value of type 'Local' to function return type 'int'}} local
53 l4(&Local::ifi);
54 l4(&Local::cfi);
55 l4(&Local::dfi);
56 l4(&Local::localfi); //expected-note{{in instantiation of function template specialization}}
/external/clang/test/SemaCXX/
H A Dexceptions.cpp40 goto l4; // expected-error {{cannot jump}}
47 goto l4; // expected-error {{cannot jump}}
54 goto l4; // expected-error {{cannot jump}}
59 l4:
61 goto l4;
68 goto l4; // expected-error {{cannot jump}}
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
H A DPropertyChangeSupportTest.java79 PropertyChangeListener l4 = new PropertyChangeListenerProxy("myProp",
97 sup.addPropertyChangeListener(l4);
407 PropertyChangeListener l4 = new MockPropertyChangeListener();
411 sup.addPropertyChangeListener("myProp2", l4);
437 PropertyChangeListener l4 = new MockPropertyChangeListener();
441 sup.addPropertyChangeListener("myProp2", l4);
462 PropertyChangeListener l4 = new MockPropertyChangeListener();
466 sup.addPropertyChangeListener("myProp3", l4);
594 MockPropertyChangeListener l4 = new MockPropertyChangeListener(src,
598 sup.addPropertyChangeListener("myProp", l4);
[all...]
/external/wayland/tests/
H A Dsignal-test.c60 struct wl_listener l4 = {.notify = signal_notify}; local
67 wl_signal_add(&signal, &l4);
69 assert(wl_signal_get(&signal, signal_notify) == &l4);
75 assert(wl_signal_get(&signal, signal_notify) == &l4);
/external/tensorflow/tensorflow/contrib/receptive_field/python/util/
H A Dgraph_compute_order_test.py49 l4 = nn.relu(l1 + l3, name='L4_relu')
51 l5 = slim.conv2d(l4, 1, [1, 1], stride=2, scope='L5', padding='SAME')
53 l6 = slim.conv2d(l4, 1, [3, 3], stride=2, scope='L6', padding='SAME')
H A Dparse_layer_parameters_test.py51 l4 = nn.relu(l1 + l3, name='L4_relu')
53 l5 = slim.conv2d(l4, 1, [1, 1], stride=2, scope='L5', padding='SAME')
55 l6 = slim.conv2d(l4, 1, [3, 3], stride=2, scope='L6', padding='SAME')
H A Dreceptive_field_test.py242 l4 = nn.relu(l1 + l3)
244 l5 = slim.conv2d(l4, 1, [1, 1], stride=2, scope='L5', padding='VALID')
246 l6_pad = array_ops.pad(l4, [[0, 0], [1, 0], [1, 0], [0, 0]])
274 l4 = nn.relu(l1 + l3)
276 l5 = slim.conv2d(l4, 1, [1, 1], stride=2, scope='L5', padding='SAME')
278 l6 = slim.conv2d(l4, 1, [3, 3], stride=2, scope='L6', padding='SAME')
/external/clang/test/CodeGen/
H A Dpartial-reinitialization1.c60 struct P4 l4 = { { L"foo" }, .x[2] = L'x' }; variable in typeref:struct:P4
H A Drenderscript.c132 typedef struct {long l1, l2, l3, l4, l5, l6, l7, l8, l9; } sLong9; member in struct:__anon2611
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
H A DMethodAnalyzerTest.java465 final Label l4 = new Label();
466 method.visitLabel(l4);
467 method.visitLineNumber(1003, l4);
573 Label l4 = new Label();
574 method.visitTableSwitchInsn(1, 3, l4, new Label[] { l2, l3, l2 });
581 method.visitLabel(l4);
582 method.visitLineNumber(1005, l4);
673 Label l4 = new Label();
681 method.visitJumpInsn(Opcodes.GOTO, l4);
685 method.visitLabel(l4);
[all...]
/external/scapy/scapy/layers/
H A Dinet.py1463 def traceroute(target, dport=80, minttl=1, maxttl=30, sport=RandShort(), l4 = None, filter=None, timeout=2, verbose=None, **kargs):
1474 if l4 is None:
1480 a,b = sr(IP(dst=target, id=RandShort(), ttl=(minttl,maxttl))/l4,
1500 self.l4 = IP(dst=ip)/TCP(sport=self.sport, dport=self.dport, flags=0,
1502 self.src = self.l4.src
1503 self.swin=self.l4[TCP].window
1522 self.l4[TCP].seq >= pkt[TCP].ack and # XXX: seq/ack 2^32 wrap up
1523 ((self.l4[TCP].ack == 0) or (self.l4[TCP].ack <= pkt[TCP].seq <= self.l4[TC
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_deadlock_detector_test.cc147 uptr l4 = d.newNode(4); local
157 // l3=>l4=>l5
159 d.onLock(&dtls, l4);
161 d.onUnlock(&dtls, l4);
170 locks.insert(l4);
185 // l4=>l3
186 EXPECT_FALSE(d.onLock(&dtls, l4));
188 d.onUnlock(&dtls, l4);
196 // make sure no edges from or to l0,l1,l4,l5 left.
213 // lt => l4
425 uptr l4 = d.newNode(0); local
[all...]
/external/libvpx/libvpx/vp9/encoder/mips/msa/
H A Dvp9_fdct16x16_msa.c158 v8i16 l0, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, l12, l13, l14, l15; local
161 LD_SH8(input, 16, l0, l1, l2, l3, l4, l5, l6, l7);
162 TRANSPOSE8x8_SH_SH(l0, l1, l2, l3, l4, l5, l6, l7, r0, r1, r2, r3, r4, r5, r6,
183 LD_SH8(input, 16, l0, l1, l2, l3, l4, l5, l6, l7);
184 TRANSPOSE8x8_SH_SH(l0, l1, l2, l3, l4, l5, l6, l7, r0, r1, r2, r3, r4, r5, r6,
339 v8i16 l0, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, l12, l13, l14, l15; local
342 LD_SH16(input, 8, l0, l8, l1, l9, l2, l10, l3, l11, l4, l12, l5, l13, l6, l14,
344 TRANSPOSE8x8_SH_SH(l0, l1, l2, l3, l4, l5, l6, l7, r0, r1, r2, r3, r4, r5, r6,
354 LD_SH16(input, 8, l0, l8, l1, l9, l2, l10, l3, l11, l4, l12, l5, l13, l6, l14,
356 TRANSPOSE8x8_SH_SH(l0, l1, l2, l3, l4, l
[all...]
/external/llvm/test/MC/Sparc/
H A Dsparc-coproc.s53 ! CHECK: ld [%l4+%l5], %csr ! encoding: [0xc1,0x8d,0x00,0x15]
56 ld [%l4+%l5], %csr
/external/protobuf/ruby/tests/
H A Dbasic.rb338 l4 = Google::Protobuf::RepeatedField.new(:int32)
339 l4[5] = 42
340 assert l4 == [0, 0, 0, 0, 0, 42]
342 l4 << 100
343 assert l4 == [0, 0, 0, 0, 0, 42, 100]
344 l4 << 101 << 102
345 assert l4 == [0, 0, 0, 0, 0, 42, 100, 101, 102]
386 l4 = l + [new_msg]
387 assert l4.count == 2
389 assert l4[
[all...]
/external/libvpx/libvpx/vpx_dsp/mips/
H A Didct16x16_msa.c294 v8i16 l0, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, l12, l13, l14, l15; local
297 LD_SH16(input, 8, l0, l8, l1, l9, l2, l10, l3, l11, l4, l12, l5, l13, l6, l14,
299 TRANSPOSE8x8_SH_SH(l0, l1, l2, l3, l4, l5, l6, l7, l0, l1, l2, l3, l4, l5, l6,
305 VP9_IADST8x16_1D(l0, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, l12, l13,
314 TRANSPOSE8x8_SH_SH(r0, l1, r12, l3, r6, r14, r10, r2, l0, l1, l2, l3, l4, l5,
316 ST_SH8(l0, l1, l2, l3, l4, l5, l6, l7, output, 16);
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
H A DTryWithResourcesEcjFilterTest.java180 final Label l4 = new Label();
186 m.visitJumpInsn(Opcodes.IFNULL, l4);
191 m.visitJumpInsn(Opcodes.GOTO, l4);
208 m.visitLabel(l4);
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-string-literals.cpp255 const char *l4 = "\x4"; variable
/external/clang/test/Parser/
H A Dcxx-ambig-init-templ.cpp149 int k4 = T2<0, operator>(Y{}, Y{}), operator,(Y{}, Y{})>::val, l4;
/external/google-breakpad/src/common/linux/
H A Dsynth_elf_unittest.cc108 Label l4(table.Add(s2));
116 EXPECT_EQ(l2.Value(), l4.Value());
/external/tensorflow/tensorflow/core/kernels/
H A Dsparse_matmul_op.cc356 Packet* l2, Packet* l3, Packet* l4) {
362 *l4 = Eigen::internal::pbroadcast_fourth<Packet>(tmp);
366 LoadTwoScalars(data, l3, l4);
381 Packet* l3, Packet* l4) {
383 LoadTwoScalars(data, l3, l4);
395 Packet* l3, Packet* l4, Packet* l5,
397 LoadFourScalars(data, l1, l2, l3, l4);
355 LoadFourScalars(const bfloat16** data, Packet* l1, Packet* l2, Packet* l3, Packet* l4) argument
380 LoadFourScalars(const float** data, Packet* l1, Packet* l2, Packet* l3, Packet* l4) argument
394 LoadSixScalars(const T** data, Packet* l1, Packet* l2, Packet* l3, Packet* l4, Packet* l5, Packet* l6) argument
/external/python/cpython2/Lib/lib2to3/tests/data/
H A Dpy2_test_grammar.py304 l4 = lambda x = lambda y = lambda z=1 : z : y() : x()
305 self.assertEquals(l4(), 1)

Completed in 1782 milliseconds

12