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

1 2 34 5 6 7 8 91011>>

  /cts/tools/signature-tools/test/signature/converter/dex/
DexTestConverter.java 21 import dex.structure.DexFile;
  /external/chromium_org/third_party/angle_dx11/src/compiler/
SymbolTable.cpp 23 type(p.type), precision(p.precision), qualifier(p.qualifier), size(p.size), matrix(p.matrix), array(p.array), arraySize(p.arraySize), structure(0)
26 structure = p.userDef->getStruct();
46 case EbtStruct: mangledName += structure->mangledName(); break;
66 totalSize = structure->objectSize();
  /external/chromium_org/chrome_frame/crash_reporting/
minidump_test.cc 212 bool DumpHasMemory(ULONG64 address, StructureType** structure = NULL) {
217 return DumpHasMemory(reinterpret_cast<void*>(address), structure);
221 bool DumpHasMemory(const void* addr_in, StructureType** structure = NULL) {
235 // in bounds, return a pointer to the structure if requested.
236 if (structure != NULL)
237 *structure = reinterpret_cast<StructureType*>(
262 // in bounds, return a pointer to the structure if requested.
263 if (structure != NULL)
264 *structure = reinterpret_cast<StructureType*>(
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/
MeshHelper.java 60 import com.jme3.scene.plugins.blender.file.Structure;
90 * This method reads converts the given structure into mesh. The given structure needs to be filled with the appropriate data.
92 * @param structure
93 * the structure we read the mesh from
98 public List<Geometry> toMesh(Structure structure, BlenderContext blenderContext) throws BlenderFileException {
99 List<Geometry> geometries = (List<Geometry>) blenderContext.getLoadedFeature(structure.getOldMemoryAddress(),
113 String name = structure.getName();
117 Vector3f[] vertices = this.getVertices(structure, blenderContext);
423 blenderContext.addLoadedFeatures(structure.getOldMemoryAddress(), structure.getName(), structure, geometries); local
    [all...]
  /external/chromium_org/chrome/browser/resources/
about_flash.js 8 * with that data. It expects an object structure like the above.
about_nacl.js 11 * with that data. It expects an object structure like the above.
flags.js 6 * This variable structure is here to document the structure that the template
13 * with that data. It expects an object structure like the above.
15 * See returnFlagsExperiments() for the structure of this object.
  /external/chromium_org/third_party/mesa/src/src/glsl/
link_uniform_initializers.cpp 91 const glsl_type *field_type = type->fields.structure[i].type;
93 type->fields.structure[i].name);
lower_ubo_reference.cpp 138 const glsl_type *type = struct_type->fields.structure[i].type;
143 if (strcmp(struct_type->fields.structure[i].name,
214 &deref->type->fields.structure[i];
  /external/chromium_org/tools/grit/grit/format/
data_pack.py 21 from grit.node import structure namespace
45 structure.StructureNode)):
rc_header.py 91 from grit.node import empty, include, message, misc, structure namespace
109 misc.IdentifierNode, structure.StructureNode))
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
DnaBlockData.java 51 private final Structure[] structures;
52 /** A map that helps finding a structure by type. */
53 private final Map<String, Structure> structuresMap;
129 structures = new Structure[amount];
130 structuresMap = new HashMap<String, Structure>(amount);
132 structures[i] = new Structure(inputStream, names, types, blenderContext);
149 * This method returns the structure of the given index.
151 * the index of the structure
152 * @return the structure of the given index
154 public Structure getStructure(int index) {
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
MaterialHelper.java 47 import com.jme3.scene.plugins.blender.file.Structure;
179 * This method converts the material structure to jme Material.
180 * @param structure
181 * structure with material data
188 public Material toMaterial(Structure structure, BlenderContext blenderContext) throws BlenderFileException {
190 if (structure == null) {
193 Material result = (Material) blenderContext.getLoadedFeature(structure.getOldMemoryAddress(), LoadedFeatureDataType.LOADED_FEATURE);
198 MaterialContext materialContext = new MaterialContext(structure, blenderContext);
221 //Structure mTex = materialContext.getMTex(texture);
287 blenderContext.addLoadedFeatures(structure.getOldMemoryAddress(), structure.getName(), structure, result); local
    [all...]
  /external/mesa3d/src/glsl/
link_uniform_initializers.cpp 91 const glsl_type *field_type = type->fields.structure[i].type;
93 type->fields.structure[i].name);
lower_ubo_reference.cpp 138 const glsl_type *type = struct_type->fields.structure[i].type;
143 if (strcmp(struct_type->fields.structure[i].name,
214 &deref->type->fields.structure[i];
  /external/chromium_org/v8/test/webkit/
dfg-check-structure-elimination-for-non-cell.js 25 "Tests that we do the right things when we prove that we can eliminate a structure check, but haven't proved that the value is definitely an object - i.e. we've proved that it's either an object with a specific structure, or it's not an object at all."
dfg-multi-basic-block-structure-clobber.js 25 "This tests that a structure clobber in a basic block that does not touch a live variable causes that variable's structure to be correctly clobbered."
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
PageSiteComposite.java 11 package org.eclipse.wb.internal.core.editor.structure;
28 * @coverage core.editor.structure
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
PropertyListIntersector.java 11 package org.eclipse.wb.internal.core.editor.structure.property;
25 * @coverage core.editor.structure
  /external/libvpx/libvpx/vpx_mem/memory_manager/include/
heapmm.h 84 typedef struct HMM_UNIQUE(structure) {
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
ObjectHelper.java 63 import com.jme3.scene.plugins.blender.file.Structure;
101 * This method reads the given structure and createn an object that represents the data.
103 * the object's structure
110 public Object toObject(Structure objectStructure, BlenderContext blenderContext) throws BlenderFileException {
130 Structure parentStructure = pParent.fetchData(blenderContext.getInputStream()).get(0);
156 List<Structure> meshesArray = pMesh.fetchData(blenderContext.getInputStream());
185 Structure curveData = pCurve.fetchData(blenderContext.getInputStream()).get(0);
199 List<Structure> lampsArray = pLamp.fetchData(blenderContext.getInputStream());
236 List<Structure> camerasArray = pCamera.fetchData(blenderContext.getInputStream());
288 * the object's structure
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexClassImpl.java 32 import dex.structure.DexAnnotation;
33 import dex.structure.DexClass;
34 import dex.structure.DexField;
35 import dex.structure.DexMethod;
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 87 import dex.structure.DexAnnotation;
88 import dex.structure.DexAnnotationAttribute;
89 import dex.structure.DexClass;
90 import dex.structure.DexEncodedAnnotation;
91 import dex.structure.DexEncodedValue;
92 import dex.structure.DexField;
93 import dex.structure.DexFile;
94 import dex.structure.DexMethod;
95 import dex.structure.DexParameter;
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/bundles/
CoreOperators.java 39 import com.google.clearsilver.jsilver.functions.structure.NameFunction;
  /external/chromium_org/ui/keyboard/resources/
main.js 34 * @param {!DocumentFragment} importedContent The imported dom structure.

Completed in 2821 milliseconds

1 2 34 5 6 7 8 91011>>