HomeSort by relevance Sort by last modified time
    Searched refs:structure (Results 51 - 75 of 342) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_types.cpp 93 this->fields.structure = ralloc_array(this->mem_ctx,
96 this->fields.structure[i].type = fields[i].type;
97 this->fields.structure[i].name = ralloc_strdup(this->fields.structure,
121 if (this->fields.structure[i].type->contains_sampler())
501 if (key1->fields.structure[i].type != key2->fields.structure[i].type)
503 if (strcmp(key1->fields.structure[i].name,
504 key2->fields.structure[i].name) != 0)
526 "%p", (void *) key->fields.structure[i].type)
    [all...]
ast_type.cpp 32 if (structure) {
33 structure->print();
opt_structure_splitting.cpp 27 * If a structure is only ever referenced by its components, then
160 /* If there are no structure references yet, no need to bother with
169 /* We'll split copies of a structure to copies of components, so don't
180 /* We don't have logic for structure-splitting function arguments,
244 entry->var->type->fields.structure[i].name) == 0)
286 type->fields.structure[i].name);
294 type->fields.structure[i].name);
326 printf("structure %s@%p: decl %d, whole_access %d\n",
357 type->fields.structure[i].name);
360 new(entry->mem_ctx) ir_variable(type->fields.structure[i].type
    [all...]
  /external/mesa3d/src/glsl/
glsl_types.cpp 93 this->fields.structure = ralloc_array(this->mem_ctx,
96 this->fields.structure[i].type = fields[i].type;
97 this->fields.structure[i].name = ralloc_strdup(this->fields.structure,
121 if (this->fields.structure[i].type->contains_sampler())
501 if (key1->fields.structure[i].type != key2->fields.structure[i].type)
503 if (strcmp(key1->fields.structure[i].name,
504 key2->fields.structure[i].name) != 0)
526 "%p", (void *) key->fields.structure[i].type)
    [all...]
ast_type.cpp 32 if (structure) {
33 structure->print();
opt_structure_splitting.cpp 27 * If a structure is only ever referenced by its components, then
160 /* If there are no structure references yet, no need to bother with
169 /* We'll split copies of a structure to copies of components, so don't
180 /* We don't have logic for structure-splitting function arguments,
244 entry->var->type->fields.structure[i].name) == 0)
286 type->fields.structure[i].name);
294 type->fields.structure[i].name);
326 printf("structure %s@%p: decl %d, whole_access %d\n",
357 type->fields.structure[i].name);
360 new(entry->mem_ctx) ir_variable(type->fields.structure[i].type
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexMethodImpl.java 32 import dex.structure.DexAnnotation;
33 import dex.structure.DexClass;
34 import dex.structure.DexMethod;
35 import dex.structure.DexParameter;
DexFileImpl.java 23 import dex.structure.DexClass;
24 import dex.structure.DexFile;
DexEncodedValueImpl.java 19 import static dex.structure.DexEncodedValueType.*;
21 import dex.structure.DexAnnotation;
22 import dex.structure.DexEncodedValue;
23 import dex.structure.DexEncodedValueType;
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSourceToDexUtil.java 43 public dex.structure.DexFile getFrom(JavaSource source) throws IOException{
47 public dex.structure.DexFile getFrom(JavaSource... source) throws IOException{
51 public dex.structure.DexFile getAllFrom(Set<JavaSource> sources) throws IOException{
56 * Converts java source code to a {@link dex.structure.DexFile} loaded by
62 public dex.structure.DexFile getFrom(Set<JavaSource> sources,
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
IpoHelper.java 13 import com.jme3.scene.plugins.blender.file.Structure;
41 * the structure with ipo definition
49 public Ipo fromIpoStructure(Structure ipoStructure, BlenderContext blenderContext) throws BlenderFileException {
50 Structure curvebase = (Structure) ipoStructure.getFieldValue("curve");
54 List<Structure> curves = curvebase.evaluateListBase(blenderContext);// IpoCurve
58 for (Structure curve : curves) {
60 List<Structure> bezTriples = pBezTriple.fetchData(blenderContext.getInputStream());
76 * the structure with action definition
84 public Ipo fromAction(Structure actionStructure, BlenderContext blenderContext) throws BlenderFileException {
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
FirstFunction.java 17 package com.google.clearsilver.jsilver.functions.structure;
LastFunction.java 17 package com.google.clearsilver.jsilver.functions.structure;
NameFunction.java 17 package com.google.clearsilver.jsilver.functions.structure;
SubcountFunction.java 17 package com.google.clearsilver.jsilver.functions.structure;
  /cts/tools/signature-tools/test/signature/converter/dex/
DexUtilTest.java 23 import dex.structure.DexClass;
24 import dex.structure.DexFile;
  /external/chromium_org/tools/grit/grit/tool/
buildinfo.py 13 from grit.node import structure namespace
52 if (isinstance(node, structure.StructureNode) and
  /external/chromium_org/third_party/angle_dx11/src/compiler/
OutputGLSLBase.cpp 125 const TStructure* structure = type.getStruct(); local
126 out << hashName(structure->name()) << "(";
128 const TFieldList& fields = structure->fields();
254 const TStructure* structure = node->getLeft()->getType().getStruct(); local
256 const TField* field = structure->fields()[index->getIConst(0)];
259 if (!mSymbolTable.findBuiltIn(structure->name()))
793 bool TOutputGLSLBase::structDeclared(const TStructure* structure) const
795 return mDeclaredStructs.find(structure->name()) != mDeclaredStructs.end();
798 void TOutputGLSLBase::declareStruct(const TStructure* structure)
802 out << "struct " << hashName(structure->name()) << "{\n"
    [all...]
  /external/chromium_org/chrome/browser/resources/
about_conflicts.js 6 * This variable structure is here to document the structure that the template
32 * with that data. It expects an object structure like the above.
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Field.java 5 import com.jme3.scene.plugins.blender.file.Structure.DataType;
10 * This class represents a single field in the structure. It can be either a primitive type or a table or a reference to
11 * another structure.
180 case STRUCTURE:
182 Structure structure = blenderContext.getDnaBlockData().getStructure(type); local
183 structure.fill(blenderInputStream);
184 value = structure;
186 Structure[] data = new Structure[dataToRead];
188 Structure structure = blenderContext.getDnaBlockData().getStructure(type); local
    [all...]
  /cts/tools/dex-tools/test/dex/reader/
DexFileReaderTests.java 34 import dex.structure.DexAnnotation;
35 import dex.structure.DexAnnotationAttribute;
36 import dex.structure.DexClass;
37 import dex.structure.DexEncodedValue;
38 import dex.structure.DexField;
39 import dex.structure.DexFile;
40 import dex.structure.DexMethod;
41 import dex.structure.DexParameter;
  /cts/tools/signature-tools/src/signature/converter/dex/
DexUtil.java 34 import dex.structure.DexAnnotatedElement;
35 import dex.structure.DexAnnotation;
36 import dex.structure.DexAnnotationAttribute;
37 import dex.structure.DexClass;
38 import dex.structure.DexEncodedValue;
39 import dex.structure.DexField;
40 import dex.structure.DexFile;
41 import dex.structure.DexMethod;
DexFactory.java 19 import dex.structure.DexFile;
  /external/chromium_org/chrome/installer/test/
pe_image_resources.cc 18 bool StructureAt(const uint8* data, size_t data_size, const T** structure) {
20 *structure = reinterpret_cast<const T*>(data);
  /external/chromium_org/tools/grit/grit/format/
resource_map.py 107 from grit.node import include, structure namespace
112 if isinstance(item, (include.IncludeNode, structure.StructureNode)):

Completed in 484 milliseconds

1 23 4 5 6 7 8 91011>>