/external/grub/docs/ |
D | help2man | 170 (my $program = $ARGV[0]) =~ s!.*/!!; 171 my $package = $program; 200 $program = $1; 206 $program = $2; 215 $program =~ s!.*/!!; 218 $opt_no_info = 1 if $program eq 'info'; 221 $include{NAME} = "$program \\- $opt_name\n" if $opt_name; 224 $include{NAME} ||= "$program \\- manual page for $program $version\n"; 227 my $PROGRAM = uc $program; 457 .B $program [all …]
|
/external/webkit/WebCore/html/canvas/ |
D | WebGLRenderingContext.cpp | 175 void WebGLRenderingContext::attachShader(WebGLProgram* program, WebGLShader* shader, ExceptionCode&… in attachShader() argument 178 if (!program || program->context() != this || !shader || shader->context() != this) { in attachShader() 182 m_context->attachShader(program, shader); in attachShader() 186 void WebGLRenderingContext::bindAttribLocation(WebGLProgram* program, unsigned long index, const St… in bindAttribLocation() argument 189 if (!program || program->context() != this) { in bindAttribLocation() 193 m_context->bindAttribLocation(program, index, name); in bindAttribLocation() 505 void WebGLRenderingContext::deleteProgram(WebGLProgram* program) in deleteProgram() argument 507 if (!program) in deleteProgram() 510 program->deleteObject(); in deleteProgram() 555 void WebGLRenderingContext::detachShader(WebGLProgram* program, WebGLShader* shader, ExceptionCode&… in detachShader() argument [all …]
|
D | WebGLUniformLocation.cpp | 35 PassRefPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, long location) in create() argument 37 return adoptRef(new WebGLUniformLocation(program, location)); in create() 40 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, long location) in WebGLUniformLocation() argument 41 : m_program(program) in WebGLUniformLocation()
|
D | WebGLUniformLocation.h | 42 static PassRefPtr<WebGLUniformLocation> create(WebGLProgram* program, long location); 44 WebGLProgram* program() const { return m_program.get(); } in program() function 49 WebGLUniformLocation(WebGLProgram* program, long location);
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | GraphicsContext3DMac.cpp | 246 void GraphicsContext3D::attachShader(WebGLProgram* program, WebGLShader* shader) in attachShader() argument 248 ASSERT(program); in attachShader() 251 ::glAttachShader((GLuint) program->object(), (GLuint) shader->object()); in attachShader() 254 void GraphicsContext3D::bindAttribLocation(WebGLProgram* program, unsigned long index, const String… in bindAttribLocation() argument 256 ASSERT(program); in bindAttribLocation() 258 ::glBindAttribLocation((GLuint) program->object(), index, name.utf8().data()); in bindAttribLocation() 420 void GraphicsContext3D::detachShader(WebGLProgram* program, WebGLShader* shader) in detachShader() argument 422 ASSERT(program); in detachShader() 425 ::glDetachShader((GLuint) program->object(), (GLuint) shader->object()); in detachShader() 500 bool GraphicsContext3D::getActiveAttrib(WebGLProgram* program, unsigned long index, ActiveInfo& inf… in getActiveAttrib() argument [all …]
|
/external/expat/conftools/ |
D | PrintPath | 91 for program in $programs 95 if [ $test_exec_flag $path/${program}${ext} ] && \ 96 [ ! -d $path/${program}${ext} ]; then 98 echo $path/${program}${ext} 105 if [ $test_exec_flag $path/${program} ] && \ 106 [ ! -d $path/${program} ]; then 108 echo $path/${program}
|
/external/bison/djgpp/ |
D | subpipe.c | 172 char *program; in end_of_output_subpipe() local 179 program = strrchr(arguments[0], '/'); in end_of_output_subpipe() 180 if (program) in end_of_output_subpipe() 181 program++; in end_of_output_subpipe() 183 program = arguments[0]; in end_of_output_subpipe() 220 status = spawnvp(P_WAIT, program, arguments); in end_of_output_subpipe() 226 error(EXIT_FAILURE, 0, _("subsidiary program `%s' interrupted"), program); in end_of_output_subpipe() 236 : "subsidiary program `%s' failed (status=%i, errno=%i)"), program, status, errno); in end_of_output_subpipe() 269 reap_subpipe(pid_t pid, char const *program) in reap_subpipe() argument
|
/external/fdlibm/ |
D | configure | 471 -program-prefix | --program-prefix | --program-prefi | --program-pref \ 472 | --program-pre | --program-pr | --program-p) 474 -program-prefix=* | --program-prefix=* | --program-prefi=* \ 475 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) 478 -program-suffix | --program-suffix | --program-suffi | --program-suff \ 479 | --program-suf | --program-su | --program-s) 481 -program-suffix=* | --program-suffix=* | --program-suffi=* \ 482 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) 485 -program-transform-name | --program-transform-name \ 486 | --program-transform-nam | --program-transform-na \ [all …]
|
/external/webkit/JavaScriptCore/runtime/ |
D | Completion.cpp | 41 RefPtr<ProgramExecutable> program = ProgramExecutable::create(exec, source); in checkSyntax() local 42 JSObject* error = program->checkSyntax(exec); in checkSyntax() 54 RefPtr<ProgramExecutable> program = ProgramExecutable::create(exec, source); in evaluate() local 55 JSObject* error = program->compile(exec, scopeChain.node()); in evaluate() 62 …JSValue result = exec->interpreter()->execute(program.get(), exec, scopeChain.node(), thisObj, &ex… in evaluate()
|
D | FunctionConstructor.cpp | 76 UString program; in constructFunction() local 78 program = "(function() { \n})"; in constructFunction() 80 program = makeString("(function() { ", args.at(0).toString(exec), "\n})"); in constructFunction() 92 program = builder.build(); in constructFunction() 97 SourceCode source = makeSource(program, sourceURL, lineNumber); in constructFunction()
|
/external/chromium/base/ |
D | command_line.cc | 104 CommandLine::CommandLine(const FilePath& program) { in CommandLine() argument 105 if (!program.empty()) { in CommandLine() 106 program_ = program.value(); in CommandLine() 107 command_line_string_ = L'"' + program.value() + L'"'; in CommandLine() 149 CommandLine::CommandLine(const FilePath& program) { in CommandLine() argument 150 argv_.push_back(program.value()); in CommandLine() 290 std::wstring CommandLine::program() const { in program() function in CommandLine 300 std::wstring CommandLine::program() const { in program() function in CommandLine 377 DCHECK(include_program ? !other.program().empty() : other.program().empty()); in AppendArguments() 416 DCHECK(include_program ? !other.program().empty() : other.program().empty()); in AppendArguments()
|
/external/icu4c/test/perf/perldriver/ |
D | PerfFramework.pm | 64 my($locale, $iter, $data, $program, $args, $variable); 116 my $program; 121 ($program, @argsAndTest) = split(/\ /, @{ $tests{$i} }[$j]); 125 $commandLine = "$program -i $ITERATIONS -p $NUMPASSES $locAndData @argsAndTest"; 127 $commandLine = "$program -t $TIME -p $NUMPASSES $locAndData @argsAndTest"; 131 store("$i, $program @argsAndTest", @res);
|
/external/chromium/third_party/icu/source/test/perf/perldriver/ |
D | PerfFramework.pm | 64 my($locale, $iter, $data, $program, $args, $variable); 116 my $program; 121 ($program, @argsAndTest) = split(/\ /, @{ $tests{$i} }[$j]); 125 $commandLine = "$program -i $ITERATIONS -p $NUMPASSES $locAndData @argsAndTest"; 127 $commandLine = "$program -t $TIME -p $NUMPASSES $locAndData @argsAndTest"; 131 store("$i, $program @argsAndTest", @res);
|
/external/webkit/WebKit/chromium/src/ |
D | GraphicsContext3D.cpp | 1265 void GraphicsContext3D::deleteProgram(unsigned program) in deleteProgram() argument 1268 glDeleteProgram(program); in deleteProgram() 1296 void GraphicsContext3D::bindAttribLocation(WebGLProgram* program, in GL_SAME_METHOD_2_X12() 1300 if (!program) in GL_SAME_METHOD_2_X12() 1303 glBindAttribLocation(EXTRACT(program), index, name.utf8().data()); in GL_SAME_METHOD_2_X12() 1398 void GraphicsContext3D::detachShader(WebGLProgram* program, WebGLShader* shader) in GL_SAME_METHOD_1() 1400 if (!program || !shader) in GL_SAME_METHOD_1() 1404 glDetachShader(EXTRACT(program), EXTRACT(shader)); in GL_SAME_METHOD_1() 1490 bool GraphicsContext3D::getActiveAttrib(WebGLProgram* program, unsigned long index, ActiveInfo& inf… in getActiveAttrib() argument 1492 if (!program) { in getActiveAttrib() [all …]
|
/external/grub/ |
D | aclocal.m4 | 9 # This program is distributed in the hope that it will be useful, 18 # This program is free software; you can redistribute it and/or modify 23 # This program is distributed in the hope that it will be useful, 29 # along with this program; if not, write to the Free Software 49 # This program is free software; you can redistribute it and/or modify 54 # This program is distributed in the hope that it will be useful, 60 # along with this program; if not, write to the Free Software 113 # This program is free software; you can redistribute it and/or modify 118 # This program is distributed in the hope that it will be useful, 124 # along with this program; if not, write to the Free Software [all …]
|
D | COPYING | 16 Foundation's software and to any other program whose authors commit to 33 For example, if you distribute copies of such a program, whether 50 Finally, any free program is threatened constantly by software 52 program will individually obtain patent licenses, in effect making the 53 program proprietary. To prevent this, we have made it clear that any 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 103 c) If the modified program normally reads commands interactively 108 a warranty) and that users may redistribute the program under 152 received the program in object code or executable form with such [all …]
|
/external/elfutils/ |
D | aclocal.m4 | 9 # This program is distributed in the hope that it will be useful, 18 # This program is free software; you can redistribute it and/or modify 23 # This program is distributed in the hope that it will be useful, 29 # along with this program; if not, write to the Free Software 49 # This program is free software; you can redistribute it and/or modify 54 # This program is distributed in the hope that it will be useful, 60 # along with this program; if not, write to the Free Software 113 # This program is free software; you can redistribute it and/or modify 118 # This program is distributed in the hope that it will be useful, 124 # along with this program; if not, write to the Free Software [all …]
|
/external/bison/m4/ |
D | c-working.m4 | 5 # This program is free software; you can redistribute it and/or modify 10 # This program is distributed in the hope that it will be useful, 16 # along with this program; if not, write to the Free Software 28 [AC_MSG_FAILURE([cannot compile a simple C program])])
|
/external/jpeg/ |
D | configure | 637 echo "configure: failed program was:" >&5 707 echo "configure: failed program was:" >&5 724 echo "configure: failed program was:" >&5 768 echo "configure: failed program was:" >&5 808 echo "configure: failed program was:" >&5 844 echo "configure: failed program was:" >&5 880 echo "configure: failed program was:" >&5 926 echo "configure: failed program was:" >&5 953 echo "configure: failed program was:" >&5 1010 echo "configure: failed program was:" >&5 [all …]
|
D | filelist.doc | 41 be included by an application program. (cjpeg/djpeg/etc do use jinclude.h, 50 an application program: 52 jcapimin.c Application program interface: core routines for compression. 53 jcapistd.c Application program interface: standard compression. 54 jdapimin.c Application program interface: core routines for decompression. 55 jdapistd.c Application program interface: standard decompression. 56 jcomapi.c Application program interface routines common to compression 115 jmemname.c Makes temporary files with program-generated file names. 143 cjpeg.c Main program for cjpeg. 144 djpeg.c Main program for djpeg. [all …]
|
/external/bluetooth/glib/ |
D | acinclude.m4 | 161 # check for the xmlcatalog program 199 dnl Public License, this file may be distributed as part of a program 201 dnl the same distribution terms as the rest of that program. 220 dnl Public License, this file may be distributed as part of a program 222 dnl the same distribution terms as the rest of that program. 247 dnl Public License, this file may be distributed as part of a program 249 dnl the same distribution terms as the rest of that program. 280 dnl Public License, this file may be distributed as part of a program 282 dnl the same distribution terms as the rest of that program. 304 dnl Public License, this file may be distributed as part of a program [all …]
|
/external/chromium/third_party/icu/source/data/brkitr/ |
D | cjdict.txt | 146 The program was produced on an experimental basis in the course of the 149 program is provided without any warranty whatsoever, whether express, 153 the program and the nonexistence of any infringement or violation of 156 Each user of the program will agree and understand, and be deemed to 158 the program and, accordingly, the entire risk arising from or 159 otherwise connected with the program is assumed by the user. 163 development of the program and their respective officials, directors, 167 with the use or inability to use the program or any product, material 168 or result produced or otherwise obtained by using the program, 172 foregoing by his or her commencement of use of the program. The term [all …]
|
/external/webkit/WebCore/inspector/front-end/ |
D | textViewer.css | 85 background-image: -webkit-canvas(program-counter); 100 background-image: -webkit-canvas(breakpoint-program-counter); 105 background-image: -webkit-canvas(breakpoint-disabled-program-counter); 120 background-image: -webkit-canvas(breakpoint-conditional-program-counter); 125 background-image: -webkit-canvas(breakpoint-disabled-conditional-program-counter);
|
/external/qemu/ |
D | COPYING | 16 Foundation's software and to any other program whose authors commit to 33 For example, if you distribute copies of such a program, whether 50 Finally, any free program is threatened constantly by software 52 program will individually obtain patent licenses, in effect making the 53 program proprietary. To prevent this, we have made it clear that any 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 103 c) If the modified program normally reads commands interactively 108 a warranty) and that users may redistribute the program under 152 received the program in object code or executable form with such [all …]
|
/external/wpa_supplicant/ |
D | COPYING | 16 Foundation's software and to any other program whose authors commit to 33 For example, if you distribute copies of such a program, whether 50 Finally, any free program is threatened constantly by software 52 program will individually obtain patent licenses, in effect making the 53 program proprietary. To prevent this, we have made it clear that any 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 103 c) If the modified program normally reads commands interactively 108 a warranty) and that users may redistribute the program under 152 received the program in object code or executable form with such [all …]
|