Searched defs:fieldType (Results 1 - 25 of 65) 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
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
H A DReflectionFieldDeclaration.java79 public ResolvedFieldDeclaration replaceType(ResolvedType fieldType) { argument
80 return new ReflectionFieldDeclaration(field, typeSolver, fieldType);
/external/proguard/src/proguard/obfuscate/
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
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
/external/protobuf/objectivec/
H A DGPBDescriptor.h96 @property(nonatomic, readonly) GPBFieldType fieldType; variable
/external/guice/extensions/testlib/src/com/google/inject/testing/fieldbinder/
H A DBoundFieldModule.java164 TypeLiteral<?> fieldType) {
166 this.type = fieldType;
161 BoundFieldInfo( Field field, Bind bindAnnotation, TypeLiteral<?> fieldType) 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/okhttp/android/main/java/com/squareup/okhttp/internal/
H A DPlatform.java180 private static <T> T readFieldOrNull(Object instance, Class<T> fieldType, String fieldName) { argument
186 if (value == null || !fieldType.isInstance(value)) return null;
187 return fieldType.cast(value);
197 if (delegate != null) return readFieldOrNull(delegate, fieldType, fieldName);
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DFieldDescriptor.cs45 private FieldType fieldType; field in class:Google.Protobuf.Reflection.FieldDescriptor
74 fieldType = GetFieldTypeFromProtoType(proto.Type);
185 public bool IsMap => fieldType == FieldType.Message && messageType.Proto.Options != null && messageType.Proto.Options.MapEntry;
200 public FieldType FieldType => fieldType;
230 if (fieldType != FieldType.Enum)
245 if (fieldType != FieldType.Message)
268 fieldType = FieldType.Message;
272 fieldType = FieldType.Enum;
280 if (fieldType == FieldType.Message)
293 else if (fieldType
[all...]
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyRepeatedField.java64 public RubyRepeatedField(Ruby runtime, RubyClass klazz, Descriptors.FieldDescriptor.Type fieldType, IRubyObject typeClass) { argument
66 this.fieldType = fieldType;
79 this.fieldType = Utils.rubyToFieldType(args[0]);
80 if (fieldType == Descriptors.FieldDescriptor.Type.MESSAGE
81 || fieldType == Descriptors.FieldDescriptor.Type.ENUM) {
87 Utils.validateTypeClass(context, fieldType, typeClass);
113 Utils.checkType(context, fieldType, value, (RubyModule) typeClass);
167 if (!(fieldType == Descriptors.FieldDescriptor.Type.MESSAGE &&
169 Utils.checkType(context, fieldType, valu
407 private Descriptors.FieldDescriptor.Type fieldType; field in class:RubyRepeatedField
[all...]
H A DUtils.java67 public static void checkType(ThreadContext context, Descriptors.FieldDescriptor.Type fieldType, argument
71 switch(fieldType) {
79 switch(fieldType) {
93 checkIntTypePrecision(context, fieldType, value);
109 validateStringEncoding(context.runtime, fieldType, value);
132 public static IRubyObject wrapPrimaryValue(ThreadContext context, Descriptors.FieldDescriptor.Type fieldType, Object value) { argument
134 switch (fieldType) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DOdexedFieldInstructionMapper.java235 public Opcode getAndCheckDeodexedOpcode(@Nonnull String fieldType, @Nonnull Opcode odexedOpcode) { argument
238 [getTypeIndex(fieldType.charAt(0))];
241 throw new AnalysisException(String.format("Incorrect field type \"%s\" for %s", fieldType,
/external/swiftshader/src/OpenGL/compiler/
H A DSymbolTable.cpp112 const TType *fieldType = field->type(); local
113 if(fieldType->isArray() || fieldType->isStructureContainingArrays())
123 const TType *fieldType = field->type(); local
124 if(fieldType->getBasicType() == type || fieldType->isStructureContainingType(type))
134 const TType *fieldType = field->type(); local
135 if(IsSampler(fieldType->getBasicType()) || fieldType->isStructureContainingSamplers())
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DPlatform.java472 static <T> T readFieldOrNull(Object instance, Class<T> fieldType, String fieldName) { argument
478 if (value == null || !fieldType.isInstance(value)) return null;
479 return fieldType.cast(value);
489 if (delegate != null) return readFieldOrNull(delegate, fieldType, fieldName);
/external/pdfium/fpdfsdk/
H A Dcpdfsdk_widgethandler.cpp230 FormFieldType fieldType = pWidget->GetFieldType(); local
231 if (fieldType == FormFieldType::kTextField ||
232 fieldType == FormFieldType::kComboBox) {
239 if (bFormatted && fieldType == FormFieldType::kComboBox)
H A Dcpdfsdk_interform.cpp49 bool IsFormFieldTypeComboOrText(FormFieldType fieldType) { argument
50 switch (fieldType) {
60 bool IsFormFieldTypeXFA(FormFieldType fieldType) { argument
61 switch (fieldType) {
271 FormFieldType fieldType = pField->GetFieldType(); local
272 if (!IsFormFieldTypeComboOrText(fieldType))
631 FormFieldType fieldType = pField->GetFieldType(); local
632 if (!IsFormFieldTypeComboOrText(fieldType))
648 FormFieldType fieldType = pField->GetFieldType(); local
649 if (IsFormFieldTypeComboOrText(fieldType)) {
682 FormFieldType fieldType = pField->GetFieldType(); local
707 IsNeedHighLight(FormFieldType fieldType) argument
728 SetHighlightColor(FX_COLORREF clr, FormFieldType fieldType) argument
744 GetHighlightColor(FormFieldType fieldType) argument
[all...]
H A Dcpdfsdk_widget.cpp485 FormFieldType fieldType = GetFieldType();
486 switch (fieldType) {
808 FormFieldType fieldType = GetFieldType(); local
810 if ((fieldType == FormFieldType::kCheckBox ||
811 fieldType == FormFieldType::kRadioButton) &&
839 FormFieldType fieldType = GetFieldType(); local
840 if (!m_pInterForm->IsNeedHighLight(fieldType))
860 m_pInterForm->GetHighlightColor(fieldType)));
/external/proguard/src/proguard/retrace/
H A DReTrace.java579 public void processFieldMapping(String className, String fieldType, String fieldName, String newFieldName) argument
598 fieldSet.add(new FieldInfo(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
/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...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DAndroidTranslator.java463 private boolean declareField(CtClass ctClass, String fieldName, CtClass fieldType) throws CannotCompileException, NotFoundException { argument
470 if (!getterFieldType.equals(fieldType)) {
475 CtField field = new CtField(fieldType, fieldName, ctClass);
/external/pdfium/fpdfsdk/formfiller/
H A Dcffl_interactiveformfiller.cpp480 FormFieldType fieldType = pWidget->GetFieldType(); local
482 switch (fieldType) {
/external/annotation-tools/asmx/src/org/objectweb/asm/commons/
H A DGeneratorAdapter.java1161 * @param fieldType the type of the field.
1167 final Type fieldType)
1172 fieldType.getDescriptor());
1163 fieldInsn( final int opcode, final Type ownerType, final String name, final Type fieldType) argument
/external/jcommander/src/main/java/com/beust/jcommander/
H A DJCommander.java716 Class<?> fieldType = pd.getParameterized().getType();
720 if ((fieldType == boolean.class || fieldType == Boolean.class)
725 increment = processFixedArity(args, i, pd, fieldType);
851 Class<?> fieldType) {
857 return processFixedArity(args, index, pd, fieldType, n);
861 Class<?> fieldType, int arity) {
866 (Boolean.class.isAssignableFrom(fieldType)
867 || boolean.class.isAssignableFrom(fieldType))) {
850 processFixedArity(String[] args, int index, ParameterDescription pd, Class<?> fieldType) argument
860 processFixedArity(String[] args, int originalIndex, ParameterDescription pd, Class<?> fieldType, int arity) argument

Completed in 1609 milliseconds

123