/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
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...] |
/cts/tools/dex-tools/src/dex/reader/ |
DexAnnotationAttributeImpl.java | 20 import dex.structure.DexAnnotation; 21 import dex.structure.DexAnnotationAttribute; 22 import dex.structure.DexEncodedValue;
|
DexEncodedAnnotationImpl.java | 20 import dex.structure.DexAnnotation; 21 import dex.structure.DexAnnotationAttribute; 22 import dex.structure.DexEncodedAnnotation; 23 import dex.structure.DexEncodedValueType;
|
TypeFormatter.java | 19 import dex.structure.DexAnnotation; 20 import dex.structure.DexClass; 21 import dex.structure.DexField; 22 import dex.structure.DexFile; 23 import dex.structure.DexMethod;
|
DexFieldImpl.java | 21 import dex.structure.DexAnnotation; 22 import dex.structure.DexClass; 23 import dex.structure.DexField;
|
/development/tools/line_endings/ |
Android.mk | 3 # Copies files into the directory structure described by a manifest
|
/external/webkit/Source/JavaScriptCore/runtime/ |
NativeErrorPrototype.cpp | 34 NativeErrorPrototype::NativeErrorPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, const UString& nameAndMessage, NativeErrorConstructor* constructor) 35 : JSObjectWithGlobalObject(globalObject, structure)
|
NumberObject.cpp | 34 NumberObject::NumberObject(JSGlobalData& globalData, Structure* structure) 35 : JSWrapperObject(globalData, structure)
|
StringObjectThatMasqueradesAsUndefined.h | 40 StringObjectThatMasqueradesAsUndefined(ExecState* exec, Structure* structure, const UString& string) 41 : StringObject(exec, structure, string) 45 static Structure* createStructure(JSGlobalData& globalData, JSValue proto) 47 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
|
DateInstance.cpp | 37 DateInstance::DateInstance(ExecState* exec, Structure* structure) 38 : JSWrapperObject(exec->globalData(), structure) 44 DateInstance::DateInstance(ExecState* exec, Structure* structure, double time) 45 : JSWrapperObject(exec->globalData(), structure)
|
StringObject.cpp | 32 StringObject::StringObject(ExecState* exec, Structure* structure) 33 : JSWrapperObject(exec->globalData(), structure) 39 StringObject::StringObject(JSGlobalData& globalData, Structure* structure, JSString* string) 40 : JSWrapperObject(globalData, structure) 46 StringObject::StringObject(ExecState* exec, Structure* structure, const UString& string) 47 : JSWrapperObject(exec->globalData(), structure)
|
JSWrapperObject.h | 33 explicit JSWrapperObject(JSGlobalData&, Structure*); 39 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype) 41 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info); 53 inline JSWrapperObject::JSWrapperObject(JSGlobalData& globalData, Structure* structure) 54 : JSNonFinalObject(globalData, structure)
|
JSPropertyNameIterator.h | 48 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype) 50 return Structure::create(globalData, prototype, TypeInfo(CompoundType, OverridesMarkChildren), AnonymousSlotCount, &s_info); 68 void setCachedStructure(JSGlobalData& globalData, Structure* structure) 71 ASSERT(structure); 72 m_cachedStructure.set(globalData, this, structure); 74 Structure* cachedStructure() { return m_cachedStructure.get(); } 83 WriteBarrier<Structure> m_cachedStructure; 90 inline void Structure::setEnumerationCache(JSGlobalData& globalData, JSPropertyNameIterator* enumerationCache) 96 inline JSPropertyNameIterator* Structure::enumerationCache( [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 | 168 struct structure { int m; }; struct 186 structure *p3 = (structure*)(p2); 222 const int structure::*psi = 0; 223 (void)(const float structure::*)(psi); 224 (void)(int structure::*)(psi); // const_cast appended 226 void (structure::*psf)() = 0; 227 (void)(int (structure::*)())(psf); 229 (void)(void (structure::*)())(psi); // expected-error {{C-style cast from 'const int structure::*' to 'void (structure::*)()' is not allowed} [all...] |
/external/webkit/Source/WebCore/platform/graphics/gstreamer/ |
PlatformVideoWindowMac.mm | 42 if (gst_structure_has_name(message->structure, "have-ns-view")) { 43 m_videoWindow = static_cast<PlatformWidget>(g_value_get_pointer(gst_structure_get_value(message->structure, "nsview")));
|
/build/tools/atree/ |
Android.mk | 3 # Copies files into the directory structure described by a manifest
|
/cts/tools/dex-tools/test/dex/reader/ |
DexTestsCommon.java | 28 import dex.structure.DexAnnotatedElement; 29 import dex.structure.DexAnnotation; 30 import dex.structure.DexClass; 31 import dex.structure.DexField; 32 import dex.structure.DexFile; 33 import dex.structure.DexMethod; 34 import dex.structure.DexParameter; 35 import dex.structure.WithModifiers;
|
LargeDexTests.java | 21 import dex.structure.DexClass; 22 import dex.structure.DexFile;
|
/cts/tools/dex-tools/src/dex/structure/ |
DexAnnotation.java | 17 package dex.structure;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/ |
IPage.java | 11 package org.eclipse.wb.internal.core.editor.structure; 21 * @coverage core.editor.structure
|
/external/libvpx/examples/includes/geshi/contrib/ |
langcheck.php | 248 report_error(TYPE_ERROR, 'Language file does not contain a $language_data structure to check!'); 250 report_error(TYPE_ERROR, 'Language file contains a $language_data structure which is not an array!'); 262 report_error(TYPE_ERROR, 'Language file contains no $language_data[\'COMMENT_SIGNLE\'] structure to check!'); 264 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'COMMENT_SINGLE\'] structure which is not an array!'); 268 report_error(TYPE_ERROR, 'Language file contains no $language_data[\'COMMENT_MULTI\'] structure to check!'); 270 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'COMMENT_MULTI\'] structure which is not an array!'); 275 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'COMMENT_REGEXP\'] structure which is not an array!'); 280 report_error(TYPE_ERROR, 'Language file contains no $language_data[\'QUOTEMARKS\'] structure to check!'); 282 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'QUOTEMARKS\'] structure which is not an array!'); 287 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'HARDQUOTE\'] structure which is not an array!') [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/ |
MaterialContext.java | 8 import com.jme3.scene.plugins.blender.file.Structure; 40 /* package */final List<Structure> mTexs; 41 /* package */final List<Structure> textures; 43 /* package */final Map<Texture, Structure> textureToMTexMap; 62 /* package */MaterialContext(Structure structure, BlenderContext blenderContext) throws BlenderFileException { 63 name = structure.getName(); 65 int mode = ((Number) structure.getFieldValue("mode")).intValue(); 70 int diff_shader = ((Number) structure.getFieldValue("diff_shader")).intValue(); 74 float r = ((Number) structure.getFieldValue("r")).floatValue() [all...] |
/external/mesa3d/src/glsl/ |
glsl_types.cpp | 93 this->fields.structure = hieralloc_array(this->mem_ctx, 96 this->fields.structure[i].type = fields[i].type; 97 this->fields.structure[i].name = hieralloc_strdup(this->fields.structure, 384 if (key1->fields.structure[i].type != key2->fields.structure[i].type) 386 if (strcmp(key1->fields.structure[i].name, 387 key2->fields.structure[i].name) != 0) 409 "%p", (void *) key->fields.structure[i].type); 449 if (strcmp(name, this->fields.structure[i].name) == 0 [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
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...] |