| /cts/tools/dex-tools/src/dex/structure/ |
| DexEncodedValueType.java | 17 package dex.structure;
|
| /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::__anon14533::__anon14539 [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::__anon14531 [all...] |
| /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/bluetooth/bluez/audio/ |
| gstavdtpsink.c | 325 GstStructure *structure = gst_caps_get_structure(caps, 0); local 328 name = gst_structure_get_name(structure); 336 value = gst_structure_get_value(structure, "rate"); 351 value = gst_structure_get_value(structure, "mode"); 366 value = gst_structure_get_value(structure, "allocation"); 377 value = gst_structure_get_value(structure, "subbands"); 388 value = gst_structure_get_value(structure, "blocks"); 403 value = gst_structure_get_value(structure, "bitpool"); 499 GstStructure *structure; local 507 structure = gst_structure_empty_new("audio/x-sbc") 668 GstStructure *structure; local 792 GstStructure *structure; local 958 GstStructure *structure; local 1078 GstStructure *structure; local 1530 GstStructure *structure = gst_caps_get_structure(caps, 0); local 1610 GstStructure *structure; local [all...] |
| gstrtpsbcpay.c | 132 GstStructure *structure; local 136 structure = gst_caps_get_structure(caps, 0); 137 if (!gst_structure_get_int(structure, "rate", &rate)) 139 if (!gst_structure_get_int(structure, "channels", &channels)) 141 if (!gst_structure_get_int(structure, "blocks", &blocks)) 143 if (!gst_structure_get_int(structure, "bitpool", &bitpool)) 145 if (!gst_structure_get_int(structure, "subbands", &subbands)) 148 channel_mode = gst_structure_get_string(structure, "mode");
|
| gstsbcutil.h | 66 void gst_sbc_util_set_structure_int_param(GstStructure *structure, 70 void gst_sbc_util_set_structure_string_param(GstStructure *structure,
|
| gstsbcenc.c | 173 GstStructure *structure; local 179 structure = gst_caps_get_structure(src_caps, 0); 184 gst_sbc_util_set_structure_int_param(structure, "rate", 188 gst_sbc_util_set_structure_int_param(structure, "channels", 192 gst_sbc_util_set_structure_int_param(structure, "subbands", 196 gst_sbc_util_set_structure_int_param(structure, "blocks", 200 gst_sbc_util_set_structure_int_param(structure, "bitpool", 206 gst_sbc_util_set_structure_string_param(structure, "mode", 214 gst_sbc_util_set_structure_string_param(structure, "allocation", 288 GstStructure *structure; local [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;
|
| /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...] |
| /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.
|