HomeSort by relevance Sort by last modified time
    Searched defs:structure (Results 26 - 50 of 60) sorted by null

12 3

  /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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Pointer.java 85 * this exception is thrown when the blend file structure is somehow invalid or corrupted
87 public List<Structure> fetchData(BlenderInputStream inputStream) throws BlenderFileException {
91 List<Structure> structures = null;
110 structures = new ArrayList<Structure>(dataFileBlock.getCount());
112 Structure structure = blenderContext.getDnaBlockData().getStructure(dataFileBlock.getSdnaIndex()); local
113 structure.fill(inputStream);
114 structures.add(structure);
146 * This method returns the old memory address of the structure pointed by the pointer.
147 * @return the old memory address of the structure pointed by the pointer
    [all...]
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...]
FileBlockHeader.java 39 * start position in the stream and using this the structure can fill itself with the proper data.
66 * Memory address the structure was located when written to disk [4 or 8 bytes (defined in file header as a pointer
70 /** Index of the SDNA structure [4 bytes]. */
72 /** Number of structure located in this file-block [4 bytes]. */
104 * This method returns the structure described by the header filled with appropriate data.
107 * @return structure filled with data
110 public Structure getStructure(BlenderContext blenderContext) throws BlenderFileException {
112 Structure structure = blenderContext.getDnaBlockData().getStructure(sdnaIndex); local
113 structure.fill(blenderContext.getInputStream());
    [all...]
Structure.java 42 * A class representing a single structure in the file.
45 public class Structure implements Cloneable {
49 /** The address of the block that fills the structure. */
51 /** The type of the structure. */
54 * The fields of the structure. Each field consists of a pair: name-type.
59 * Constructor that copies the data of the structure.
60 * @param structure
61 * the structure to copy.
63 * the blender context of the structure
67 private Structure(Structure structure, BlenderContext blenderContext) throws CloneNotSupportedException
186 Structure structure = first.fetchData(blenderContext.getInputStream()).get(0); local
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowShell.cpp 63 Structure* prototypeStructure = JSDOMWindowPrototype::createStructure(*JSDOMWindow::commonJSGlobalData(), jsNull());
66 Structure* structure = JSDOMWindow::createStructure(*JSDOMWindow::commonJSGlobalData(), prototype.get()); local
67 JSDOMWindow* jsDOMWindow = new (JSDOMWindow::commonJSGlobalData()) JSDOMWindow(*JSDOMWindow::commonJSGlobalData(), structure, domWindow, this);
  /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/clang/test/SemaCXX/
reinterpret-cast.cpp 6 struct structure { int m; }; struct
25 const int structure::*psi = 0;
26 (void)reinterpret_cast<const int structure::*>(psi);
28 structure s;
29 (void)reinterpret_cast<structure>(s); // expected-error {{reinterpret_cast from 'structure' to 'structure' is not allowed}}
50 structure *p3 = reinterpret_cast<structure*>(p2);
92 const int structure::*psi = 0
    [all...]
cstyle-cast.cpp 169 struct structure { int m; }; struct
187 structure *p3 = (structure*)(p2);
223 const int structure::*psi = 0;
224 (void)(const float structure::*)(psi);
225 (void)(int structure::*)(psi); // const_cast appended
227 void (structure::*psf)() = 0;
228 (void)(int (structure::*)())(psf);
230 (void)(void (structure::*)())(psi); // expected-error {{C-style cast from 'const int structure::*' to 'void (structure::*)()' is not allowed}
    [all...]
functional-cast.cpp 230 struct structure { int m; }; struct
251 typedef structure *structurep;
252 structure *p3 = structurep(p2);
297 const int structure::*psi = 0;
298 typedef const float structure::*structurecfmp;
300 typedef int structure::*structureimp;
303 void (structure::*psf)() = 0;
304 typedef int (structure::*structureimfp)();
307 typedef void (structure::*structurevmfp)();
308 (void)structurevmfp(psi); // expected-error {{functional-style cast from 'const int structure::*' to 'structurevmfp' (aka 'void (structure::*)()') is not allowed}
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
StructureStubInfo.h 34 #include "Structure.h"
61 void initGetByIdSelf(JSGlobalData& globalData, JSCell* owner, Structure* baseObjectStructure)
68 void initGetByIdProto(JSGlobalData& globalData, JSCell* owner, Structure* baseObjectStructure, Structure* prototypeStructure)
76 void initGetByIdChain(JSGlobalData& globalData, JSCell* owner, Structure* baseObjectStructure, StructureChain* chain)
102 void initPutByIdTransition(JSGlobalData& globalData, JSCell* owner, Structure* previousStructure, Structure* structure, StructureChain* chain)
107 u.putByIdTransition.structure.set(globalData, owner, structure);
156 WriteBarrierBase<Structure> structure; member in struct:JSC::StructureStubInfo::__anon17518::__anon17524
    [all...]
CodeBlock.h 143 cachedPrototypeStructure.setWithoutWriteBarrier((Structure*)1);
148 WriteBarrier<Structure> cachedStructure;
149 WriteBarrier<Structure> cachedPrototypeStructure;
159 WriteBarrier<Structure> structure; member in struct:JSC::GlobalResolveInfo
164 // This structure is used to map from a call return location
  /external/webkit/Source/JavaScriptCore/runtime/
JSCell.h 38 class Structure;
71 friend class Structure;
79 JSCell(JSGlobalData&, Structure*);
83 static Structure* createDummyStructure(JSGlobalData&);
93 Structure* structure() const;
162 WriteBarrier<Structure> m_structure;
165 inline JSCell::JSCell(JSGlobalData& globalData, Structure* structure)
166 : m_structure(globalData, this, structure)
176 inline Structure* JSCell::structure() const function in class:JSC::JSCell
    [all...]
Structure.cpp 27 #include "Structure.h"
65 static HashSet<Structure*>& liveStructureSet = *(new HashSet<Structure*>);
71 Structure* transition = singleTransition();
77 inline Structure* StructureTransitionTable::get(StringImpl* rep, unsigned attributes) const
80 Structure* transition = singleTransition();
86 inline void StructureTransitionTable::remove(Structure* structure)
92 // As such, the passed structure *must* be the existing transition.
93 ASSERT(singleTransition() == structure);
143 Structure* structure = *it; local
251 Structure* structure = this; local
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
OutputGLSL.cpp 106 const TTypeList* structure = type.getStruct(); local
107 ASSERT(structure != NULL);
108 for (size_t i = 0; i < structure->size(); ++i)
110 const TType* fieldType = (*structure)[i].type;
163 const TTypeList* structure = type.getStruct(); local
164 ASSERT(structure != NULL);
165 for (size_t i = 0; i < structure->size(); ++i)
167 const TType* fieldType = (*structure)[i].type;
170 if (i != structure->size() - 1) out << ", ";
Types.h 88 maxArraySize(0), arrayInformationType(0), structure(0), structureSize(0), fieldName(0), mangled(0), typeName(0)
93 maxArraySize(0), arrayInformationType(0), structure(0), structureSize(0), fieldName(0), mangled(0), typeName(0)
96 structure = p.userDef->getStruct();
102 maxArraySize(0), arrayInformationType(0), structure(userDef), structureSize(0), fieldName(0), mangled(0)
118 if (copyOf.structure) {
119 if ((iter = remapper.find(structure)) == remapper.end()) {
120 // create the new structure here
121 structure = NewPoolTTypeList();
122 for (unsigned int i = 0; i < copyOf.structure->size(); ++i) {
124 typeLine.line = (*copyOf.structure)[i].line
285 TTypeList* structure; \/\/ 0 unless this is a struct member in class:TType
    [all...]
OutputHLSL.cpp 1904 TString structure; local
    [all...]
ParseHelper.cpp 549 error(line, "Number of constructor parameters does not match the number of structure fields", "constructor", "");
624 error(line, reason, getBasicString(pType.type), "(structure contains a sampler)");
643 error(line, "cannot be used with a structure", getQualifierString(pType.qualifier), "");
671 TTypeList& structure = *type.getStruct(); local
672 for (unsigned int i = 0; i < structure.size(); ++i) {
673 if (containsSampler(*structure[i].type))
    [all...]
glslang_tab.cpp 3902 TType& structure = static_cast<TVariable*>((yyvsp[(1) - (1)].lex).symbol)->getType(); variable
3915 TType* structure = new TType((yyvsp[(4) - (5)].interm.typeList), *(yyvsp[(2) - (5)].lex).string); variable
3929 TType* structure = new TType((yyvsp[(3) - (4)].interm.typeList), TString("")); variable
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 167 Structure* structure = vPC[3].u.structure.get(); local
170 if (structure == globalObject->structure()) {
179 if (slot.isCacheableValue() && !globalObject->structure()->isUncacheableDictionary() && slot.slotBase() == globalObject) {
180 vPC[3].u.structure.set(callFrame->globalData(), codeBlock->ownerExecutable(), globalObject->structure());
204 Structure* structure = vPC[3].u.structure.get() local
1215 Structure* structure = baseCell->structure(); local
1303 Structure* structure = baseValue.asCell()->structure(); local
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 1366 llvm::StructType *structure = local
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp 820 Structure* structure = baseCell->structure(); local
822 if (structure->isUncacheableDictionary()) {
835 // Structure transition, cache transition info
837 if (structure->isDictionary()) {
845 StructureChain* prototypeChain = structure->prototypeChain(callFrame);
846 stubInfo->initPutByIdTransition(callFrame->globalData(), codeBlock->ownerExecutable(), structure->previousID(), structure, prototypeChain);
847 JIT::compilePutByIdTransition(callFrame->scopeChain()->globalData, codeBlock, stubInfo, structure->previousID(), structure, slot.cachedOffset(), prototypeChain, returnAddress, direct)
888 Structure* structure = baseCell->structure(); local
1269 Structure* structure; local
1541 Structure* structure; local
1730 Structure* structure = baseValue.asCell()->structure(); local
3231 Structure* structure = o->structure(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.cpp 714 if (message->structure) {
715 const gchar* messageTypeName = gst_structure_get_name(message->structure);
794 const GstStructure *structure = gst_message_get_structure(message); local
795 gst_structure_get_int(structure, "buffer-percent", &m_bufferingPercentage);
1237 const GstStructure* structure = gst_value_get_structure(location); local
1472 GstStructure* structure = gst_caps_get_structure(caps, structureIndex); local
    [all...]
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/
jsilver-1.0.0.jar 

Completed in 293 milliseconds

12 3