/external/libcap-ng/libcap-ng-0.7/ |
compile | 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. 204 Usage: compile [--help] [--version] PROGRAM [ARGS] 207 Remove '-o dest.o' from ARGS, run PROGRAM with the remaining
|
/external/llvm/include/llvm-c/ |
Target.h | 75 /** LLVMInitializeAllTargetInfos - The main program should call this function if 84 /** LLVMInitializeAllTargets - The main program should call this function if it 93 /** LLVMInitializeAllTargetMCs - The main program should call this function if 102 /** LLVMInitializeAllAsmPrinters - The main program should call this function if 111 /** LLVMInitializeAllAsmParsers - The main program should call this function if 120 /** LLVMInitializeAllDisassemblers - The main program should call this function 130 /** LLVMInitializeNativeTarget - The main program should call this function to
|
/external/llvm/tools/bugpoint/ |
OptimizerDriver.cpp | 28 #include "llvm/Support/Program.h" 52 /// writeProgramToFile - This writes the current "Program" to the named bitcode 81 /// EmitProgressBitcode - This function is used to output the current Program 114 /// runPasses - Run the specified passes on Program, outputting a bitcode file 122 bool BugDriver::runPasses(Module *Program, 152 WriteBitcodeToFile(Program, InFile.os()); 260 << " on the input program!\n";
|
/external/protobuf/gtest/test/ |
gtest_output_test.py | 90 """Removes all file location info from a Google Test program's output. 93 test_output: the output of a Google Test program. 106 """Removes all stack traces from a Google Test program's output.""" 114 """Removes all traces of stack traces from a Google Test program's output.""" 121 """Removes all time information from a Google Test program's output.""" 127 """Removes test counts from a Google Test program's output.""" 141 """Removes output of specified tests from a Google Test program's output.
|
/frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/ |
RsRenderStatesRS.java | 24 import android.renderscript.Program.TextureType; 171 // Use stock the stock program store object 175 // Create a custom program store 248 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D); 264 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D); 279 pfbCustom.addTexture(Program.TextureType.TEXTURE_CUBE); 285 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
|
/packages/apps/Launcher2/res/values-lt/ |
strings.xml | 53 <string name="title_select_application" msgid="1793455815754848652">"Pasirinkite program?"</string> 73 <string name="cab_menu_delete_app" msgid="4089398025537640349">"Pa?alinti program?"</string> 75 <string name="cab_app_selection_text" msgid="6378522164293415735">"Pasirinkta program?: 1"</string> 94 <string name="apps_customize_apps_scroll_format" msgid="5494241912377704885">"Program? puslapis: %1$d i? %2$d"</string> 100 <string name="all_apps_cling_add_item" msgid="5665035103260318891">"Jei norite prie pagrindinio ekrano prid?ti program?, palieskite j? ir laikykite."</string> 102 <string name="folder_cling_move_item" msgid="270598675060435169">"Jei norite perkelti program?, palieskite j? ir laikykite."</string> 103 <string name="folder_cling_create_folder" msgid="8352867485656129478">"Jei pagrindiniame ekrane norite sukurti nauj? aplank?, u?d?kite vien? program? ant kitos."</string>
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
popen2.py | 43 will be passed directly to the program without shell intervention (as 144 program without shell intervention (as with os.spawnv()). If 'cmd' is a 154 program without shell intervention (as with os.spawnv()). If 'cmd' is a 164 program without shell intervention (as with os.spawnv()). If 'cmd' is a 174 program without shell intervention (as with os.spawnv()). If 'cmd' is a 184 program without shell intervention (as with os.spawnv()). If 'cmd' is a 194 program without shell intervention (as with os.spawnv()). If 'cmd' is a
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
popen2.py | 43 will be passed directly to the program without shell intervention (as 144 program without shell intervention (as with os.spawnv()). If 'cmd' is a 154 program without shell intervention (as with os.spawnv()). If 'cmd' is a 164 program without shell intervention (as with os.spawnv()). If 'cmd' is a 174 program without shell intervention (as with os.spawnv()). If 'cmd' is a 184 program without shell intervention (as with os.spawnv()). If 'cmd' is a 194 program without shell intervention (as with os.spawnv()). If 'cmd' is a
|
/frameworks/base/core/jni/ |
android_opengl_GLES20.cpp | 336 /* void glAttachShader ( GLuint program, GLuint shader ) */ 339 (JNIEnv *_env, jobject _this, jint program, jint shader) { 341 (GLuint)program, 346 /* void glBindAttribLocation ( GLuint program, GLuint index, const char *name ) */ 349 (JNIEnv *_env, jobject _this, jint program, jint index, jstring name) { 363 (GLuint)program, 914 /* void glDeleteProgram ( GLuint program ) */ 917 (JNIEnv *_env, jobject _this, jint program) { 919 (GLuint)program [all...] |
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/ |
graphics_3d.cc | 129 GLuint program = glCreateProgram(); local 130 glAttachShader(program, frag_shader); 131 glAttachShader(program, vert_shader); 132 glLinkProgram(program); 135 glGetProgramiv(program, GL_LINK_STATUS, &link_status); 137 // Program failed to link, let's see what the error is. 140 glGetProgramInfoLog(program, sizeof(buffer), &length, &buffer[0]); 141 fprintf(stderr, "Program failed to link: %s\n", buffer); 145 return program; 416 //set what program to us [all...] |
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/ |
cube.cc | 130 GLuint program = glCreateProgram(); local 131 glAttachShader(program, frag_shader); 132 glAttachShader(program, vert_shader); 133 glLinkProgram(program); 136 glGetProgramiv(program, GL_LINK_STATUS, &link_status); 138 // Program failed to link, let's see what the error is. 141 glGetProgramInfoLog(program, sizeof(buffer), &length, &buffer[0]); 142 fprintf(stderr, "Program failed to link: %s\n", buffer); 146 return program; 419 //set what program to us [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_wm.h | 38 #include "program/prog_instruction.h" 47 * program execution. These mainly relate to depth and stencil 72 GLbitfield proj_attrib_mask; /**< one bit per fragment program attribute */ 84 * brw_wm_value: A computed value or program input. Values are 86 * fragment program register is written or overwritten, new values are 90 * instruction or as a program output, that is tracked with an 100 * Fragment program registers: These are time-varying constructs that 102 * single fragment program register element (eg. temp[0].x) will be 104 * that temp[0].x is written to during the program. 207 GLuint computes_depth:1; /* could be derived from program string * [all...] |
brw_context.h | 70 * MRF registers. All program output is via these messages. URB 261 /** Subclass of Mesa vertex program */ 263 struct gl_vertex_program program; member in struct:brw_vertex_program 269 /** Subclass of Mesa fragment program */ 271 struct gl_fragment_program program; member in struct:brw_fragment_program 288 /* Data about a particular attempt to compile a program. Note that 796 /* Active vertex program: 899 /** Offset in the program cache to the VS program */ 931 /** Offset in the program cache to the CLIP program pre-gen6 * [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
program_parse.y | 30 #include "program/program.h" 31 #include "program/prog_parameter.h" 32 #include "program/prog_parameter_layout.h" 33 #include "program/prog_statevars.h" 34 #include "program/prog_instruction.h" 36 #include "program/symbol_table.h" 37 #include "program/program_parser.h" 181 %token PALETTE PARAMS PLANE POINT_TOK POINTSIZE POSITION PRIMARY PROGRAM PROJECTION 278 program: language optionSequence statementSequence EN label [all...] |
/external/chromium_org/tools/resources/ |
optimize-png-files.sh | 321 local program=$1 323 which $program > /dev/null 2>&1 326 echo "Couldn't find $program. " \ 330 read -p "Couldn't find $program. Do you want to install? (y/n)" 338 local program=$1 340 which $program > /dev/null 2>&1 342 echo "Couldn't find $program. Please download and install it from $url ." 348 local program=$(basename $0) 350 "Usage: $program [options] dir ... 352 $program is a utility to reduce the size of png files by removin [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_wm.h | 38 #include "program/prog_instruction.h" 47 * program execution. These mainly relate to depth and stencil 72 GLbitfield proj_attrib_mask; /**< one bit per fragment program attribute */ 84 * brw_wm_value: A computed value or program input. Values are 86 * fragment program register is written or overwritten, new values are 90 * instruction or as a program output, that is tracked with an 100 * Fragment program registers: These are time-varying constructs that 102 * single fragment program register element (eg. temp[0].x) will be 104 * that temp[0].x is written to during the program. 207 GLuint computes_depth:1; /* could be derived from program string * [all...] |
/external/mesa3d/src/mesa/program/ |
program_parse.y | 30 #include "program/program.h" 31 #include "program/prog_parameter.h" 32 #include "program/prog_parameter_layout.h" 33 #include "program/prog_statevars.h" 34 #include "program/prog_instruction.h" 36 #include "program/symbol_table.h" 37 #include "program/program_parser.h" 181 %token PALETTE PARAMS PLANE POINT_TOK POINTSIZE POSITION PRIMARY PROGRAM PROJECTION 278 program: language optionSequence statementSequence EN label [all...] |
/external/v8/samples/ |
lineprocessor.cc | 30 // You may trace its usages in source text to see what parts of program 48 * This sample program should demonstrate certain aspects of debugging 51 * The program reads input stream, processes it line by line and print 55 * The main cycle of the program will sequentially read lines from standard 59 * 1. The main cycle is on C++ side. Program should be run with 69 * 2. The main cycle is in JavaScript. Program should be run with 84 * When run with "-p" argument, the program starts V8 Debugger Agent and 89 * Normally the program compiles custom script and immediately runs it. 91 * run this sample program with "--wait-for-connection" command line parameter. 97 * respond only when V8 is running some script. In particular, when this program [all...] |
/external/bison/build-aux/ |
gnu-web-doc-update | 14 # This program is free software: you can redistribute it and/or modify 19 # This program is distributed in the hope that it will be useful, 25 # along with this program. If not, see <http://www.gnu.org/licenses/>. 65 # Search for a required program. Use the value of ENVVAR, if set, 67 # supports --version). If found, set ENVVAR to the program name,
|
mdate-sh | 9 # This program is free software; you can redistribute it and/or modify 14 # This program is distributed in the hope that it will be useful, 20 # along with this program. If not, see <http://www.gnu.org/licenses/>. 23 # distribute this file as part of a program that contains a 25 # the same distribution terms that you use for the rest of that program.
|
/external/bison/lib/ |
w32spawn.h | 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, see <http://www.gnu.org/licenses/>. */ 124 - Cygwin programs, when invoked from a Cygwin program. 143 script, not a program.
|
/external/chromium_org/chrome/common/mac/ |
mock_launchd.cc | 149 CFStringRef program = CFSTR(LAUNCH_JOBKEY_PROGRAM); local 151 const void *keys[] = { program, program_pid }; 169 CFStringRef program = CFSTR(LAUNCH_JOBKEY_PROGRAM); local 178 const void *keys[] = { program, program_args }; 242 const void *keys[] = { program, program_args, socket_key };
|
/external/chromium_org/third_party/angle/samples/gles2_book/MipMap2D/ |
MipMap2D.c | 21 // Handle to a program object 211 // Initialize the shader and program object 237 // Load the shaders and get a linked program object 280 // Use the program object 323 // Delete program object
|
/external/chromium_org/third_party/angle/samples/gles2_book/MultipleRenderTargets/ |
MultipleRenderTargets.c | 27 // Handle to a program object 88 // Initialize the shader and program object 138 // Load the shaders and get a linked program object 207 // Use the program object 268 // Delete program object
|
/external/chromium_org/third_party/angle/samples/gles2_book/Stencil_Test/ |
Stencil_Test.c | 21 // Handle to a program object 33 // Initialize the shader and program object 53 // Load the shaders and get a linked program object 143 // Use the program object 249 // Delete program object
|