Searched refs:typeName (Results 26 - 50 of 134) sorted by relevance

123456

/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstChar.java82 public String typeName() { method in class:CstChar
H A DCstDouble.java73 public String typeName() { method in class:CstDouble
H A DCstFieldRef.java52 public String typeName() { method in class:CstFieldRef
H A DCstFloat.java74 public String typeName() { method in class:CstFloat
H A DCstShort.java83 public String typeName() { method in class:CstShort
H A DCstInteger.java99 public String typeName() { method in class:CstInteger
H A DCstMemberRef.java91 return typeName() + '{' + toHuman() + '}';
H A DCstNat.java98 public String typeName() { method in class:CstNat
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dobject_collection.js39 var typeName = instance.typeName;
40 var instancesOfTypeName = this.instancesByTypeName_[typeName];
43 this.instancesByTypeName_[typeName] = instancesOfTypeName;
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dprocess_track_base.js153 instanceTypeNames.forEach(function(typeName) {
154 var allInstances = instancesByTypeName[typeName];
158 var instanceViewInfo = ObjectInstanceView.getViewInfo(typeName);
159 var snapshotViewInfo = ObjectSnapshotView.getViewInfo(typeName);
189 tracing.tracks.ObjectInstanceTrack.getTrackConstructor(typeName);
/external/doclava/src/com/google/doclava/apicheck/
H A DXmlApiFile.java179 String typeName = attributes.getValue("type");
180 TypeInfo type = Converter.obtainTypeFromString(typeName);
184 value = ApiFile.parseValue(typeName, attributes.getValue("value"));
201 String typeName = attributes.getValue("type");
202 TypeInfo type = Converter.obtainTypeFromString(typeName);
203 boolean isVarArg = typeName.endsWith("...");
206 mCurrentMethod.addParameter(new ParameterInfo(name, typeName, type, isVarArg, position));
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dsprpdata.c54 const char* typeName; local
57 typeName = fields[2][0];
60 if(strstr(typeName, usprepTypeNames[USPREP_UNASSIGNED])!=NULL){
67 }else if(strstr(typeName, usprepTypeNames[USPREP_PROHIBITED])!=NULL){
74 }else if(strstr(typeName, usprepTypeNames[USPREP_MAP])!=NULL){
/external/icu4c/test/cintltst/
H A Dsprpdata.c55 const char* typeName; local
58 typeName = fields[2][0];
61 if(strstr(typeName, usprepTypeNames[USPREP_UNASSIGNED])!=NULL){
68 }else if(strstr(typeName, usprepTypeNames[USPREP_PROHIBITED])!=NULL){
75 }else if(strstr(typeName, usprepTypeNames[USPREP_MAP])!=NULL){
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotation.java80 * @param typeName the name of the annotation interface type.
85 public Annotation(String typeName, ConstPool cp) { argument
86 this(cp.addUtf8Info(Descriptor.of(typeName)), cp);
306 String typeName = pool.getUtf8Info(typeIndex);
308 writer.annotation(typeName, 0);
312 writer.annotation(typeName, members.size());
H A DAnnotationsWriter.java276 * @param typeName the type name of the enum constant.
279 public void enumConstValue(String typeName, String constName) argument
282 enumConstValue(pool.addUtf8Info(typeName),
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dschema_utils.js84 var typeName = schemaTypes.join(" or ") + " " + schema.name;
86 return "optional " + typeName;
87 return typeName;
H A Djson_schema.js184 JSONSchemaValidator.prototype.getOrAddType = function(typeName) {
185 if (!this.types[typeName])
186 this.types[typeName] = loadTypeSchema(typeName);
187 return this.types[typeName];
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalysis_view_test.js20 function withRegisteredType(registrar, typeName,
22 registrar.register(typeName, typeConstructor, opt_options);
26 registrar.unregister(typeName);
H A Danalyze_selection.js67 objectText = objectSnapshot.objectInstance.typeName + ' ' +
82 objectText = objectInstance.typeName + ' ' +
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFResourceDict.cpp115 SkAutoTUnref<SkPDFName> typeName(
117 insert(typeName, newDict); // ref counting handled here
/external/skia/src/pdf/
H A DSkPDFResourceDict.cpp115 SkAutoTUnref<SkPDFName> typeName(
117 insert(typeName, newDict); // ref counting handled here
/external/chromium-trace/trace-viewer/src/cc/
H A Dselection.js101 return this.layer_.objectInstance.typeName;
142 return this.tile_.objectInstance.typeName;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtestidn.cpp149 const char* typeName; local
164 typeName = fields[2][0];
167 if(uprv_strstr(typeName, usprepTypeNames[USPREP_UNASSIGNED])!=NULL){
174 }else if(uprv_strstr(typeName, usprepTypeNames[USPREP_PROHIBITED])!=NULL){
181 }else if(uprv_strstr(typeName, usprepTypeNames[USPREP_MAP])!=NULL){
/external/chromium_org/third_party/icu/source/tools/gensprep/
H A Dgensprep.c344 const char* typeName; local
369 typeName = fields[2][0];
372 if(uprv_strstr(typeName, usprepTypeNames[USPREP_UNASSIGNED])!=NULL){
383 }else if(uprv_strstr(typeName, usprepTypeNames[USPREP_PROHIBITED])!=NULL){
394 }else if(uprv_strstr(typeName, usprepTypeNames[USPREP_MAP])!=NULL){
/external/icu4c/test/intltest/
H A Dtestidn.cpp150 const char* typeName; local
165 typeName = fields[2][0];
168 if(uprv_strstr(typeName, usprepTypeNames[USPREP_UNASSIGNED])!=NULL){
175 }else if(uprv_strstr(typeName, usprepTypeNames[USPREP_PROHIBITED])!=NULL){
182 }else if(uprv_strstr(typeName, usprepTypeNames[USPREP_MAP])!=NULL){

Completed in 920 milliseconds

123456