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

123

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderFieldReference.java42 @Nonnull final BuilderTypeReference fieldType; field in class:BuilderFieldReference
47 @Nonnull BuilderTypeReference fieldType) {
50 this.fieldType = fieldType;
62 return fieldType.getType();
45 BuilderFieldReference(@onnull BuilderTypeReference definingClass, @Nonnull BuilderStringReference name, @Nonnull BuilderTypeReference fieldType) argument
H A DBuilderField.java78 return fieldReference.fieldType.getType();
H A DBuilderFieldPool.java79 return key.fieldType;
/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/chromium_org/third_party/angle/src/compiler/translator/
H A DUniformHLSL.cpp36 const TType &fieldType = *field.type(); local
37 const TLayoutMatrixPacking matrixPacking = fieldType.getLayoutQualifier().matrixPacking;
39 TStructure *structure = fieldType.getStruct();
41 if (fieldType.isMatrix())
45 return matrixPackString + " " + TypeString(fieldType);
55 return TypeString(fieldType);
249 const TType &fieldType = *field.type(); local
254 hlsl += padHelper.prePaddingString(fieldType);
258 " " + Decorate(field.name()) + ArrayString(fieldType) + ";\n";
263 const bool useHLSLRowMajorPacking = (fieldType
[all...]
H A DTypes.cpp195 const TType *fieldType = (*mFields)[i]->type(); local
196 if (fieldType->isArray() || fieldType->isStructureContainingArrays())
H A DStructureHLSL.cpp174 const TType &fieldType = *field.type(); local
175 const TStructure *fieldStruct = fieldType.getStruct();
179 TypeString(fieldType);
183 string += padHelper->prePaddingString(fieldType);
186 string += " " + fieldTypeString + " " + DecorateField(field.name(), structure) + ArrayString(fieldType) + ";\n";
190 string += padHelper->postPaddingString(fieldType, useHLSLRowMajorPacking);
H A DVariableInfo.cpp313 const TType &fieldType = *field.type(); local
316 traverser.traverse(fieldType, fullFieldName, &interfaceBlock.fields);
318 interfaceBlock.fields.back().isRowMajorLayout = (fieldType.getLayoutQualifier().matrixPacking == EmpRowMajor);
/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/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/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DMessageNanoPrinter.java116 Class<?> fieldType = field.getType();
119 if (fieldType.isArray()) {
120 Class<?> arrayType = fieldType.getComponentType();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DOdexedFieldInstructionMapper.java222 static Opcode getAndCheckDeodexedOpcodeForOdexedOpcode(@Nonnull String fieldType, @Nonnull Opcode odexedOpcode) { argument
225 int typeIndex = getTypeIndex(fieldType.charAt(0));
233 throw new AnalysisException(String.format("Incorrect field type \"%s\" for %s", fieldType,
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DFieldIdItem.java76 String fieldType = dexFile.getType(typeIndex);
81 return String.format("%s->%s:%s", classType, fieldName, fieldType);
/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

Completed in 1200 milliseconds

123