/frameworks/base/libs/hwui/ |
Caches.h | 173 void setProgram(Program* program); 176 Program& program() { return *mProgram; } function in class:android::uirenderer::Caches 202 Program* mProgram = nullptr; // note: object owned by ProgramCache
|
Glop.h | 22 #include "Program.h" 34 class Program; 119 Program* program; member in struct:android::uirenderer::Glop::Fill
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
ProgramCache.h | 31 class Program; 43 * Key is used to retrieve a Program in the cache. 110 // useProgram lookup a suitable program in the cache or generates one 119 // generates a program from the Key 120 static Program* generateProgram(const Key& needs); 128 DefaultKeyedVector<Key, Program*> mCache;
|
/packages/apps/TV/src/com/android/tv/recommendation/ |
ChannelRecord.java | 24 import com.android.tv.data.Program; 36 private Program mCurrentProgram; 70 public Program getCurrentProgram() { 92 WatchedProgram program = mWatchHistory.poll(); local 93 mTotalWatchDurationMs -= program.getWatchedDurationMs();
|
RoutineWatchEvaluator.java | 23 import com.android.tv.data.Program; 49 Program currentProgram = cr.getCurrentProgram(); 59 Program watchedProgram = watchHistory[watchHistory.length - 1].getProgram(); 95 private static double calculateRoutineWatchScore(Program currentProgram, Program watchedProgram, 152 private static double calculateTimeMatchScore(Program p1, Program p2) { 191 private static double calculateWatchDurationScore(Program program, long durationMs) { 193 / (program.getEndTimeUtcMillis() - program.getStartTimeUtcMillis()) [all...] |
/cts/tests/openglperf2/jni/graphics/ |
SceneGraphNode.cpp | 26 void SceneGraphNode::draw(Program& program, Matrix& model, Matrix& view, Matrix& projection) { 27 before(program, model, view, projection); 29 mChildren[i]->draw(program, model, view, projection); 31 after(program, model, view, projection);
|
PerspectiveMeshNode.cpp | 23 void PerspectiveMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { 24 PerspectiveProgram& prog = (PerspectiveProgram&) program; 64 void PerspectiveMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
|
/cts/tests/openglperf2/jni/primitive/fullpipeline/ |
FullPipelineRenderer.h | 31 Program* mProgram;
|
/external/ceres-solver/internal/ceres/ |
evaluator.cc | 52 Program* program, 59 program); 66 program); 72 options, program); 76 program);
|
dense_jacobian_writer.h | 39 #include "ceres/program.h" 50 Program* program) 51 : program_(program) { 105 Program* program_;
|
/external/deqp/framework/referencerenderer/ |
rrRenderer.hpp | 4 * drawElements Quality Program Reference Renderer 62 struct Program 64 Program (const VertexShader* vertexShader_, const FragmentShader* fragmentShader_, const GeometryShader* geometryShader_ = DE_NULL) 112 DrawCommand (const RenderState& state_, const RenderTarget& renderTarget_, const Program& program_, int numVertexAttribs_, const VertexAttrib* vertexAttribs_, const PrimitiveList& primitives_) 115 , program (program_) 124 const Program& program; member in class:rr::DrawCommand
|
/external/libchrome/sandbox/linux/seccomp-bpf/ |
sandbox_bpf.h | 97 // Assembles a BPF filter program from the current policy. After calling this 99 CodeGen::Program AssembleFilter();
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
ImageCombineFilter.java | 24 import android.filterfw.core.Program; 34 protected Program mProgram; 93 // Make sure we have a program 122 throw new RuntimeException("Could not create a program for image filter " 130 protected abstract Program getNativeProgram(FilterContext context); 132 protected abstract Program getShaderProgram(FilterContext context);
|
CrossProcessFilter.java | 24 import android.filterfw.core.Program; 33 private Program mProgram; 107 // Create program if not created already
|
NegativeFilter.java | 24 import android.filterfw.core.Program; 34 private Program mProgram; 85 // Create program if not created already
|
/packages/apps/TV/src/com/android/tv/ |
TimeShiftManager.java | 36 import com.android.tv.data.Program; 117 * this threshold from the program start time, the play position moves to the start of the 118 * previous program. 119 * Otherwise, the play position moves to the start of the current program. 167 private Program mCurrentProgram; 308 * Jumps to the start of the current program. 310 * (={@link #PROGRAM_START_TIME_THRESHOLD})from the start time of the program, it goes to 311 * the start of the previous program if exists. 320 Program program = mProgramManager.getProgramAt local 499 Program program = mProgramManager.getProgramAt(timeMs); local 874 Program program = mProgramDataManager.getCurrentProgram(channel.getId()); local 1029 Program program = mPrograms.get(i); local 1040 Program program = mPrograms.get(0); local 1101 Program program = mPrograms.get(mid); local 1120 Program program = mPrograms.get(i); local 1224 Program program = mPrograms.get(i); local [all...] |
/packages/apps/TV/src/com/android/tv/data/epg/ |
EpgFetcher.java | 42 import com.android.tv.data.Program; 165 List<Program> programs = new ArrayList<>(epgReader.getPrograms(channel.getId())); 190 private void updateEpg(long channelId, List<Program> newPrograms) { 197 List<Program> oldPrograms = queryPrograms(mContext.getContentResolver(), channelId, 199 Program currentOldProgram = oldPrograms.size() > 0 ? oldPrograms.get(0) : null; 205 for (Program program : newPrograms) { 206 if (program.getEndTimeUtcMillis() > oldStartTimeUtcMillis) { 213 // or insert new program if there is no matching program in the database [all...] |
/cts/tests/openglperf2/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/llvm/include/llvm/Support/ |
Program.h | 1 //===- llvm/Support/Program.h ------------------------------------*- C++ -*-===// 10 // This file declares the llvm::sys::Program class. 78 /// This function executes the program using the arguments provided. The 79 /// invoked program will inherit the stdin, stdout, and stderr file 81 /// invoking program. 82 /// This function waits for the program to finish, so should be avoided in 85 /// @returns an integer result code indicating the status of the program. 86 /// A zero or positive value indicates the result code of the program. 90 StringRef Program, ///< Path of the program to be executed. It i [all...] |
/external/llvm/tools/bugpoint/ |
BugDriver.h | 51 Module *Program; // The raw program, linked together 53 AbstractInterpreter *Interpreter; // How to run the program 110 /// miscompiles Program as input. It tries to reduce the testcase to 111 /// something that smaller that still miscompiles the program. 139 Module *getProgram() const { return Program; } 144 Module *OldProgram = Program; 145 Program = M; 159 /// setNewProgram - If we reduce or update the program somehow, call this 161 /// the specified one as the current program [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_rename_regs.c | 56 for(inst = c->Program.Instructions.Next; 57 inst != &c->Program.Instructions;
|
/external/opencv3/platforms/scripts/ |
cmake_winrt.cmd | 4 set msvc_path=C:\Program Files\Microsoft Visual Studio 11.0
|
/external/valgrind/gdbserver_tests/ |
mcmain_pic.stdoutB.exp | 9 Program exited normally.
|
/frameworks/av/cmds/screenrecord/ |
TextRenderer.h | 20 #include "Program.h" 71 void drawString(const Program& program, const float* texMatrix, 78 float drawWrappedString(const Program& texRender, float xpos, float ypos,
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/ |
win_asm.bat | 3 set ASM="D:\Program Files\Microsoft Visual Studio 8\VC\ce\bin\x86_arm\armasm"
|