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

1 23 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
functional-cast.cpp 229 struct structure { int m; }; struct
250 typedef structure *structurep;
251 structure *p3 = structurep(p2);
296 const int structure::*psi = 0;
297 typedef const float structure::*structurecfmp;
299 typedef int structure::*structureimp;
302 void (structure::*psf)() = 0;
303 typedef int (structure::*structureimfp)();
306 typedef void (structure::*structurevmfp)();
307 (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::__anon15880::__anon15886
    [all...]
Instruction.h 35 #include "Structure.h"
54 class Structure;
57 // Structure used by op_get_by_id_self_list and op_get_by_id_proto_list instruction to hold data off the main opcode stream.
64 WriteBarrier<Structure> base;
66 WriteBarrierBase<Structure> proto;
70 void set(JSGlobalData& globalData, JSCell* owner, PolymorphicAccessStructureListStubRoutineType _stubRoutine, Structure* _base)
78 void set(JSGlobalData& globalData, JSCell* owner, PolymorphicAccessStructureListStubRoutineType _stubRoutine, Structure* _base, Structure* _proto)
86 void set(JSGlobalData& globalData, JSCell* owner, PolymorphicAccessStructureListStubRoutineType _stubRoutine, Structure* _base, StructureChain* _chain)
95 PolymorphicAccessStructureList(JSGlobalData& globalData, JSCell* owner, PolymorphicAccessStructureListStubRoutineType stubRoutine, Structure* firstBase
165 WriteBarrierBase<Structure> structure; member in union:JSC::Instruction::__anon15878
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexAnnotationImpl.java 20 import dex.structure.DexAnnotation;
21 import dex.structure.DexAnnotationAttribute;
DexParameterImpl.java 23 import dex.structure.DexAnnotation;
24 import dex.structure.DexParameter;
DexMethodImpl.java 32 import dex.structure.DexAnnotation;
33 import dex.structure.DexClass;
34 import dex.structure.DexMethod;
35 import dex.structure.DexParameter;
  /cts/tools/signature-tools/test/signature/converter/dex/
GenericSignatureParserTest.java 24 import dex.structure.DexClass;
25 import dex.structure.DexFile;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
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...]
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...]
  /external/webkit/Source/JavaScriptCore/runtime/
BooleanPrototype.cpp 40 BooleanPrototype::BooleanPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, Structure* functionStructure)
41 : BooleanObject(exec->globalData(), structure)
ErrorConstructor.cpp 32 ErrorConstructor::ErrorConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, ErrorPrototype* errorPrototype)
33 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, errorPrototype->classInfo()->className))
45 Structure* errorStructure = asInternalFunction(exec->callee())->globalObject()->errorStructure();
58 Structure* errorStructure = asInternalFunction(exec->callee())->globalObject()->errorStructure();
ErrorPrototype.cpp 38 ErrorPrototype::ErrorPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, Structure* functionStructure)
39 : ErrorInstance(&exec->globalData(), structure)
InternalFunction.cpp 44 InternalFunction::InternalFunction(JSGlobalData* globalData, JSGlobalObject* globalObject, Structure* structure, const Identifier& name)
45 : JSObjectWithGlobalObject(globalObject, structure)
JSZombie.h 30 #include "Structure.h"
37 JSZombie(JSGlobalData& globalData, const ClassInfo* oldInfo, Structure* structure)
38 : JSCell(globalData, structure)
69 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
71 return Structure::create(globalData, prototype, TypeInfo(LeafType, 0), AnonymousSlotCount, &s_info);
StructureTransitionTable.h 38 class Structure;
78 static inline Hash::Key keyForFinalizer(void* context, Structure* structure)
80 return keyForWeakGCMapFinalizer(context, structure);
84 typedef WeakGCMap<Hash::Key, Structure, WeakGCMapFinalizerCallback, Hash, HashTraits> TransitionMap;
86 static Hash::Key keyForWeakGCMapFinalizer(void* context, Structure*);
102 inline void add(JSGlobalData&, Structure*);
103 inline void remove(Structure*);
105 inline Structure* get(StringImpl* rep, unsigned attributes) const;
138 Structure* singleTransition() cons
    [all...]
Structure.h 58 class Structure : public JSCell {
61 static Structure* create(JSGlobalData& globalData, JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount, const ClassInfo* classInfo)
64 return new (&globalData) Structure(globalData, prototype, typeInfo, anonymousSlotCount, classInfo);
69 static Structure* addPropertyTransition(JSGlobalData&, Structure*, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset);
70 static Structure* addPropertyTransitionToExistingStructure(Structure*, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset);
71 static Structure* removePropertyTransition(JSGlobalData&, Structure*, const Identifier& propertyName, size_t& offset);
72 static Structure* changePrototypeTransition(JSGlobalData&, Structure*, JSValue prototype)
    [all...]
Operations.cpp 74 if (asObject(v)->structure()->typeInfo().masqueradesAsUndefined())
88 JSType type = v.asCell()->structure()->typeInfo().type();
92 if (asObject(v)->structure()->typeInfo().masqueradesAsUndefined())
  /external/webkit/Source/JavaScriptGlue/
JSRun.cpp 36 JSGlueGlobalObject::JSGlueGlobalObject(JSGlobalData& globalData, Structure* structure, JSFlags flags)
37 : JSGlobalObject(globalData, structure)
  /external/webkit/Source/WebCore/bindings/js/
JSWorkerContextBase.cpp 48 JSWorkerContextBase::JSWorkerContextBase(JSC::JSGlobalData& globalData, JSC::Structure* structure, PassRefPtr<WorkerContext> impl)
49 : JSDOMGlobalObject(globalData, structure, normalWorld(globalData), this)
  /frameworks/base/tools/aidl/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
AbstractBlenderHelper.java 38 import com.jme3.scene.plugins.blender.file.Structure;
143 * This method loads the properties if they are available and defined for the structure.
144 * @param structure
145 * the structure we read the properties from
152 protected Properties loadProperties(Structure structure, BlenderContext blenderContext) throws BlenderFileException {
154 Structure id = (Structure) structure.getFieldValue("ID");
158 Structure propertiesStructure = pProperties.fetchData(blenderContext.getInputStream()).get(0);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/bundles/
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;
44 // Structure functions.
  /external/webkit/Source/JavaScriptCore/heap/
MarkStack.cpp 35 #include "Structure.h"
60 if (cell->structure()->typeInfo().type() < CompoundType) {
65 if (!cell->structure()->typeInfo().overridesMarkChildren()) {
113 if (cell->structure()->typeInfo().type() < CompoundType) {
  /external/webkit/Source/JavaScriptCore/jit/
JITPropertyAccess.cpp 161 // Test base's structure
331 // Do the method check - check the object & its prototype's structure inline (this is the common case).
404 // As for put_by_id, get_by_id requires the offset of the Structure and the offset of the access to be patched.
479 // In order to be able to patch both the Structure, and the object offset, we store one pointer,
481 // such that the Structure & offset are always at the same distance from this.
485 // Jump to a slow case if either the base object is an immediate, or if the Structure does not match.
529 void JIT::compilePutDirectOffset(RegisterID base, RegisterID value, Structure* structure, size_t cachedOffset)
532 if (structure->isUsingInlineStorage())
540 void JIT::compileGetDirectOffset(RegisterID base, RegisterID result, Structure* structure, size_t cachedOffset
    [all...]
  /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,

Completed in 433 milliseconds

1 23 4 5 6 7 8 91011>>