/external/chromium-trace/trace-viewer/src/tracing/analysis/ |
D | object_snapshot_view.js | 42 ObjectSnapshotView.register = function(typeName, argument 45 if (ObjectSnapshotView.typeNameToViewInfoMap[typeName]) 46 throw new Error('Handler already registered for ' + typeName); 50 ObjectSnapshotView.typeNameToViewInfoMap[typeName] = { 56 ObjectSnapshotView.unregister = function(typeName) { argument 57 if (ObjectSnapshotView.typeNameToViewInfoMap[typeName] === undefined) 58 throw new Error(typeName + ' not registered'); 59 delete ObjectSnapshotView.typeNameToViewInfoMap[typeName]; 62 ObjectSnapshotView.getViewInfo = function(typeName) { argument 63 return ObjectSnapshotView.typeNameToViewInfoMap[typeName];
|
D | object_instance_view.js | 42 ObjectInstanceView.register = function(typeName, argument 45 if (ObjectInstanceView.typeNameToViewInfoMap[typeName]) 46 throw new Error('Handler already registerd for ' + typeName); 50 ObjectInstanceView.typeNameToViewInfoMap[typeName] = { 56 ObjectInstanceView.unregister = function(typeName) { argument 57 if (ObjectInstanceView.typeNameToViewInfoMap[typeName] === undefined) 58 throw new Error(typeName + ' not registered'); 59 delete ObjectInstanceView.typeNameToViewInfoMap[typeName]; 62 ObjectInstanceView.getViewInfo = function(typeName) { argument 63 return ObjectInstanceView.typeNameToViewInfoMap[typeName];
|
D | analysis_view.js | 114 var typeName; 120 typeName = obj.objectInstance.typeName; 124 typeName = obj.typeName; 128 typeName = obj.title; 135 var customViewInfo = viewBaseType.getViewInfo(typeName);
|
/external/chromium_org/third_party/angle/samples/translator/ |
D | translator.cpp | 310 const char* typeName = NULL; in PrintActiveVariables() local 323 case SH_FLOAT: typeName = "GL_FLOAT"; break; in PrintActiveVariables() 324 case SH_FLOAT_VEC2: typeName = "GL_FLOAT_VEC2"; break; in PrintActiveVariables() 325 case SH_FLOAT_VEC3: typeName = "GL_FLOAT_VEC3"; break; in PrintActiveVariables() 326 case SH_FLOAT_VEC4: typeName = "GL_FLOAT_VEC4"; break; in PrintActiveVariables() 327 case SH_INT: typeName = "GL_INT"; break; in PrintActiveVariables() 328 case SH_INT_VEC2: typeName = "GL_INT_VEC2"; break; in PrintActiveVariables() 329 case SH_INT_VEC3: typeName = "GL_INT_VEC3"; break; in PrintActiveVariables() 330 case SH_INT_VEC4: typeName = "GL_INT_VEC4"; break; in PrintActiveVariables() 331 case SH_BOOL: typeName = "GL_BOOL"; break; in PrintActiveVariables() [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
D | ItemType.java | 52 private final String typeName; field in ItemType 63 private ItemType(int mapValue, String typeName) { in ItemType() argument 65 this.typeName = typeName; in ItemType() 68 String human = typeName; in ItemType() 90 return typeName; in getTypeName()
|
D | Statistics.java | 45 String typeName = item.typeName(); in add() local 46 Data data = dataMap.get(typeName); in add() 49 dataMap.put(typeName, new Data(item, typeName)); in add()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | FilterBar.js | 332 accept: function(typeName) argument 334 …!!this._allowedTypes[WebInspector.NamedBitSetFilterUI.ALL_TYPES] || !!this._allowedTypes[typeName]; 341 for (var typeName in this._typeFilterElements) { 342 if (allowedTypes[typeName]) 343 this._allowedTypes[typeName] = true; 354 for (var typeName in this._typeFilterElements) 355 … this._typeFilterElements[typeName].enableStyleClass("selected", this._allowedTypes[typeName]); 366 typeFilterElement.typeName = name; 382 this._toggleTypeFilter(e.target.typeName, toggle); 389 _toggleTypeFilter: function(typeName, allowMultiSelect) argument [all …]
|
D | ProfileLauncherView.js | 168 var typeName = WebInspector.settings.selectedProfileType.get(); 169 if (!(typeName in this._typeIdToOptionElement)) 170 typeName = Object.keys(this._typeIdToOptionElement)[0]; 171 this._typeIdToOptionElement[typeName].checked = true; 174 this._panel.getProfileType(typeName));
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | Dictionary.h | 119 String typeName() const { return m_propertyTypeName; } in typeName() function 202 static const String typeName() { return "UInt8"; } 211 static const String typeName() { return "Int8"; } 220 static const String typeName() { return "UInt16"; } 229 static const String typeName() { return "Int16"; } 238 static const String typeName() { return "UInt32"; } 247 static const String typeName() { return "UInt32"; } 256 static const String typeName() { return "Int32"; } 265 static const String typeName() { return "Int32"; } 274 static const String typeName() { return "UInt64"; } [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSValueTestHelper.h | 64 inline void PrintTo(const CSSValue& cssValue, ::std::ostream* os, const char* typeName = "CSSValue") 66 *os << typeName << "(" << cssValue.cssText().utf8().data() << ")"; 69 inline void PrintTo(const CSSPrimitiveValue& cssValue, ::std::ostream* os, const char* typeName = "… 71 PrintTo(*static_cast<const CSSValue*>(&cssValue), os, typeName);
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | TypeData.java | 202 protected void setType(String typeName, ClassPool cp) throws BadBytecode { in setType() argument 203 if (update(cp, expectedName, typeName)) in setType() 204 expectedName = typeName; in setType() 253 private boolean update(ClassPool cp, String oldName, String typeName) throws BadBytecode { in update() argument 254 if (typeName == null) in update() 258 else if (oldName.equals(typeName)) in update() 260 else if (typeName.charAt(0) == '[' in update() 273 CtClass cache2 = cp.get(typeName); in update() 402 protected void setType(String typeName, ClassPool cp) throws BadBytecode { in setType() argument 403 super.setType(typeName, cp); in setType() [all …]
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
D | utils.js | 34 function loadTypeSchema(typeName, defaultSchema) { argument 35 var parts = $String.split(typeName, '.'); 38 WARNING('Trying to reference "' + typeName + '" ' + 48 if (types[i].id == typeName)
|
/external/chromium-trace/trace-viewer/src/tracing/tracks/ |
D | object_instance_track.js | 49 this.heading = objectInstances[0].typeName; 237 ObjectInstanceTrack.register = function(typeName, constructor) { argument 238 if (ObjectInstanceTrack.typeNameToTrackConstructorMap[typeName]) 239 throw new Error('Handler already registered for ' + typeName); 240 ObjectInstanceTrack.typeNameToTrackConstructorMap[typeName] = 244 ObjectInstanceTrack.getTrackConstructor = function(typeName) { argument 245 return ObjectInstanceTrack.typeNameToTrackConstructorMap[typeName];
|
D | process_track_base.js | 153 instanceTypeNames.forEach(function(typeName) { argument 154 var allInstances = instancesByTypeName[typeName]; 158 var instanceViewInfo = ObjectInstanceView.getViewInfo(typeName); 159 var snapshotViewInfo = ObjectSnapshotView.getViewInfo(typeName); 189 tracing.tracks.ObjectInstanceTrack.getTrackConstructor(typeName);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | RenderSVGResource.h | 85 #define DEFINE_RENDER_SVG_RESOURCE_TYPE_CASTS(thisType, typeName) \ argument 86 …derSVGResource, resource, resource->resourceType() == typeName, resource.resourceType() == typeNam…
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
D | Resource.h | 393 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ argument 394 …DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() == Resource::typeName, … 395 …inline typeName##Resource* to##typeName##Resource(const ResourcePtr<Resource>& ptr) { return to##t…
|
/external/doclava/src/com/google/doclava/ |
D | ParameterInfo.java | 24 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg, in ParameterInfo() argument 27 mTypeName = typeName; in ParameterInfo() 41 String typeName() { in typeName() method in ParameterInfo
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | Image.h | 142 #define DEFINE_IMAGE_TYPE_CASTS(typeName) \ argument 143 DEFINE_TYPE_CASTS(typeName, Image, image, image->is##typeName(), image.is##typeName())
|
/external/doclava/src/com/google/doclava/apicheck/ |
D | XmlApiFile.java | 179 String typeName = attributes.getValue("type"); in startElement() local 180 TypeInfo type = Converter.obtainTypeFromString(typeName); in startElement() 184 value = ApiFile.parseValue(typeName, attributes.getValue("value")); in startElement() 201 String typeName = attributes.getValue("type"); in startElement() local 202 TypeInfo type = Converter.obtainTypeFromString(typeName); in startElement() 203 boolean isVarArg = typeName.endsWith("..."); in startElement() 206 mCurrentMethod.addParameter(new ParameterInfo(name, typeName, type, isVarArg, position)); in startElement()
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
D | Annotation.java | 85 public Annotation(String typeName, ConstPool cp) { in Annotation() argument 86 this(cp.addUtf8Info(Descriptor.of(typeName)), cp); in Annotation() 306 String typeName = pool.getUtf8Info(typeIndex); in write() local 308 writer.annotation(typeName, 0); in write() 312 writer.annotation(typeName, members.size()); in write()
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | Event.h | 212 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ argument 213 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##typeName())
|
/external/chromium-trace/trace-viewer/src/tracing/trace_model/ |
D | object_collection.js | 39 var typeName = instance.typeName; 40 var instancesOfTypeName = this.instancesByTypeName_[typeName]; 43 this.instancesByTypeName_[typeName] = instancesOfTypeName;
|
/external/emma/core/java12/com/vladium/emma/report/ |
D | Item.java | 114 ItemMetadata (final int typeID, final String typeName, final long attributeIDs) in ItemMetadata() argument 117 if ($assert.ENABLED) $assert.ASSERT (typeName != null, "typeName = null"); in ItemMetadata() 121 m_typeName = typeName; in ItemMetadata()
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/ |
D | DexFileClassMap.java | 49 public ClassDefItem getClassDefByName(String typeName) { in getClassDefByName() argument 50 return definedClasses.get(typeName); in getClassDefByName()
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
D | ItemType.java | 97 private ItemType(int mapValue, int sectionIndex, int itemAlignment, String typeName) { in ItemType() argument 101 this.TypeName = typeName; in ItemType()
|