Searched refs:fieldType (Results 1 - 25 of 52) sorted by relevance

123

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DFieldIdItem.java38 private TypeIdItem fieldType; field in class:FieldIdItem
53 * @param fieldType the type of the field
56 private FieldIdItem(DexFile dexFile, TypeIdItem classType, TypeIdItem fieldType, StringIdItem fieldName) { argument
60 assert fieldType.dexFile == dexFile;
64 this.fieldType = fieldType;
73 * @param fieldType the type of the field
78 public static FieldIdItem internFieldIdItem(DexFile dexFile, TypeIdItem classType, TypeIdItem fieldType, argument
80 FieldIdItem fieldIdItem = new FieldIdItem(dexFile, classType, fieldType, fieldName);
89 * @param fieldType th
94 lookupFieldIdItem(DexFile dexFile, TypeIdItem classType, TypeIdItem fieldType, StringIdItem fieldName) argument
[all...]
/external/proguard/src/proguard/obfuscate/
H A DMappingProcessor.java50 * @param fieldType the original external field type.
55 String fieldType,
54 processFieldMapping(String className, String fieldType, String fieldName, String newFieldName) argument
H A DMultiMappingProcessor.java63 String fieldType,
70 fieldType,
62 processFieldMapping(String className, String fieldType, String fieldName, String newFieldName) argument
H A DMappingKeeper.java101 String fieldType,
109 String descriptor = ClassUtil.internalType(fieldType);
125 ": field '" + fieldType + " " + fieldName +
100 processFieldMapping(String className, String fieldType, String fieldName, String newFieldName) argument
/external/javassist/src/main/javassist/expr/
H A DFieldAccess.java160 CtClass fieldType
166 retType = fieldType;
170 params[0] = fieldType;
190 jc.recordType(fieldType);
225 CtClass fieldType; field in class:FieldAccess.ProceedForRead
230 fieldType = type;
251 if (fieldType instanceof CtPrimitiveType)
252 stack += ((CtPrimitiveType)fieldType).getDataSize();
259 gen.setType(fieldType);
265 c.setType(fieldType);
273 CtClass fieldType; field in class:FieldAccess.ProceedForWrite
[all...]
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMessageObject.java71 Class<?> fieldType = f.getType();
84 if (fieldType.isPrimitive()) {
85 String fname = fieldType.toString();
111 fieldType)) {
121 fieldType)) {
136 sprint(fieldType.getName() + ":");
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DDateTimeFormat.cpp113 FieldType fieldType = FieldTypeLiteral; local
136 fieldType = mapCharacterToFieldType(ch);
137 if (fieldType == FieldTypeInvalid)
140 if (fieldType == FieldTypeLiteral) {
161 fieldType = mapCharacterToFieldType(ch);
162 if (fieldType == FieldTypeInvalid)
165 if (fieldType == FieldTypeLiteral) {
185 ASSERT(fieldType != FieldTypeInvalid);
186 ASSERT(fieldType != FieldTypeLiteral);
193 if (fieldType
[all...]
H A DDateTimeFormatTest.cpp43 FieldType fieldType; member in struct:DateTimeFormatTest::Token
45 Token(FieldType fieldType, int count = 1) argument
47 , fieldType(fieldType)
49 ASSERT(fieldType != DateTimeFormat::FieldTypeLiteral);
55 , fieldType(DateTimeFormat::FieldTypeLiteral)
61 return fieldType == other.fieldType && count == other.count && string == other.string;
66 switch (fieldType) {
77 return String::format("Token(%d, %d)", fieldType, coun
188 FieldType fieldType(int index) const function in class:DateTimeFormatTest::TokenHandler
[all...]
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java163 String fieldType = finfo.getDescriptor();
166 accDesc = "()" + fieldType;
168 accDesc = "(" + Descriptor.of(clazz) + ")" + fieldType;
175 code.addGetstatic(Bytecode.THIS, fieldName, fieldType);
179 code.addGetfield(Bytecode.THIS, fieldName, fieldType);
183 code.addReturn(Descriptor.toCtClass(fieldType, pool));
214 String fieldType = finfo.getDescriptor();
217 accDesc = "(" + fieldType + ")V";
219 accDesc = "(" + Descriptor.of(clazz) + fieldType + ")V";
227 reg = code.addLoad(0, Descriptor.toCtClass(fieldType, poo
[all...]
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DNetObject.java94 Class<?> fieldType = f.getType();
104 if (fieldType.isPrimitive()) {
105 String fname = fieldType.toString();
184 Class<?> fieldType = f.getType();
194 if (fieldType.isPrimitive()) {
195 String fname = fieldType.toString();
291 Class<?> fieldType = f.getType();
304 if (fieldType.isPrimitive()) {
305 String fname = fieldType.toString();
329 } else if (GenericObject.class.isAssignableFrom(fieldType)) {
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPObject.java100 Class fieldType = f.getType();
110 if (fieldType.isPrimitive()) {
111 String fname = fieldType.toString();
191 Class fieldType = f.getType();
200 if (fieldType.isPrimitive()) {
201 String fname = fieldType.toString();
302 Class fieldType = f.getType();
315 if (fieldType.isPrimitive()) {
316 String fname = fieldType.toString();
340 } else if (GenericObject.class.isAssignableFrom(fieldType)) {
[all...]
/external/javassist/src/main/javassist/
H A DCtNewMethod.java225 String fieldType = finfo.getDescriptor();
226 String desc = "()" + fieldType;
236 code.addGetfield(Bytecode.THIS, fieldName, fieldType);
239 code.addGetstatic(Bytecode.THIS, fieldName, fieldType);
266 String fieldType = finfo.getDescriptor();
267 String desc = "(" + fieldType + ")V";
278 code.addPutfield(Bytecode.THIS, fieldName, fieldType);
282 code.addPutstatic(Bytecode.THIS, fieldName, fieldType);
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DExtension.java46 public Class<T> fieldType; field in class:Extension
52 fieldType = type.getTargetClass();
H A DMessageNanoPrinter.java98 Class <?> fieldType = field.getType();
101 if (fieldType.isArray()) {
102 Class<?> arrayType = fieldType.getComponentType();
106 print(fieldName, fieldType, value, indentBuf, buf);
115 print(fieldName, fieldType, value, indentBuf, buf);
/external/opencv/otherlibs/highgui/
H A Dgrfmt_tiff.cpp295 TiffFieldType fieldType,
303 if( fieldType != TIFF_TYPE_SHORT &&
304 fieldType != TIFF_TYPE_LONG &&
305 fieldType != TIFF_TYPE_BYTE )
322 if( fieldType == TIFF_TYPE_LONG )
331 else if( fieldType == TIFF_TYPE_SHORT )
340 else // fieldType == TIFF_TYPE_BYTE
348 assert( (offset & ~tiffMask[fieldType]) == 0 );
392 TiffFieldType fieldType = (TiffFieldType)GetWordEx(); local
399 if( fieldType
294 ReadTable( int offset, int count, TiffFieldType fieldType, int*& array, int& arraysize ) argument
671 WriteTag( TiffTag tag, TiffFieldType fieldType, int count, int value ) argument
[all...]
H A Dgrfmt_tiff.h160 void WriteTag( TiffTag tag, TiffFieldType fieldType,
/external/nist-sip/java/gov/nist/core/
H A DGenericObject.java238 Class<?> fieldType = f.getType();
239 String fname = fieldType.toString();
242 if (fieldType.isPrimitive()) {
425 Class<?> fieldType = f.getType();
435 if (fieldType.isPrimitive()) {
436 String fname = fieldType.toString();
510 Class<?> fieldType = f.getType();
520 if (fieldType.isPrimitive()) {
521 String fname = fieldType.toString();
605 Class<?> fieldType
[all...]
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java639 fieldType ();
655 fieldType ();
663 fieldType ();
687 void fieldType () throws IOException method in class:Types.methodDescriptorCompiler
/external/chromium_org/third_party/angle/src/compiler/
H A DSymbolTable.cpp86 const TType* fieldType = (*mFields)[i]->type(); local
87 if (fieldType->isArray() || fieldType->isStructureContainingArrays())
H A DVariableInfo.cpp139 const TType& fieldType = *(fields[i]->type()); local
141 getVariableInfo(fieldType,
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DOdexedFieldInstructionMapper.java317 static Opcode getAndCheckDeodexedOpcodeForOdexedOpcode(String fieldType, Opcode odexedOpcode) { argument
321 int typeIndex = getTypeIndex(fieldType.charAt(0));
334 throw new ValidationException(String.format("Incorrect field type \"%s\" for %s", fieldType,
H A DMethodAnalyzer.java2711 RegisterType fieldType = RegisterType.getRegisterTypeForTypeIdItem(field.getFieldType());
2713 if (!checkArrayFieldAssignment(fieldType.category, instructionCategory)) {
2727 RegisterType fieldType = RegisterType.getRegisterTypeForTypeIdItem(field.getFieldType());
2728 setDestinationRegisterTypeAndPropagateChanges(analyzedInstruction, fieldType);
2748 RegisterType fieldType = RegisterType.getRegisterTypeForTypeIdItem(field.getFieldType());
2750 if (!WideLowCategories.contains(fieldType.category)) {
2774 RegisterType fieldType = RegisterType.getRegisterTypeForTypeIdItem(field.getFieldType());
2776 if (fieldType.category != RegisterType.Category.Reference) {
2819 RegisterType fieldType = RegisterType.getRegisterTypeForTypeIdItem(field.getFieldType());
2821 if (!checkArrayFieldAssignment(fieldType
[all...]
H A DClassPath.java1050 String fieldType = fieldInfo[1];
1052 fieldTypes[i] = getFieldType(fieldType);
1053 fields[i] = new FieldDef(classInfo.classType, fieldName, fieldType);
1153 char fieldType = lastSuperField.type.charAt(0);
1154 if (fieldType == 'J' || fieldType == 'D') {
1189 private byte getFieldType(String fieldType) { argument
1190 switch (fieldType.charAt(0)) {
H A DDeodexUtil.java243 String fieldType = field.type;
250 TypeIdItem fieldTypeItem = TypeIdItem.lookupTypeIdItem(dexFile, fieldType);
/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp488 llvm::Type *fieldType = LayoutUnionField(*field, layout); local
490 if (!fieldType)
501 Types.getDataLayout().getABITypeAlignment(fieldType));
503 Types.getDataLayout().getTypeAllocSize(fieldType));
509 unionType = fieldType;
838 llvm::Type *fieldType) {
840 CharUnits::fromQuantity(Types.getDataLayout().getTypeAllocSize(fieldType));
842 FieldTypes.push_back(fieldType);
837 AppendField(CharUnits fieldOffset, llvm::Type *fieldType) argument

Completed in 413 milliseconds

123