Home
last modified time | relevance | path

Searched refs:cb1 (Results 1 – 25 of 55) sorted by relevance

123

/external/pdfium/core/fxcrt/
Dcfx_timer_unittest.cpp40 MockTimerCallback cb1; in TEST() local
41 EXPECT_CALL(cb1, OnTimerFired()).Times(1); in TEST()
46 auto timer1 = std::make_unique<CFX_Timer>(&scheduler, &cb1, 100); in TEST()
67 MockTimerCallback cb1; in TEST() local
68 EXPECT_CALL(cb1, OnTimerFired()).Times(0); in TEST()
71 auto timer1 = std::make_unique<CFX_Timer>(&scheduler, &cb1, 100); in TEST()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/strings/string.view/string.view.iterators/
Dbegin.pass.cpp26 typename S::const_iterator cb1 = cs.begin(); in test() local
32 assert( *cb1 == s[0]); in test()
33 assert(&*cb1 == &s[0]); in test()
38 assert( b == cb1); in test()
40 assert(cb1 == cb2); in test()
Drbegin.pass.cpp26 typename S::const_reverse_iterator cb1 = cs.rbegin(); in test() local
33 assert( *cb1 == s[last]); in test()
34 assert(&*cb1 == &s[last]); in test()
39 assert( b == cb1); in test()
41 assert(cb1 == cb2); in test()
/external/libcxx/test/std/strings/string.view/string.view.iterators/
Dbegin.pass.cpp25 typename S::const_iterator cb1 = cs.begin(); in test() local
31 assert( *cb1 == s[0]); in test()
32 assert(&*cb1 == &s[0]); in test()
37 assert( b == cb1); in test()
39 assert(cb1 == cb2); in test()
Drbegin.pass.cpp25 typename S::const_reverse_iterator cb1 = cs.rbegin(); in test() local
32 assert( *cb1 == s[last]); in test()
33 assert(&*cb1 == &s[last]); in test()
38 assert( b == cb1); in test()
40 assert(cb1 == cb2); in test()
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
Dhlsl.constantbuffer.frag.out25 0:22 'cb1' (layout( binding=12 row_major std140) uniform block{layout( row_major std…
60 0:? 'cb1' (layout( binding=12 row_major std140) uniform block{layout( row_major std140) uniform…
93 0:22 'cb1' (layout( binding=12 row_major std140) uniform block{layout( row_major std…
128 0:? 'cb1' (layout( binding=12 row_major std140) uniform block{layout( row_major std140) uniform…
151 Name 31 "cb1"
152 MemberName 31(cb1) 0 "x"
153 Name 33 "cb1"
164 MemberDecorate 31(cb1) 0 Offset 0
165 Decorate 31(cb1) Block
166 Decorate 33(cb1) DescriptorSet 0
[all …]
Dhlsl.shift.per-set.frag.out57 0:55 cb1: direct index for structure (layout( row_major std140) uniform int)
58 …layout( set=6 binding=1 row_major std140) uniform block{layout( row_major std140) uniform int cb1})
96 …layout( set=6 binding=1 row_major std140) uniform block{layout( row_major std140) uniform int cb1})
159 0:55 cb1: direct index for structure (layout( row_major std140) uniform int)
160 …layout( set=6 binding=1 row_major std140) uniform block{layout( row_major std140) uniform int cb1})
198 …layout( set=6 binding=1 row_major std140) uniform block{layout( row_major std140) uniform int cb1})
217 cb1: offset 0, type 1404, size 1, index 4, binding -1, stages 16
/external/deqp-deps/glslang/Test/baseResults/
Dhlsl.constantbuffer.frag.out25 0:22 'cb1' (layout( binding=12 row_major std140) uniform block{layout( row_major std…
60 0:? 'cb1' (layout( binding=12 row_major std140) uniform block{layout( row_major std140) uniform…
93 0:22 'cb1' (layout( binding=12 row_major std140) uniform block{layout( row_major std…
128 0:? 'cb1' (layout( binding=12 row_major std140) uniform block{layout( row_major std140) uniform…
151 Name 31 "cb1"
152 MemberName 31(cb1) 0 "x"
153 Name 33 "cb1"
164 MemberDecorate 31(cb1) 0 Offset 0
165 Decorate 31(cb1) Block
166 Decorate 33(cb1) DescriptorSet 0
[all …]
Dhlsl.shift.per-set.frag.out57 0:55 cb1: direct index for structure (layout( row_major std140) uniform int)
58 …layout( set=6 binding=1 row_major std140) uniform block{layout( row_major std140) uniform int cb1})
96 …layout( set=6 binding=1 row_major std140) uniform block{layout( row_major std140) uniform int cb1})
159 0:55 cb1: direct index for structure (layout( row_major std140) uniform int)
160 …layout( set=6 binding=1 row_major std140) uniform block{layout( row_major std140) uniform int cb1})
198 …layout( set=6 binding=1 row_major std140) uniform block{layout( row_major std140) uniform int cb1})
217 cb1: offset 0, type 1404, size 1, index 4, binding -1, stages 16
/external/deqp-deps/glslang/Test/
Dhlsl.constantbuffer.frag11 ConstantBuffer<c1_t> cb1 : register(b12);
22 return cb1.x + cb2[1].y + c1;
Dhlsl.automap.frag24 int cb1;
53 cb1;
Dhlsl.shift.per-set.frag26 int cb1;
55 cb1;
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Dhlsl.constantbuffer.frag11 ConstantBuffer<c1_t> cb1 : register(b12);
22 return cb1.x + cb2[1].y + c1;
Dhlsl.automap.frag24 int cb1;
53 cb1;
Dhlsl.shift.per-set.frag26 int cb1;
55 cb1;
/external/mesa3d/src/gallium/tests/graw/
Dfs-test.c112 struct pipe_constant_buffer cb1; in init_fs_constbuf() local
115 memset(&cb1, 0, sizeof cb1); in init_fs_constbuf()
116 cb1.buffer_size = sizeof constants1; in init_fs_constbuf()
117 cb1.user_buffer = constants1; in init_fs_constbuf()
121 &cb1); in init_fs_constbuf()
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_futures.py687 cb1 = self._make_callback(bag, 42)
691 f.add_done_callback(cb1)
695 f.remove_done_callback(cb1)
696 f.remove_done_callback(cb1)
710 cb1 = self._make_callback(bag, 42)
714 f.add_done_callback(cb1)
718 f.remove_done_callback(cb1)
720 f.remove_done_callback(cb1)
734 cb1 = self._make_callback(bag, 42)
738 f.add_done_callback(cb1)
[all …]
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_variables.py78 cb1 = v.trace_variable('r', read_tracer)
80 self.assertEqual(sorted(v.trace_vinfo()), [('r', cb1), ('wu', cb2)])
92 v.trace_vdelete('w', cb1) # Wrong mode
97 v.trace_vdelete('r', (cb1, 43)) # Wrong arguments
103 v.trace_vdelete('r', cb1)
/external/libwebsockets/minimal-examples/api-tests/api-test-async-dns/
Dmain.c101 cb1(struct lws *wsi_unused, const char *ads, const struct addrinfo *a, int n,
113 (adns_query_type_t)adt[dtest].recordtype, cb1, NULL, in next_test_cb()
122 cb1(struct lws *wsi_unused, const char *ads, const struct addrinfo *a, int n, in cb1() function
/external/python/cpython3/Lib/tkinter/test/test_tkinter/
Dtest_variables.py123 cb1 = v.trace_variable('r', read_tracer)
125 self.assertEqual(sorted(v.trace_vinfo()), [('r', cb1), ('wu', cb2)])
137 v.trace_vdelete('w', cb1) # Wrong mode
142 v.trace_vdelete('r', (cb1, 43)) # Wrong arguments
148 v.trace_vdelete('r', cb1)
/external/cronet/base/functional/
Dcallback_helpers_unittest.cc239 base::OnceCallback<void(int*)> cb1 = std::move(split.first); in TEST() local
245 std::move(cb1).Run(&count); in TEST()
257 base::OnceCallback<void(int*)> cb1 = std::move(split.first); in TEST() local
266 EXPECT_CHECK_DEATH(std::move(cb1).Run(&count)); in TEST()
/external/python/cpython2/Lib/idlelib/
DPercolator.py95 cb1 = tk.Checkbutton(root, text="Tracer1", command=toggle1, variable=var1)
96 cb1.pack()
/external/python/cpython3/Lib/idlelib/
Dpercolator.py107 cb1 = tk.Checkbutton(box, text="Tracer1", command=toggle1, variable=var1)
108 cb1.pack()
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_autocomplete.py122 cb1 = acp._delayed_completion_id
123 Equal(cb1, 'after1')
132 Equal(cancel.args, (cb1,))
/external/llvm/test/MC/Sparc/
Dsparc-ctrl-instructions.s227 ! CHECK: cb1 .BB0 ! encoding: [0x09,0b11AAAAAA,A,A]
229 cb1 .BB0
401 ! CHECK: cb1,a .BB0 ! encoding: [0x29,0b11AAAAAA,A,A]
403 cb1,a .BB0
457 ! CHECK: cb1,a .BB0 ! encoding: [0x29,0b11AAAAAA,A,A]
459 cb1,a .BB0

123