/external/mockito/src/org/mockito/internal/reporting/ |
package.html | 3 ~ This program is made available under the terms of the MIT License.
|
/external/mockito/src/org/mockito/internal/runners/ |
package.html | 3 ~ This program is made available under the terms of the MIT License.
|
/external/mockito/src/org/mockito/internal/runners/util/ |
package.html | 3 ~ This program is made available under the terms of the MIT License.
|
/external/mockito/src/org/mockito/internal/util/ |
MockitoLogger.java | 3 * This program is made available under the terms of the MIT License.
|
/external/mockito/src/org/mockito/internal/verification/api/ |
VerificationInOrderMode.java | 3 * This program is made available under the terms of the MIT License.
|
package.html | 3 ~ This program is made available under the terms of the MIT License.
|
/external/mockito/src/org/mockito/invocation/ |
package.html | 3 ~ This program is made available under the terms of the MIT License.
|
/external/mockito/src/org/mockito/listeners/ |
package.html | 3 ~ This program is made available under the terms of the MIT License.
|
/external/mockito/src/org/mockito/ |
package.html | 3 ~ This program is made available under the terms of the MIT License.
|
/external/valgrind/main/cachegrind/tests/ |
chdir.c | 3 // Before the bug was fixed, if a program changed working directory, things
|
/development/samples/HelloEffects/src/com/example/android/mediafx/ |
GLToolbox.java | 52 int program = GLES20.glCreateProgram(); local 53 if (program != 0) { 54 GLES20.glAttachShader(program, vertexShader); 56 GLES20.glAttachShader(program, pixelShader); 58 GLES20.glLinkProgram(program); 60 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 63 String info = GLES20.glGetProgramInfoLog(program); 64 GLES20.glDeleteProgram(program); 65 program = 0; 66 throw new RuntimeException("Could not link program: " + info) [all...] |
/cts/suite/cts/deviceTests/opengl/jni/reference/scene/glowing/ |
BlurMeshNode.cpp | 23 void BlurMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { 24 int textureUniformHandle = glGetUniformLocation(program.mProgramId, "u_Texture"); 25 int scaleUniformHandle = glGetUniformLocation(program.mProgramId, "u_Scale"); 26 int positionHandle = glGetAttribLocation(program.mProgramId, "a_Position"); 27 int texCoordHandle = glGetAttribLocation(program.mProgramId, "a_TexCoordinate"); 55 void BlurMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
|
/external/chromium_org/gpu/command_buffer/client/ |
gles2_cmd_helper.h | 30 GLuint program, uint32 name_shm_id, uint32 name_shm_offset, 36 program, name_shm_id, name_shm_offset, location_shm_id, 42 GLuint program, uint32 name_bucket_id, 47 c->Init(program, name_bucket_id, location_shm_id, location_shm_offset); 52 GLuint program, uint32 name_shm_id, uint32 name_shm_offset, 58 program, name_shm_id, name_shm_offset, location_shm_id, 64 GLuint program, uint32 name_bucket_id, 69 c->Init(program, name_bucket_id, location_shm_id, location_shm_offset);
|
/external/chromium_org/tools/gyp/test/variables/latelate/src/ |
latelate.gyp | 17 'target_name': 'program', 29 'program.cc',
|
/external/chromium_org/tools/set_default_handler/ |
set_default_handler_main.cc | 5 // Makes a given program ("Google Chrome" by default) the default handler for 7 // overridden via the --program and --protocol command line switches. 21 const char kSwitchProgram[] = "program"; 48 string16 program(command_line->GetSwitchValueNative(kSwitchProgram)); 49 if (program.empty()) 50 program = kDefaultProgram; 55 result = controller.RunSynchronously(NULL, protocol, program, &choices); 60 printf("failed to set program. possible choices: %ls\n",
|
/external/chromium_org/win8/test/ |
open_with_dialog_controller.h | 19 // Asynchronously drives Windows 8's OpenWithDialog into making a given program 26 // possible choices if the desired program could not be selected. 33 // Starts the process of making |program| the default handler for 37 // Note: This will fail if |program| is already default for |url_protocol| 38 // since |program| will not show up verbatim in the dialog (e.g., in EN-US, it 42 const string16& program, 48 // if the desired program could not be selected. 51 const string16& program,
|
/external/llvm/utils/llvm-build/llvmbuild/ |
util.py | 5 program = os.path.basename(sys.argv[0]) 6 print >>sys.stderr, '%s: %s: %s' % (program, kind, message)
|
/external/chromium_org/chrome/browser/profile_resetter/ |
jtl_interpreter.h | 13 // Executes a JTL program on a given dictionary. 27 // values listed in |program|. 28 // |program| is a byte array containing a JTL program. 29 // |input| is a dictionary on which the program is evaluated. 31 const std::string& program,
|
/external/chromium_org/tools/gyp/test/actions/ |
gyptest-generated-header.py | 19 test.build('test.gyp', 'program', chdir=CHDIR) 20 test.up_to_date('test.gyp', 'program', chdir=CHDIR) 23 test.run_built_executable('program', chdir=CHDIR, stdout=expect) 32 test.build('test.gyp', 'program', chdir=CHDIR) 33 test.up_to_date('test.gyp', 'program', chdir=CHDIR) 36 test.run_built_executable('program', chdir=CHDIR, stdout=expect)
|
/external/ceres-solver/internal/ceres/ |
program.cc | 31 #include "ceres/program.h" 51 Program::Program() {} 53 Program::Program(const Program& program) 54 : parameter_blocks_(program.parameter_blocks_), 55 residual_blocks_(program.residual_blocks_) { 58 const vector<ParameterBlock*>& Program::parameter_blocks() const [all...] |
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/ |
GLSharedGroup.h | 119 bool isProgram(GLuint program); 120 bool isProgramInitialized(GLuint program); 121 void addProgramData(GLuint program); 122 void initProgramData(GLuint program, GLuint numIndexes); 123 void attachShader(GLuint program, GLuint shader); 124 void detachShader(GLuint program, GLuint shader); 125 void deleteProgramData(GLuint program); 126 void setProgramIndexInfo(GLuint program, GLuint index, GLint base, GLint size, GLenum type, const char* name); 127 GLenum getProgramUniformType(GLuint program, GLint location); 128 void setupLocationShiftWAR(GLuint program); [all...] |
/sdk/emulator/opengl/shared/OpenglCodecCommon/ |
GLSharedGroup.h | 119 bool isProgram(GLuint program); 120 bool isProgramInitialized(GLuint program); 121 void addProgramData(GLuint program); 122 void initProgramData(GLuint program, GLuint numIndexes); 123 void attachShader(GLuint program, GLuint shader); 124 void detachShader(GLuint program, GLuint shader); 125 void deleteProgramData(GLuint program); 126 void setProgramIndexInfo(GLuint program, GLuint index, GLint base, GLint size, GLenum type, const char* name); 127 GLenum getProgramUniformType(GLuint program, GLint location); 128 void setupLocationShiftWAR(GLuint program); [all...] |
/build/tools/droiddoc/templates-ds/assets/ |
GPL-LICENSE.txt | 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 64 under the terms of this General Public License. The "Program", below, 65 refers to any such program or work, and a "work based on the Program" 66 means either the Program or any derivative work under copyright law [all...] |
/build/tools/droiddoc/templates-sac/assets/ |
GPL-LICENSE.txt | 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 64 under the terms of this General Public License. The "Program", below, 65 refers to any such program or work, and a "work based on the Program" 66 means either the Program or any derivative work under copyright law [all...] |
/build/tools/droiddoc/templates-sdk/assets/ |
GPL-LICENSE.txt | 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 64 under the terms of this General Public License. The "Program", below, 65 refers to any such program or work, and a "work based on the Program" 66 means either the Program or any derivative work under copyright law [all...] |