/sdk/emulator/qtools/ |
stack_dump.cpp | 75 void Usage(const char *program) 78 program);
|
/system/core/sh/ |
mkinit.sh | 107 # The C program indented by an extra 6 chars using 147 echo " * This file was generated by the mkinit program."
|
/external/clang/utils/ |
token-delta.py | 215 def tokenBasedMultiDelta(program, files, log): 223 tbmd = TMBDDelta(program, tokenLists, log) 233 parser = OptionParser("%prog <test program> {files+}") 242 program,files = args[0],args[1:] 244 md = tokenBasedMultiDelta(program, files, log=opts.debugLevel)
|
/external/libmtp/ |
missing | 10 # This program is free software; you can redistribute it and/or modify 15 # This program is distributed in the hope that it will be useful, 21 # along with this program. If not, see <http://www.gnu.org/licenses/>. 24 # distribute this file as part of a program that contains a 26 # the same distribution terms that you use for the rest of that program. 49 # Try to run requested program, and just exit if it succeeds. 56 # we should proceed has if the program had been absent, or 66 $0 [OPTION]... PROGRAM [ARGUMENT]... 68 Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return a [all...] |
/external/libpng/ |
missing | 10 # This program is free software; you can redistribute it and/or modify 15 # This program is distributed in the hope that it will be useful, 21 # along with this program. If not, see <http://www.gnu.org/licenses/>. 24 # distribute this file as part of a program that contains a 26 # the same distribution terms that you use for the rest of that program. 49 # Try to run requested program, and just exit if it succeeds. 56 # we should proceed has if the program had been absent, or 66 $0 [OPTION]... PROGRAM [ARGUMENT]... 68 Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return a [all...] |
/external/llvm/utils/ |
llvm-compilers-check | 550 program = srcdir + "/configure" 551 if not is_executable(program): 552 self.logger.info("[" + prefix + "] Configure failed, cannot execute " + program) 555 args = [program] 561 program = find_executable("make") 562 if program is None: 565 if not is_executable(program): 568 args = [program]
|
/external/marisa-trie/ |
configure | 45 # Prefer a ksh shell builtin over an external printf program on Solaris, 951 -program-prefix | --program-prefix | --program-prefi | --program-pref \ 952 | --program-pre | --program-pr | --program-p) 954 -program-prefix=* | --program-prefix=* | --program-prefi=* [all...] |
/external/open-vcdiff/ |
missing | 10 # This program is free software; you can redistribute it and/or modify 15 # This program is distributed in the hope that it will be useful, 21 # along with this program. If not, see <http://www.gnu.org/licenses/>. 24 # distribute this file as part of a program that contains a 26 # the same distribution terms that you use for the rest of that program. 49 # Try to run requested program, and just exit if it succeeds. 56 # we should proceed has if the program had been absent, or 66 $0 [OPTION]... PROGRAM [ARGUMENT]... 68 Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return a [all...] |
/external/stressapptest/ |
configure | 45 # Prefer a ksh shell builtin over an external printf program on Solaris, 961 -program-prefix | --program-prefix | --program-prefi | --program-pref \ 962 | --program-pre | --program-pr | --program-p) 964 -program-prefix=* | --program-prefix=* | --program-prefi=* [all...] |
/external/v8/test/mjsunit/ |
compare-nan.js | 50 var program = 64 eval(program);
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
VertexShader.java | 95 item.program = mProgram;
|
/ndk/sources/host-tools/sed-4.2.1/build-aux/ |
missing | 10 # This program is free software; you can redistribute it and/or modify 15 # This program is distributed in the hope that it will be useful, 21 # along with this program. If not, see <http://www.gnu.org/licenses/>. 24 # distribute this file as part of a program that contains a 26 # the same distribution terms that you use for the rest of that program. 49 # Try to run requested program, and just exit if it succeeds. 56 # we should proceed has if the program had been absent, or 66 $0 [OPTION]... PROGRAM [ARGUMENT]... 68 Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return a [all...] |
/external/elfutils/ |
configure | 1008 -program-prefix | --program-prefix | --program-prefi | --program-pref \ 1009 | --program-pre | --program-pr | --program-p) 1011 -program-prefix=* | --program-prefix=* | --program-prefi=* [all...] |
/external/genext2fs/ |
configure | 933 -program-prefix | --program-prefix | --program-prefi | --program-pref \ 934 | --program-pre | --program-pr | --program-p) 936 -program-prefix=* | --program-prefix=* | --program-prefi=* [all...] |
/external/ceres-solver/internal/ceres/ |
gradient_checking_cost_function.cc | 45 #include "ceres/program.h" 248 Program* program = problem_impl->mutable_program(); local 252 const vector<ParameterBlock*>& parameter_blocks = program->parameter_blocks(); 269 const vector<ResidualBlock*>& residual_blocks = program->residual_blocks();
|
/external/clang/www/demo/ |
index.cgi | 154 Bitter Melon the cat says, paste a C/C++ program in the text box or upload 262 my ( $program, $commandline, $outputFile ) = @_; 272 barf("Program $program took too long, compile time limited for the web script, sorry!\n"); 275 print scalar dumpFile( "Output from $program", $outputFile ); 280 "$program exited with an error. Please correct source and resubmit.<p>\n" . 288 "Ouch, $program caught signal $sig. Sorry, better luck next time!\n"
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
ShaderProgram.h | 99 : program(-1) 106 : program(prog) 112 GLuint program; member in struct:WebCore::ShaderResource
|
/external/webkit/Tools/QtTestBrowser/ |
main.cpp | 168 QFileInfo program(args.at(0)); 170 if (program.exists()) 171 programName = program.baseName();
|
/frameworks/av/media/libstagefright/tests/ |
SurfaceMediaSource_test.cpp | 254 GLuint program = glCreateProgram(); local 256 if (program) { 257 glAttachShader(program, vertexShader); 259 glAttachShader(program, fragmentShader); 261 glLinkProgram(program); 263 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus); 266 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); 270 glGetProgramInfoLog(program, bufLength, NULL, buf); 271 printf("Program link log:\n%s\n", buf); 276 glDeleteProgram(program); [all...] |
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
ShaderProgram.java | 22 import android.filterfw.core.Program; 31 public class ShaderProgram extends Program { 73 ShaderProgram program = nativeCreateIdentity(getGLEnvironment(context)); local 74 program.setTimer(); 75 return program; 234 throw new RuntimeException("Could not prepare shader-program for drawing!");
|
/external/chromium/base/ |
command_line.cc | 132 // Push an empty argument, because we always assume argv_[0] is a program. 137 CommandLine::CommandLine(const FilePath& program) { 139 if (!program.empty()) { 140 program_ = program.value(); 142 command_line_string_ = L'"' + program.value() + L'"'; 145 argv_.push_back(program.value()); 411 // Skip the first arg when copying since it's the program but push all
|
/external/netperf/ |
netsh.c | 117 char *program; /* program invocation name */ variable 478 program = (char *)malloc(strlen(argv[0]) + 1); 479 if (program == NULL) { 483 strcpy(program, argv[0]); 990 printf("Program name: %s\n", program);
|
/frameworks/base/libs/hwui/ |
ProgramCache.cpp | 414 PROGRAM_LOGD("Clearing program cache"); 423 Program* ProgramCache::get(const ProgramDescription& description) { 426 // program for A8, unmodulated, texture w/o shader (black text/path textures) is equivalent 427 // to standard texture program (bitmaps, patches). Consider them equivalent. 432 Program* program = NULL; local 434 description.log("Could not find program"); 435 program = generateProgram(description, key); 436 mCache.add(key, program); 438 program = mCache.valueAt(index) [all...] |
/external/webkit/Source/WebCore/platform/graphics/opengl/ |
TextureMapperGL.cpp | 70 void glGetProgramInfoLog(GLuint program, GLsizei, GLsizei*, GLchar*); 148 LOG(Graphics, "Compiled program for texture mapper. Log: %s\n", infoLog); 260 if (TextureMapperGLData::shaderInfo.getUniformLocation(TextureMapperGLData::shaderInfo.prog##Program, TextureMapperGLData::shaderInfo.var##Variable, #var) < 0) \ 261 LOG_ERROR("Couldn't find variable "#var" in program "#prog"\n"); 263 #define TEXMAP_BUILD_SHADER(program) \ 264 TextureMapperGLData::shaderInfo.createShaderProgram(vertexShaderSource##program, fragmentShaderSource##program, TextureMapperGLData::shaderInfo.program##Program); 370 TextureMapperGLData::ShaderInfo::ShaderProgramIndex program; local [all...] |
/external/quake/ |
NOTICE | 4 This program is free software; you can redistribute it and/or 8 This program is distributed in the hope that it will be useful, 13 along with this program; if not, write to the Free Software 32 Foundation's software and to any other program whose authors commit to 49 For example, if you distribute copies of such a program, whether 66 Finally, any free program is threatened constantly by software 68 program will individually obtain patent licenses, in effect making the 69 program proprietary. To prevent this, we have made it clear that any 79 0. This License applies to any program or other work which contains 81 under the terms of this General Public License. The "Program", below [all...] |