Searched refs:cmds (Results 1 - 25 of 74) sorted by relevance

123

/external/clang/bindings/python/tests/cindex/
H A Dtest_cdb.py32 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
33 assert len(cmds) != 0
38 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
39 assert len(cmds) == 1
40 assert cmds[0].directory == '/home/john.doe/MyProject'
43 for arg, exp in zip(cmds[0].arguments, expected):
49 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp')
50 assert len(cmds) == 2
59 for i in range(len(cmds)):
60 assert cmds[
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_unittest_1_autogen.h17 SpecializedSetup<cmds::AttachShader, 0>(true);
18 cmds::AttachShader cmd;
31 SpecializedSetup<cmds::BindBuffer, 0>(true);
32 cmds::BindBuffer cmd;
42 SpecializedSetup<cmds::BindBuffer, 0>(true);
43 cmds::BindBuffer cmd;
52 SpecializedSetup<cmds::BindBuffer, 0>(false);
53 cmds::BindBuffer cmd;
61 SpecializedSetup<cmds::BindFramebuffer, 0>(true);
62 cmds
[all...]
H A Dgles2_cmd_decoder_unittest_2.cc36 void GLES2DecoderTestBase::SpecializedSetup<cmds::GenQueriesEXT, 0>(
42 cmds::GenQueriesEXT cmd;
49 void GLES2DecoderTestBase::SpecializedSetup<cmds::GenQueriesEXTImmediate, 0>(
55 cmds::GenQueriesEXT cmd;
62 void GLES2DecoderTestBase::SpecializedSetup<cmds::DeleteQueriesEXT, 0>(
67 cmds::GenQueriesEXT cmd;
74 void GLES2DecoderTestBase::SpecializedSetup<cmds::DeleteQueriesEXTImmediate, 0>(
79 cmds::GenQueriesEXT cmd;
86 void GLES2DecoderTestBase::SpecializedSetup<cmds::LinkProgram, 0>(
128 cmds
[all...]
H A Dgles2_cmd_decoder_unittest_2_autogen.h15 SpecializedSetup<cmds::GetVertexAttribiv, 0>(true);
16 typedef cmds::GetVertexAttribiv::Result Result;
19 cmds::GetVertexAttribiv cmd;
32 SpecializedSetup<cmds::GetVertexAttribiv, 0>(false);
33 cmds::GetVertexAttribiv::Result* result =
34 static_cast<cmds::GetVertexAttribiv::Result*>(shared_memory_address_);
36 cmds::GetVertexAttribiv cmd;
44 SpecializedSetup<cmds::GetVertexAttribiv, 0>(false);
45 cmds::GetVertexAttribiv::Result* result =
46 static_cast<cmds
[all...]
H A Dgles2_cmd_decoder_unittest_1.cc41 void GLES2DecoderTestBase::SpecializedSetup<cmds::GenerateMipmap, 0>(
64 void GLES2DecoderTestBase::SpecializedSetup<cmds::CheckFramebufferStatus, 0>(
79 void GLES2DecoderTestBase::SpecializedSetup<cmds::Clear, 0>(bool valid) {
86 void GLES2DecoderTestBase::SpecializedSetup<cmds::ColorMask, 0>(
95 void GLES2DecoderTestBase::SpecializedSetup<cmds::CopyTexImage2D, 0>(
106 void GLES2DecoderTestBase::SpecializedSetup<cmds::CopyTexSubImage2D, 0>(
117 void GLES2DecoderTestBase::SpecializedSetup<cmds::DetachShader, 0>(bool valid) {
123 cmds::AttachShader attach_cmd;
130 void GLES2DecoderTestBase::SpecializedSetup<cmds::FramebufferRenderbuffer, 0>(
143 void GLES2DecoderTestBase::SpecializedSetup<cmds
[all...]
H A Dgles2_cmd_decoder_autogen.h14 uint32 immediate_data_size, const gles2::cmds::ActiveTexture& c) {
21 uint32 immediate_data_size, const gles2::cmds::AttachShader& c) {
29 uint32 immediate_data_size, const gles2::cmds::BindBuffer& c) {
41 uint32 immediate_data_size, const gles2::cmds::BindFramebuffer& c) {
53 uint32 immediate_data_size, const gles2::cmds::BindRenderbuffer& c) {
65 uint32 immediate_data_size, const gles2::cmds::BindTexture& c) {
77 uint32 immediate_data_size, const gles2::cmds::BlendColor& c) {
96 uint32 immediate_data_size, const gles2::cmds::BlendEquation& c) {
112 uint32 immediate_data_size, const gles2::cmds::BlendEquationSeparate& c) {
135 uint32 immediate_data_size, const gles2::cmds
[all...]
H A Dgles2_cmd_decoder_unittest_base.cc279 GenHelper<cmds::GenBuffersImmediate>(client_buffer_id_);
283 GenHelper<cmds::GenFramebuffersImmediate>(client_framebuffer_id_);
287 GenHelper<cmds::GenRenderbuffersImmediate>(client_renderbuffer_id_);
291 GenHelper<cmds::GenTexturesImmediate>(client_texture_id_);
295 GenHelper<cmds::GenBuffersImmediate>(client_element_buffer_id_);
336 cmds::GetError cmd;
348 cmds::CreateShader cmd;
354 return IsObjectHelper<cmds::IsShader, cmds::IsShader::Result>(client_id);
362 cmds
[all...]
H A Dgles2_cmd_decoder_unittest_3.cc30 using namespace cmds;
/external/linux-tools-perf/util/
H A Dhelp.c7 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len) argument
15 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc);
16 cmds->names[cmds->cnt++] = ent;
19 static void clean_cmdnames(struct cmdnames *cmds) argument
23 for (i = 0; i < cmds->cnt; ++i)
24 free(cmds->names[i]);
25 free(cmds
37 uniq(struct cmdnames *cmds) argument
51 exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes) argument
73 pretty_print_string_list(struct cmdnames *cmds, int longest) argument
122 list_commands_in_dir(struct cmdnames *cmds, const char *path, const char *prefix) argument
263 add_cmd_list(struct cmdnames *cmds, struct cmdnames *old) argument
[all...]
H A Dhelp.h22 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len);
24 void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes);
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_cmd_helper_autogen.h13 gles2::cmds::ActiveTexture* c = GetCmdSpace<gles2::cmds::ActiveTexture>();
20 gles2::cmds::AttachShader* c = GetCmdSpace<gles2::cmds::AttachShader>();
29 gles2::cmds::BindAttribLocation* c =
30 GetCmdSpace<gles2::cmds::BindAttribLocation>();
39 gles2::cmds::BindAttribLocationImmediate* c =
40 GetImmediateCmdSpace<gles2::cmds::BindAttribLocationImmediate>(
49 gles2::cmds::BindAttribLocationBucket* c =
50 GetCmdSpace<gles2::cmds
[all...]
H A Dgles2_cmd_helper.h32 gles2::cmds::GetAttribLocation* c =
33 GetCmdSpace<gles2::cmds::GetAttribLocation>();
44 const uint32 size = gles2::cmds::GetAttribLocationImmediate::ComputeSize(
46 gles2::cmds::GetAttribLocationImmediate* c =
47 GetImmediateCmdSpaceTotalSize<gles2::cmds::GetAttribLocationImmediate>(
57 gles2::cmds::GetAttribLocationBucket* c =
58 GetCmdSpace<gles2::cmds::GetAttribLocationBucket>();
67 gles2::cmds::GetUniformLocation* c =
68 GetCmdSpace<gles2::cmds::GetUniformLocation>();
79 const uint32 size = gles2::cmds
[all...]
H A Dgles2_implementation_unittest_autogen.h17 cmds::AttachShader cmd;
29 cmds::BindBuffer cmd;
43 cmds::BindFramebuffer cmd;
57 cmds::BindRenderbuffer cmd;
71 cmds::BlendColor cmd;
82 cmds::BlendEquation cmd;
93 cmds::BlendEquationSeparate cmd;
104 cmds::BlendFunc cmd;
115 cmds::BlendFuncSeparate cmd;
126 cmds
[all...]
H A Dgles2_implementation_unittest.cc342 const uint8* cmds = reinterpret_cast<const uint8*>(ring_buffer.ptr); local
343 const uint8* end = cmds + ring_buffer.size;
344 for (; cmds < end; ++cmds) {
345 if (*cmds != kInitialValue) {
389 sizeof(cmds::GetShaderPrecisionFormat::Result) * 12);
463 GetExpectedResultMemory(sizeof(cmds::GetError::Result));
590 cmds::GetShaderPrecisionFormat cmd;
592 typedef cmds::GetShaderPrecisionFormat::Result Result;
672 cmds
[all...]
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_format_test_autogen.h16 cmds::ActiveTexture& cmd = *GetBufferAs<cmds::ActiveTexture>();
20 EXPECT_EQ(static_cast<uint32>(cmds::ActiveTexture::kCmdId),
29 cmds::AttachShader& cmd = *GetBufferAs<cmds::AttachShader>();
34 EXPECT_EQ(static_cast<uint32>(cmds::AttachShader::kCmdId),
44 cmds::BindAttribLocation& cmd = *GetBufferAs<cmds::BindAttribLocation>();
52 EXPECT_EQ(static_cast<uint32>(cmds::BindAttribLocation::kCmdId),
66 cmds
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dvgu.c42 const VGubyte *cmds,
51 vgAppendPathData(path, num_cmds, cmds, common_data);
58 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, VG_LINE_TO_ABS}; local
75 vgu_append_float_coords(path, cmds, 2, coords, 4);
85 VGubyte *cmds; local
103 cmds = malloc(sizeof(VGubyte) * count + 1);
106 cmds[0] = VG_MOVE_TO_ABS;
110 cmds[i] = VG_LINE_TO_ABS;
116 cmds[i] = VG_CLOSE_PATH;
120 vgu_append_float_coords(path, cmds,
41 vgu_append_float_coords(VGPath path, const VGubyte *cmds, VGint num_cmds, const VGfloat *coords, VGint num_coords) argument
132 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
170 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
227 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
266 VGubyte cmds[11]; local
[all...]
H A Dstroker.c76 const VGubyte *cmds; member in struct:stroke_iterator
151 return it->cmds[it->position];
160 prev_cmd = it->cmds[it->position + 1];
197 struct array *cmds,
200 itr->cmds = (VGubyte*)cmds->data;
201 itr->num_commands = cmds->num_elements;
208 struct array *cmds,
211 stroke_itr_common_init(itr, cmds, coords);
222 struct array *cmds,
196 stroke_itr_common_init(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
207 stroke_forward_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
221 stroke_backward_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
331 stroke_flat_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
552 VGubyte cmds = VG_MOVE_TO_ABS; local
569 VGubyte cmds = VG_LINE_TO_ABS; local
587 VGubyte cmds = VG_CUBIC_TO_ABS; local
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dvgu.c42 const VGubyte *cmds,
51 vgAppendPathData(path, num_cmds, cmds, common_data);
58 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, VG_LINE_TO_ABS}; local
75 vgu_append_float_coords(path, cmds, 2, coords, 4);
85 VGubyte *cmds; local
103 cmds = malloc(sizeof(VGubyte) * count + 1);
106 cmds[0] = VG_MOVE_TO_ABS;
110 cmds[i] = VG_LINE_TO_ABS;
116 cmds[i] = VG_CLOSE_PATH;
120 vgu_append_float_coords(path, cmds,
41 vgu_append_float_coords(VGPath path, const VGubyte *cmds, VGint num_cmds, const VGfloat *coords, VGint num_coords) argument
132 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
170 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
227 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
266 VGubyte cmds[11]; local
[all...]
H A Dstroker.c76 const VGubyte *cmds; member in struct:stroke_iterator
151 return it->cmds[it->position];
160 prev_cmd = it->cmds[it->position + 1];
197 struct array *cmds,
200 itr->cmds = (VGubyte*)cmds->data;
201 itr->num_commands = cmds->num_elements;
208 struct array *cmds,
211 stroke_itr_common_init(itr, cmds, coords);
222 struct array *cmds,
196 stroke_itr_common_init(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
207 stroke_forward_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
221 stroke_backward_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
331 stroke_flat_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
552 VGubyte cmds = VG_MOVE_TO_ABS; local
569 VGubyte cmds = VG_LINE_TO_ABS; local
587 VGubyte cmds = VG_CUBIC_TO_ABS; local
[all...]
/external/blktrace/btt/
H A Dbno_plot.py44 cmds = """
109 fo = open('%s/plot.cmds' % tmpdir, 'w')
110 print >>fo, cmds
117 cmd = '/usr/bin/gnuplot %s/plot.cmds -' % tmpdir
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_video.h33 unsigned *cmds; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_video.h33 unsigned *cmds; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
/external/linux-tools-perf/Documentation/
H A DMakefile199 cmds_txt = cmds-ancillaryinterrogators.txt \
200 cmds-ancillarymanipulators.txt \
201 cmds-mainporcelain.txt \
202 cmds-plumbinginterrogators.txt \
203 cmds-plumbingmanipulators.txt \
204 cmds-synchingrepositories.txt \
205 cmds-synchelpers.txt \
206 cmds-purehelpers.txt \
207 cmds-foreignscminterface.txt
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dengine.c203 STACK_OF(OPENSSL_STRING) *cmds = NULL;
214 cmds = sk_OPENSSL_STRING_new_null();
216 if(!cmds)
287 if(cmds) sk_OPENSSL_STRING_pop_free(cmds, identity);
293 static void util_do_cmds(ENGINE *e, STACK_OF(OPENSSL_STRING) *cmds, argument
296 int loop, res, num = sk_OPENSSL_STRING_num(cmds);
307 cmd = sk_OPENSSL_STRING_value(cmds, loop);
/external/openssl/apps/
H A Dengine.c203 STACK_OF(OPENSSL_STRING) *cmds = NULL;
214 cmds = sk_OPENSSL_STRING_new_null();
216 if(!cmds)
287 if(cmds) sk_OPENSSL_STRING_pop_free(cmds, identity);
293 static void util_do_cmds(ENGINE *e, STACK_OF(OPENSSL_STRING) *cmds, argument
296 int loop, res, num = sk_OPENSSL_STRING_num(cmds);
307 cmd = sk_OPENSSL_STRING_value(cmds, loop);

Completed in 491 milliseconds

123