Searched refs:typeName (Results 1 - 25 of 147) sorted by relevance

123456

/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Dobject_instance_view.js42 ObjectInstanceView.register = function(typeName,
45 if (ObjectInstanceView.typeNameToViewInfoMap[typeName])
46 throw new Error('Handler already registerd for ' + typeName);
50 ObjectInstanceView.typeNameToViewInfoMap[typeName] = {
56 ObjectInstanceView.unregister = function(typeName) {
57 if (ObjectInstanceView.typeNameToViewInfoMap[typeName] === undefined)
58 throw new Error(typeName + ' not registered');
59 delete ObjectInstanceView.typeNameToViewInfoMap[typeName];
62 ObjectInstanceView.getViewInfo = function(typeName) {
63 return ObjectInstanceView.typeNameToViewInfoMap[typeName];
[all...]
H A Dobject_snapshot_view.js42 ObjectSnapshotView.register = function(typeName,
45 if (ObjectSnapshotView.typeNameToViewInfoMap[typeName])
46 throw new Error('Handler already registered for ' + typeName);
50 ObjectSnapshotView.typeNameToViewInfoMap[typeName] = {
56 ObjectSnapshotView.unregister = function(typeName) {
57 if (ObjectSnapshotView.typeNameToViewInfoMap[typeName] === undefined)
58 throw new Error(typeName + ' not registered');
59 delete ObjectSnapshotView.typeNameToViewInfoMap[typeName];
62 ObjectSnapshotView.getViewInfo = function(typeName) {
63 return ObjectSnapshotView.typeNameToViewInfoMap[typeName];
[all...]
H A Danalysis_view.js114 var typeName;
120 typeName = obj.objectInstance.typeName;
124 typeName = obj.typeName;
128 typeName = obj.title;
135 var customViewInfo = viewBaseType.getViewInfo(typeName);
H A Danalysis_link.js59 snapshot.objectInstance.typeName + ' ' +
83 this.textContent = instance.typeName + ' ' + instance.id;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValueTestHelper.h64 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 = "CSSPrimitiveValue")
71 PrintTo(*static_cast<const CSSValue*>(&cssValue), os, typeName); local
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstMethodRef.java36 public String typeName() { method in class:CstMethodRef
H A DCstInterfaceMethodRef.java43 public String typeName() { method in class:CstInterfaceMethodRef
H A DConstant.java41 public abstract String typeName(); method in class:Constant
H A DCstEnumRef.java43 public String typeName() { method in class:CstEnumRef
H A DCstBoolean.java82 public String typeName() { method in class:CstBoolean
H A DCstKnownNull.java67 public String typeName() { method in class:CstKnownNull
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DItemType.java52 private final String typeName; field in class:ItemType
61 * @param typeName {@code non-null;} name of the type
63 private ItemType(int mapValue, String typeName) { argument
65 this.typeName = typeName;
68 String human = typeName;
90 return typeName;
H A DItem.java46 public final String typeName() { method in class:Item
H A DStatistics.java45 String typeName = item.typeName();
46 Data data = dataMap.get(typeName);
49 dataMap.put(typeName, new Data(item, typeName));
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dutils.js34 function loadTypeSchema(typeName, defaultSchema) {
35 var parts = $String.split(typeName, '.');
38 WARNING('Trying to reference "' + typeName + '" ' +
48 if (types[i].id == typeName)
/external/chromium_org/third_party/angle/samples/translator/
H A Dtranslator.cpp310 const char* typeName = NULL; local
323 case SH_FLOAT: typeName = "GL_FLOAT"; break;
324 case SH_FLOAT_VEC2: typeName = "GL_FLOAT_VEC2"; break;
325 case SH_FLOAT_VEC3: typeName = "GL_FLOAT_VEC3"; break;
326 case SH_FLOAT_VEC4: typeName = "GL_FLOAT_VEC4"; break;
327 case SH_INT: typeName = "GL_INT"; break;
328 case SH_INT_VEC2: typeName = "GL_INT_VEC2"; break;
329 case SH_INT_VEC3: typeName = "GL_INT_VEC3"; break;
330 case SH_INT_VEC4: typeName = "GL_INT_VEC4"; break;
331 case SH_BOOL: typeName
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DTypeNotPresentExceptionTest.java44 * @tests java.lang.TypeNotPresentException.typeName()
48 assertNull(e.typeName());
51 assertEquals(getClass().getName(), e.typeName());
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DDexFileClassMap.java49 public ClassDefItem getClassDefByName(String typeName) { argument
50 return definedClasses.get(typeName);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResource.h85 #define DEFINE_RENDER_SVG_RESOURCE_TYPE_CASTS(thisType, typeName) \
86 DEFINE_TYPE_CASTS(thisType, RenderSVGResource, resource, resource->resourceType() == typeName, resource.resourceType() == typeName)
/external/doclava/src/com/google/doclava/
H A DParameterInfo.java24 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg, argument
27 mTypeName = typeName;
41 String typeName() { method in class:ParameterInfo
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DFilterBar.js329 * @param {string} typeName
332 accept: function(typeName)
334 return !!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
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DDictionary.h119 String typeName() const { return m_propertyTypeName; } function in class:WebCore::Dictionary::ConversionContext
202 static const String typeName() { return "UInt8"; } function in struct:WebCore::IntegralTypeTraits
211 static const String typeName() { return "Int8"; } function in struct:WebCore::IntegralTypeTraits
220 static const String typeName() { return "UInt16"; } function in struct:WebCore::IntegralTypeTraits
229 static const String typeName() { return "Int16"; } function in struct:WebCore::IntegralTypeTraits
238 static const String typeName() { return "UInt32"; } function in struct:WebCore::IntegralTypeTraits
247 static const String typeName() { return "UInt32"; } function in struct:WebCore::IntegralTypeTraits
256 static const String typeName() { return "Int32"; } function in struct:WebCore::IntegralTypeTraits
265 static const String typeName() { return "Int32"; } function in struct:WebCore::IntegralTypeTraits
274 static const String typeName() { retur function in struct:WebCore::IntegralTypeTraits
283 static const String typeName() { return "Int64"; } function in struct:WebCore::IntegralTypeTraits
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DItem.java114 ItemMetadata (final int typeID, final String typeName, final long attributeIDs) argument
117 if ($assert.ENABLED) $assert.ASSERT (typeName != null, "typeName = null");
121 m_typeName = typeName;
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java202 protected void setType(String typeName, ClassPool cp) throws BadBytecode { argument
203 if (update(cp, expectedName, typeName))
204 expectedName = typeName;
253 private boolean update(ClassPool cp, String oldName, String typeName) throws BadBytecode { argument
254 if (typeName == null)
258 else if (oldName.equals(typeName))
260 else if (typeName.charAt(0) == '['
273 CtClass cache2 = cp.get(typeName);
402 protected void setType(String typeName, ClassPool cp) throws BadBytecode { argument
403 super.setType(typeName, c
480 setType(String typeName, ClassPool cp) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayBufferView.cpp58 const char* ArrayBufferView::typeName() function in class:WTF::ArrayBufferView

Completed in 558 milliseconds

123456