HomeSort by relevance Sort by last modified time
    Searched full:vartype (Results 1 - 25 of 45) sorted by null

1 2

  /frameworks/rs/
spec.h 20 } VarType;
22 extern VarType *currType;
31 VarType ret;
32 VarType params[16];
rsg_generator.c 23 void printVarType(FILE *f, const VarType *vt) {
58 void printVarTypeAndName(FILE *f, const VarType *vt) {
164 const VarType *vt = &api->params[ct];
218 const VarType *vt = &api->params[ct2];
231 const VarType *vt = &api->params[ct2];
252 const VarType *vt = &api->params[ct2];
305 const VarType *vt = &api->params[ct2];
313 const VarType *vt = &api->params[ct2];
321 const VarType *vt = &api->params[ct2];
331 const VarType *vt = &api->params[ct2]
    [all...]
spec.l 16 VarType *currType = 0;
24 VarType *baseType = currType;
  /sdk/emulator/opengl/host/tools/emugen/
Var.h 19 #include "VarType.h"
42 const VarType * vartype,
48 m_type(const_cast<VarType *>(vartype)),
59 void init(const std::string name, const VarType * vartype,
65 m_type = vartype;
76 const VarType * type() const { return m_type; }
98 const VarType * m_type
    [all...]
TypeFactory.h 20 #include "VarType.h"
30 const VarType * getVarTypeByName(const std::string &type);
VarType.h 50 class VarType {
52 VarType() :
57 VarType(size_t id, const std::string & name, const VarConverter * converter, const std::string & printFormat , const bool isPointer) :
62 ~VarType()
TypeFactory.cpp 17 #include "VarType.h"
32 typedef std::map<std::string, VarType> TypeMap;
52 g_varMap.insert(std::pair<std::string, VarType>(name, VarType(g_typeId++, name, &g_var##size , printformat , ispointer)));
136 g_varMap.insert(std::pair<std::string, VarType>(name, VarType(g_typeId++, name, v ,printString,isPointer)));
138 g_varMap.insert(std::pair<std::string, VarType>(constName, VarType(g_typeId++, constName, v ,printString,isPointer))); //add a const type
145 const VarType * TypeFactory::getVarTypeByName(const std::string & type)
EntryPoint.cpp 41 bool parseTypeField(const std::string & f, std::string *vartype, std::string *varname)
47 *vartype = "";
61 *vartype = "const ";
64 *vartype += str;
73 (*vartype) += "*";
79 (*vartype) += "*";
117 const VarType *theType = TypeFactory::instance()->getVarTypeByName(retTypeName);
132 std::string vartype, varname; local
133 if (!parseTypeField(field, &vartype, &varname)) {
138 const VarType *v = TypeFactory::instance()->getVarTypeByName(vartype)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
Uniform.java 59 protected VarType varType;
73 oc.write(varType, "varType", null);
75 switch (varType){
120 varType = ic.readEnum("varType", VarType.class, null);
122 switch (varType){
167 if (varType != null)
    [all...]
VarType.java 35 public enum VarType {
65 VarType(){
68 VarType(boolean multiData, boolean textureType){
  /external/javassist/src/main/javassist/compiler/ast/
Declarator.java 25 protected int varType;
32 varType = type;
40 varType = CLASS;
51 varType = type;
60 Declarator d = new Declarator(this.varType, this.arrayDim + dim);
70 public int getType() { return varType; }
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
MatParamTexture.java 8 import com.jme3.shader.VarType;
17 public MatParamTexture(VarType type, String name, Texture texture, int unit) {
Material.java 49 import com.jme3.shader.VarType;
365 * @see #setParam(java.lang.String, com.jme3.shader.VarType, java.lang.Object)
371 private String checkSetParam(VarType type, String name) {
399 * @param type the type of the parameter {@link VarType}
402 public void setParam(String name, VarType type, Object value) {
476 * @param type The variable type {@link VarType}
481 public void setTextureParam(String name, VarType type, Texture value) {
516 VarType paramType = null;
519 paramType = VarType.Texture2D;
522 paramType = VarType.TextureArray
    [all...]
MatParam.java 39 import com.jme3.shader.VarType;
52 protected VarType type;
61 public MatParam(VarType type, String name, Object value, FixedFuncBinding ffBinding) {
89 public VarType getVarType() {
291 oc.write(type, "varType", null);
311 type = ic.readEnum("varType", VarType.class, null);
Technique.java 114 void notifySetParam(String paramName, VarType type, Object value) {
140 void updateUniformParam(String paramName, VarType type, Object value, boolean ifNotOwner) {
152 u.setValue(VarType.Int, value);
161 void updateUniformParam(String paramName, VarType type, Object value) {
TechniqueDef.java 40 import com.jme3.shader.VarType;
262 * {@link DefineList#set(java.lang.String, com.jme3.shader.VarType, java.lang.Object) }
280 * @see #addShaderPresetDefine(java.lang.String, com.jme3.shader.VarType, java.lang.Object)
294 * {@link DefineList#set(java.lang.String, com.jme3.shader.VarType, java.lang.Object) }
299 public void addShaderPresetDefine(String defineName, VarType type, Object value){
MaterialDef.java 36 import com.jme3.shader.VarType;
124 public void addMaterialParam(VarType type, String name, Object value, FixedFuncBinding ffBinding) {
  /external/clang/test/SemaCXX/
return.cpp 67 template <class VarType>
68 void Test(const VarType& value) {
  /external/chromium/base/win/
scoped_variant.h 45 explicit ScopedVariant(int value, VARTYPE vt = VT_I4);
49 explicit ScopedVariant(double value, VARTYPE vt = VT_R8);
65 inline VARTYPE type() const {
151 static bool IsLeakableVarType(VARTYPE vt);
scoped_variant.cc 29 ScopedVariant::ScopedVariant(int value, VARTYPE vt) {
34 ScopedVariant::ScopedVariant(double value, VARTYPE vt) {
214 DCHECK(!array) << "Unable to determine safearray vartype";
235 bool ScopedVariant::IsLeakableVarType(VARTYPE vt) {
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ShaderLang.cpp 34 static void getVariableInfo(ShShaderInfo varType,
44 ASSERT((varType == SH_ACTIVE_ATTRIBUTES) ||
45 (varType == SH_ACTIVE_UNIFORMS));
52 const TVariableInfoList& varList = varType == SH_ACTIVE_ATTRIBUTES ?
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
RenderManager.java 47 import com.jme3.shader.VarType;
349 u.setValue(VarType.Matrix4, worldMatrix);
352 u.setValue(VarType.Matrix4, viewMatrix);
355 u.setValue(VarType.Matrix4, projMatrix);
358 u.setValue(VarType.Matrix4, viewProjMatrix);
363 u.setValue(VarType.Matrix4, tempMat4);
371 u.setValue(VarType.Matrix3, tempMat3);
376 u.setValue(VarType.Matrix4, tempMat4);
381 u.setValue(VarType.Matrix4, tempMat4);
386 u.setValue(VarType.Matrix3, tempMat3);
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
RadialBlurFilter.java 43 import com.jme3.shader.VarType;
79 material.setParam("Samples", VarType.FloatArray, samples);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
J3MLoader.java 44 import com.jme3.shader.VarType;
124 private Object readValue(VarType type, String value) throws IOException{
143 texKey.setAsCube(type == VarType.TextureCubeMap);
246 VarType type;
248 type = VarType.Vector4;
250 type = VarType.valueOf(split[0]);
357 technique.addShaderPresetDefine(split[0].trim(), VarType.Boolean, true);
  /external/llvm/unittests/VMCore/
ValueMapTest.cpp 119 template<typename ExpectedType, typename VarType>
120 void CompileAssertHasType(VarType) {
121 typedef char assert[is_same<ExpectedType, VarType>::value ? 1 : -1];

Completed in 1657 milliseconds

1 2