/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/ |
D | AbstractBlenderLoader.java | 72 public Node toScene(Structure structure) { in toScene() argument 76 Node result = new Node(structure.getName()); in toScene() 78 …List<Structure> base = ((Structure)structure.getFieldValue("base")).evaluateListBase(blenderContex… in toScene() 103 public Camera toCamera(Structure structure) throws BlenderFileException { in toCamera() argument 105 if (cameraHelper.shouldBeLoaded(structure, blenderContext)) { in toCamera() 106 return cameraHelper.toCamera(structure); in toCamera() 117 public Light toLight(Structure structure) throws BlenderFileException { in toLight() argument 119 if (lightHelper.shouldBeLoaded(structure, blenderContext)) { in toLight() 120 return lightHelper.toLight(structure, blenderContext); in toLight() 131 public Object toObject(Structure structure) throws BlenderFileException { in toObject() argument [all …]
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/cameras/ |
D | CameraHelper.java | 44 public Camera toCamera(Structure structure) throws BlenderFileException { in toCamera() argument 46 return this.toCamera250(structure); in toCamera() 48 return this.toCamera249(structure); in toCamera() 62 public Camera toCamera250(Structure structure) throws BlenderFileException { in toCamera250() argument 64 int type = ((Number) structure.getFieldValue("type")).intValue(); in toCamera250() 72 float clipsta = ((Number) structure.getFieldValue("clipsta")).floatValue(); in toCamera250() 73 float clipend = ((Number) structure.getFieldValue("clipend")).floatValue(); in toCamera250() 75 aspect = ((Number) structure.getFieldValue("lens")).floatValue(); in toCamera250() 77 aspect = ((Number) structure.getFieldValue("ortho_scale")).floatValue(); in toCamera250() 93 public Camera toCamera249(Structure structure) throws BlenderFileException { in toCamera249() argument [all …]
|
/external/clang/test/SemaCXX/ |
D | reinterpret-cast.cpp | 6 struct structure { int m; }; struct 25 const int structure::*psi = 0; in self_conversion() 26 (void)reinterpret_cast<const int structure::*>(psi); in self_conversion() 28 structure s; in self_conversion() 29 …(void)reinterpret_cast<structure>(s); // expected-error {{reinterpret_cast from 'structure' to 'st… in self_conversion() 50 structure *p3 = reinterpret_cast<structure*>(p2); in pointer_conversion() 92 const int structure::*psi = 0; in memptrs() 93 (void)reinterpret_cast<const float structure::*>(psi); in memptrs() 94 …(void)reinterpret_cast<int structure::*>(psi); // expected-error {{reinterpret_cast from 'const in… in memptrs() 96 void (structure::*psf)() = 0; in memptrs() [all …]
|
D | cstyle-cast.cpp | 169 struct structure { int m; }; struct 187 structure *p3 = (structure*)(p2); in pointer_conversion() 223 const int structure::*psi = 0; in memptrs() 224 (void)(const float structure::*)(psi); in memptrs() 225 (void)(int structure::*)(psi); // const_cast appended in memptrs() 227 void (structure::*psf)() = 0; in memptrs() 228 (void)(int (structure::*)())(psf); in memptrs() 230 …(void)(void (structure::*)())(psi); // expected-error-re {{C-style cast from 'const int structure:… in memptrs() 231 …(void)(int structure::*)(psf); // expected-error-re {{C-style cast from 'void (structure::*)(){{( … in memptrs()
|
D | functional-cast.cpp | 231 struct structure { int m; }; argument 252 typedef structure *structurep; in pointer_conversion() 253 structure *p3 = structurep(p2); in pointer_conversion() 298 const int structure::*psi = 0; in memptrs() 299 typedef const float structure::*structurecfmp; in memptrs() 301 typedef int structure::*structureimp; in memptrs() 304 void (structure::*psf)() = 0; in memptrs() 305 typedef int (structure::*structureimfp)(); in memptrs() 308 typedef void (structure::*structurevmfp)(); in memptrs()
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/lights/ |
D | LightHelper.java | 69 …public Light toLight(Structure structure, BlenderContext blenderContext) throws BlenderFileExcepti… in toLight() argument 70 …Light result = (Light) blenderContext.getLoadedFeature(structure.getOldMemoryAddress(), LoadedFeat… in toLight() 74 int type = ((Number) structure.getFieldValue("type")).intValue(); in toLight() 78 float distance = ((Number) structure.getFieldValue("dist")).floatValue(); in toLight() 87 … ((SpotLight)result).setSpotRange(((Number) structure.getFieldValue("dist")).floatValue()); in toLight() 89 …float outerAngle = ((Number) structure.getFieldValue("spotsize")).floatValue()*FastMath.DEG_TO_RAD… in toLight() 93 float spotblend = ((Number) structure.getFieldValue("spotblend")).floatValue(); in toLight() 108 float r = ((Number) structure.getFieldValue("r")).floatValue(); in toLight() 109 float g = ((Number) structure.getFieldValue("g")).floatValue(); in toLight() 110 float b = ((Number) structure.getFieldValue("b")).floatValue(); in toLight() [all …]
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
D | PKCS7ProcessableObject.java | 16 private final ASN1Encodable structure; field in PKCS7ProcessableObject 20 ASN1Encodable structure) in PKCS7ProcessableObject() argument 23 this.structure = structure; in PKCS7ProcessableObject() 34 if (structure instanceof ASN1Sequence) in write() 36 ASN1Sequence s = ASN1Sequence.getInstance(structure); in write() 47 byte[] encoded = structure.toASN1Primitive().getEncoded(ASN1Encoding.DER); in write() 63 return structure; in getContent()
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/ |
D | MaterialContext.java | 62 …/* package */MaterialContext(Structure structure, BlenderContext blenderContext) throws BlenderFil… in MaterialContext() argument 63 name = structure.getName(); in MaterialContext() 65 int mode = ((Number) structure.getFieldValue("mode")).intValue(); in MaterialContext() 70 int diff_shader = ((Number) structure.getFieldValue("diff_shader")).intValue(); in MaterialContext() 74 float r = ((Number) structure.getFieldValue("r")).floatValue(); in MaterialContext() 75 float g = ((Number) structure.getFieldValue("g")).floatValue(); in MaterialContext() 76 float b = ((Number) structure.getFieldValue("b")).floatValue(); in MaterialContext() 77 float alpha = ((Number) structure.getFieldValue("alpha")).floatValue(); in MaterialContext() 84 diffuseColor = this.readDiffuseColor(structure, diffuseShader); in MaterialContext() 86 int spec_shader = ((Number) structure.getFieldValue("spec_shader")).intValue(); in MaterialContext() [all …]
|
/external/e2fsprogs/tests/progs/ |
D | test_icount_cmds.ct | 10 request do_create_icount, "Create an icount structure", 13 request do_free_icount, "Free an icount structure", 28 request do_get_size, "Get the size of the icount structure", 31 request do_dump, "Dump the icount structure", 34 request do_validate, "Validate the icount structure",
|
/external/google-breakpad/src/client/windows/unittests/ |
D | dump_analysis.h | 71 bool HasMemory(ULONG64 address, StructureType** structure = NULL) const { 76 return HasMemory(reinterpret_cast<void*>(address), structure); 80 bool HasMemory(const void* addr_in, StructureType** structure = NULL) const { 82 reinterpret_cast<void**>(structure)); 99 void** structure) const;
|
D | dump_analysis.cc | 131 void **structure) const { in HasMemoryImpl() 146 if (structure != NULL) in HasMemoryImpl() 147 *structure = RVA_TO_ADDR(dump_file_view_, descr.Memory.Rva); in HasMemoryImpl() 172 if (structure != NULL) in HasMemoryImpl() 173 *structure = RVA_TO_ADDR(dump_file_view_, curr_rva); in HasMemoryImpl()
|
/external/mesa3d/src/glsl/ |
D | glsl_types.cpp | 93 this->fields.structure = ralloc_array(this->mem_ctx, in glsl_type() 96 this->fields.structure[i].type = fields[i].type; in glsl_type() 97 this->fields.structure[i].name = ralloc_strdup(this->fields.structure, in glsl_type() 121 if (this->fields.structure[i].type->contains_sampler()) in contains_sampler() 501 if (key1->fields.structure[i].type != key2->fields.structure[i].type) in record_key_compare() 503 if (strcmp(key1->fields.structure[i].name, in record_key_compare() 504 key2->fields.structure[i].name) != 0) in record_key_compare() 526 "%p", (void *) key->fields.structure[i].type); in record_key_hash() 566 if (strcmp(name, this->fields.structure[i].name) == 0) in field_type() 567 return this->fields.structure[i].type; in field_type() [all …]
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
D | Structure.java | 67 …private Structure(Structure structure, BlenderContext blenderContext) throws CloneNotSupportedExce… in Structure() argument 68 type = structure.type; in Structure() 69 fields = new Field[structure.fields.length]; in Structure() 71 fields[i] = (Field) structure.fields[i].clone(); in Structure() 74 this.oldMemoryAddress = structure.oldMemoryAddress; in Structure() 186 Structure structure = first.fetchData(blenderContext.getInputStream()).get(0); in evaluateListBase() local 187 result.add(structure); in evaluateListBase() 188 first = (Pointer) structure.getFlatFieldValue("next"); in evaluateListBase()
|
D | FileBlockHeader.java | 112 Structure structure = blenderContext.getDnaBlockData().getStructure(sdnaIndex); in getStructure() local 113 structure.fill(blenderContext.getInputStream()); in getStructure() 114 return structure; in getStructure()
|
D | Field.java | 182 Structure structure = blenderContext.getDnaBlockData().getStructure(type); in fill() local 183 structure.fill(blenderInputStream); in fill() 184 value = structure; in fill() 188 Structure structure = blenderContext.getDnaBlockData().getStructure(type); in fill() local 189 structure.fill(blenderInputStream); in fill() 190 data[i] = structure; in fill()
|
D | Pointer.java | 112 … Structure structure = blenderContext.getDnaBlockData().getStructure(dataFileBlock.getSdnaIndex()); in fetchData() local 113 structure.fill(inputStream); in fetchData() 114 structures.add(structure); in fetchData()
|
/external/e2fsprogs/tests/f_resize_inode/ |
D | expect | 22 Pass 2: Checking directory structure 35 Pass 2: Checking directory structure 50 Pass 2: Checking directory structure 63 Pass 2: Checking directory structure 78 Pass 2: Checking directory structure 91 Pass 2: Checking directory structure 106 Pass 2: Checking directory structure 119 Pass 2: Checking directory structure 132 Pass 2: Checking directory structure 165 Pass 2: Checking directory structure
|
/external/autotest/client/tests/kvm/ |
D | virtio-win.cfg.sample | 70 # Look at your cd structure and see where the drivers are 84 # Look at your cd structure and see where the drivers are 99 # Look at your cd structure and see where the drivers are 113 # Look at your cd structure and see where the drivers are 124 # Look at your cd structure and see where the drivers are 134 # Look at your cd structure and see where the drivers are 145 # Look at your cd structure and see where the drivers are 155 # Look at your cd structure and see where the drivers are 167 # Look at your cd structure and see where the drivers are 177 # Look at your cd structure and see where the drivers are [all …]
|
/external/emma/ |
D | module.dirs.properties | 28 # lib module structure: 36 # core module structure: 48 # ant module structure: 59 # tools module structure: 69 # test module structure:
|
/external/e2fsprogs/lib/ext2fs/ |
D | ext2_err.et.in | 15 "Wrong magic number for ext2_filsys structure" 18 "Wrong magic number for badblocks_list structure" 21 "Wrong magic number for badblocks_iterate structure" 24 "Wrong magic number for inode_scan structure" 27 "Wrong magic number for io_channel structure" 30 "Wrong magic number for unix io_channel structure" 33 "Wrong magic number for io_manager structure" 36 "Wrong magic number for block_bitmap structure" 39 "Wrong magic number for inode_bitmap structure" 42 "Wrong magic number for generic_bitmap structure" [all …]
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/ |
D | MeshHelper.java | 98 …public List<Geometry> toMesh(Structure structure, BlenderContext blenderContext) throws BlenderFil… in toMesh() argument 99 …List<Geometry> geometries = (List<Geometry>) blenderContext.getLoadedFeature(structure.getOldMemor… in toMesh() 113 String name = structure.getName(); in toMesh() 117 Vector3f[] vertices = this.getVertices(structure, blenderContext); in toMesh() 121 List<byte[]> verticesColors = this.getVerticesColors(structure, blenderContext); in toMesh() 126 Pointer pMFace = (Pointer) structure.getFieldValue("mface"); in toMesh() 137 Pointer pMTFace = (Pointer) structure.getFieldValue("mtface"); in toMesh() 143 int facesAmount = ((Number) structure.getFieldValue("totface")).intValue(); in toMesh() 272 materials = materialHelper.getMaterials(structure, blenderContext); in toMesh() 302 Properties properties = this.loadProperties(structure, blenderContext); in toMesh() [all …]
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
D | IpoHelper.java | 112 public int getCurveType(Structure structure, BlenderContext blenderContext) { in getCurveType() argument 116 Pointer pRnaPath = (Pointer) structure.getFieldValue("rna_path"); in getCurveType() 121 int arrayIndex = ((Number) structure.getFieldValue("array_index")).intValue(); in getCurveType() 152 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) { in shouldBeLoaded() argument
|
/external/clang/docs/ |
D | Block-ABI-Apple.rst | 14 * 2008/10/1 - revise block layout to use a ``static`` descriptor structure. 38 by the compiler. A ``Block`` consists of a structure of the following form: 90 ``Block`` literals may occur within functions where the structure is created in 94 When a ``Block`` literal expression is evaluated the stack based structure is 97 1. A ``static`` descriptor structure is declared and initialized as follows: 100 ``Block`` structure as its first argument and the rest of the arguments (if 104 structure. 109 2. A stack (or global) ``Block`` literal data structure is created and 187 structure. Global variables are simply referenced and not considered as 314 GCC introduces ``__attribute__((NSObject))`` on structure pointers to mean "this [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/bundles/ |
D | ClearSilverCompatibleFunctions.java | 31 import com.google.clearsilver.jsilver.functions.structure.FirstFunction; 32 import com.google.clearsilver.jsilver.functions.structure.LastFunction; 33 import com.google.clearsilver.jsilver.functions.structure.SubcountFunction;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/ |
D | mysql-modelingschema.dump | 30 -- Table structure for table `bugs` 52 -- Table structure for table `commits` 81 -- Table structure for table `cvsfiles` 107 -- Table structure for table `filetags` 130 -- Table structure for table `tags`
|