HomeSort by relevance Sort by last modified time
    Searched refs:getVariable (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /external/doclava/src/com/google/doclava/
Resolution.java 25 * Public accessors {@link Resolution#getVariable()} and {@link Resolution#getValue()} exist to
58 public String getVariable() {
AnnotationValueInfo.java 119 } else if ("element".equals(resolution.getVariable())) {
  /external/deqp/framework/randomshaders/
rsgProgramGenerator.cpp 78 if ((*i)->getVariable()->getType().isSampler())
84 if ((*i)->getVariable()->getType().isSampler())
92 if (input->getVariable()->getType().isSampler())
rsgShaderGenerator.cpp 86 if (deStringEqual(entry->getVariable()->getName(), name))
101 const Variable* outVar = entry->getVariable();
120 createAssignment(shader.getMain().getBody(), entry->getVariable(), inVar);
130 Variable* inColorVariable = state.getVariableManager().allocate(fragColorEntry->getVariable()->getType(), Variable::STORAGE_SHADER_IN, "v_color");
133 createAssignment(shader.getMain().getBody(), fragColorEntry->getVariable(), inColorVariable);
166 if (!(*i)->getVariable()->getType().isSampler()) // Samplers are assigned at program-level.
197 Variable* variable = m_state.getVariableManager().allocate(input->getVariable()->getType(), Variable::STORAGE_SHADER_OUT, input->getVariable()->getName());
rsgProgramExecutor.cpp 230 execCtx.getValue(uniformIter->getVariable()) = uniformIter->getValue().value();
241 ExecValueAccess access = execCtx.getValue(input->getVariable());
283 execCtx.getValue(i->getVariable()) = i->getValue().value();
317 ExecValueAccess access = execCtx.getValue(input->getVariable());
318 const VariableType& type = input->getVariable()->getType();
319 const VaryingStorage* src = varyingStore.getStorage(type, input->getVariable()->getName());
rsgShader.hpp 70 const Variable* getVariable (void) const { return m_variable; }
rsgVariableManager.hpp 49 const Variable* getVariable (void) const { return m_variable; }
304 switch (entry->getVariable()->getStorage())
327 return entry->getVariable()->getStorage() == Storage;
rsgVariableManager.cpp 185 return entry->getVariable() == m_variable;
448 oldValues[(*valueIter)->getVariable()] = *valueIter;
461 const Variable* var = entry->getVariable();
496 const Variable* var = oldEntry->getVariable();
  /external/smack/src/org/jivesoftware/smackx/
ReportedData.java 74 columns.add(new Column(field.getLabel(), field.getVariable(), field.getType()));
89 fieldList.add(new Field(field.getVariable(), values));
214 public String getVariable() {
237 if (variable.equalsIgnoreCase(field.getVariable())) {
268 public String getVariable() {
Form.java 383 if (variable.equals(field.getVariable())) {
532 if (field.getVariable() != null) {
533 FormField newField = new FormField(field.getVariable());
544 form.setAnswer(field.getVariable(), values);
FormField.java 163 public String getVariable() {
276 if (getVariable() != null) {
277 buf.append(" var=\"").append(getVariable()).append("\"");
  /external/javassist/src/main/javassist/compiler/ast/
MethodDecl.java 28 Symbol sym = getReturn().getVariable();
  /external/deqp/modules/glshared/
glsRandomShaderCase.hpp 52 const char* getName (void) const { return m_input->getVariable()->getName(); }
53 int getNumComponents (void) const { return m_input->getVariable()->getType().getNumElements(); }
glsRandomShaderProgram.cpp 78 decl << sglr::pdec::VertexAttribute(vertexInput->getVariable()->getName(), mapToGenericVecType(vertexInput->getVariable()->getType()));
84 decl << sglr::pdec::VertexToFragmentVarying(mapToGenericVecType(fragInput->getVariable()->getType()));
90 decl << sglr::pdec::Uniform(uniform->getVariable()->getName(), mapToBasicType(uniform->getVariable()->getType()));
148 const rsg::Variable* vertexOutput = findShaderOutputByName(vertexShader, fragInput->getVariable()->getName());
161 const rsg::Variable* uniformVar = m_unifiedUniforms[uniformNdx]->getVariable();
183 const rsg::Variable* attribVar = m_vertexShader.getInputs()[attribNdx]->getVariable();
262 const rsg::Variable* var = m_fragmentShader.getInputs()[varNdx]->getVariable();
glsRandomShaderCase.cpp 76 , m_vertices (input->getVariable()->getType().getNumElements() * numVertices)
153 int numComponents = input->getVariable()->getType().getNumElements();
155 bool isPosition = string(input->getVariable()->getName()) == "dEQP_Position";
157 TCU_CHECK(input->getVariable()->getType().getBaseType() == rsg::VariableType::TYPE_FLOAT);
216 const rsg::VariableType& type = uniformIter->getVariable()->getType();
445 GLint location = glGetUniformLocation(program.getProgram(), uniformIter->getVariable()->getName());
447 log << tcu::TestLog::Message << "uniform[" << location << "]: " << uniformIter->getVariable()->getName() << " = " << uniformIter->getValue() << tcu::TestLog::EndMessage;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
SmartCamera.java 93 mGraph.getVariable("gallerySource").setValue(filePath + "/" + fileName);
95 mGraph.getVariable("imageName").setValue(fileName);
96 mGraph.getVariable("filePath").setValue(filePath); // wrong
113 mGraph.getVariable("startCapture").setValue(false);
202 mGraph.getVariable("startCapture").setValue(true);
206 boolean tmp = (Boolean) mGraph.getVariable("startCapture").getValue();
228 mGraph.getVariable("startCapture").setValue(false);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DepthFirstAdapter.java 227 if(node.getVariable() != null)
229 node.getVariable().apply(this);
256 if(node.getVariable() != null)
258 node.getVariable().apply(this);
339 if(node.getVariable() != null)
341 node.getVariable().apply(this);
372 if(node.getVariable() != null)
374 node.getVariable().apply(this);
405 if(node.getVariable() != null)
407 node.getVariable().apply(this)
    [all...]
ReversedDepthFirstAdapter.java 228 if(node.getVariable() != null)
230 node.getVariable().apply(this);
253 if(node.getVariable() != null)
255 node.getVariable().apply(this);
344 if(node.getVariable() != null)
346 node.getVariable().apply(this);
377 if(node.getVariable() != null)
379 node.getVariable().apply(this);
414 if(node.getVariable() != null)
416 node.getVariable().apply(this)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AVariableExpression.java 37 public PVariable getVariable()
ANameCommand.java 67 public PVariable getVariable()
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 94 DIVariable Var(DDI->getVariable());
102 DIVariable Var(DVI->getVariable());
  /external/smack/src/org/jivesoftware/smackx/search/
SimpleUserSearch.java 72 String name = field.getVariable();
128 if (column.getVariable().equals(name)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
NdkEnvSupplier.java 108 public IBuildEnvironmentVariable getVariable(String variableName,
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
TemplateInterpreter.java 206 String variableName = variableLocator.getVariableName(node.getVariable());
231 String variableName = variableLocator.getVariableName(node.getVariable());
294 String withVar = variableLocator.getVariableName(node.getVariable());
324 loop(node.getVariable(), 0, end, 1, node.getCommand());
341 loop(node.getVariable(), start, end, 1, node.getCommand());
365 loop(node.getVariable(), start, end, incr, node.getCommand());
381 each(node.getVariable(), variableValue.getName(), parent, node.getCommand());
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 82 VarDecl *var = I.getVariable();

Completed in 980 milliseconds

1 2 3 4 5