Searched refs:typeName (Results 1 - 25 of 134) 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/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
H A DCstLong.java70 public String typeName() { method in class:CstLong
H A DCstAnnotation.java73 public String typeName() { method in class:CstAnnotation
H A DCstByte.java82 public String typeName() { method in class:CstByte
/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_dx11/samples/translator/
H A Dtranslator.cpp308 const char* typeName = NULL; local
321 case SH_FLOAT: typeName = "GL_FLOAT"; break;
322 case SH_FLOAT_VEC2: typeName = "GL_FLOAT_VEC2"; break;
323 case SH_FLOAT_VEC3: typeName = "GL_FLOAT_VEC3"; break;
324 case SH_FLOAT_VEC4: typeName = "GL_FLOAT_VEC4"; break;
325 case SH_INT: typeName = "GL_INT"; break;
326 case SH_INT_VEC2: typeName = "GL_INT_VEC2"; break;
327 case SH_INT_VEC3: typeName = "GL_INT_VEC3"; break;
328 case SH_INT_VEC4: typeName = "GL_INT_VEC4"; break;
329 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/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/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/smali/dexlib/src/main/java/org/jf/dexlib/
H A DItemType.java95 * @param typeName non-null; name of the type
97 private ItemType(int mapValue, int sectionIndex, int itemAlignment, String typeName) { argument
101 this.TypeName = typeName;
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dobject_instance_track.js49 this.heading = objectInstances[0].typeName;
237 ObjectInstanceTrack.register = function(typeName, constructor) {
238 if (ObjectInstanceTrack.typeNameToTrackConstructorMap[typeName])
239 throw new Error('Handler already registered for ' + typeName);
240 ObjectInstanceTrack.typeNameToTrackConstructorMap[typeName] =
244 ObjectInstanceTrack.getTrackConstructor = function(typeName) {
245 return ObjectInstanceTrack.typeNameToTrackConstructorMap[typeName];

Completed in 375 milliseconds

123456