HomeSort by relevance Sort by last modified time
    Searched refs:targetType (Results 1 - 25 of 282) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/lang/invoke/
ConstantCallSite.java 72 * @param targetType the type of the method handle to be permanently associated with this call site
75 * or if the target returned by the hook is not of the given {@code targetType}
80 protected ConstantCallSite(MethodType targetType, MethodHandle createTargetHook) throws Throwable {
81 super(targetType, createTargetHook);
CallSite.java 140 * @param targetType the desired type of the call site
143 * or if the target returned by the hook is not of the given {@code targetType}
149 CallSite(MethodType targetType, MethodHandle createTargetHook) throws Throwable {
150 this(targetType);
MethodHandles.java     [all...]
Transformers.java     [all...]
  /external/pdfium/fxjs/xfa/
cjx_breakafter.h 22 JS_PROP(targetType);
cjx_breakbefore.h 22 JS_PROP(targetType);
cjx_breakafter.cpp 33 void CJX_BreakAfter::targetType(CFXJSE_Value* pValue,
cjx_breakbefore.cpp 33 void CJX_BreakBefore::targetType(CFXJSE_Value* pValue,
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
BracketExpr.java 45 ModelClass targetType = getTarget().getResolvedType();
46 if (targetType.isArray()) {
48 } else if (targetType.isList()) {
50 } else if (targetType.isMap()) {
55 "or array. Type detected: " + targetType.toJavaCode());
57 return targetType.getComponentType();
132 ModelClass targetType = getTarget().getResolvedType().erasure();
133 if (listType.isAssignableFrom(targetType)) {
165 ModelClass targetType = getTarget().getResolvedType();
166 if ((targetType.isList() || targetType.isMap()) &
    [all...]
FieldAccessExpr.java 107 final ModelClass targetType = getTarget().getResolvedType();
110 targetType.getCanonicalName(), mName);
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
ProxyMaker.java 48 Type targetType = Type.getType(targetClass);
49 String targetName = targetType.getInternalName();
55 writer.visitField(ACC_PUBLIC, TARGET_FIELD, targetType.getDescriptor(), null, null);
63 m.getField(proxyType, TARGET_FIELD, targetType);
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/
Asn1BerParser.java 580 Class<T> targetType) throws Asn1DecodingException {
581 if (ByteBuffer.class.equals(targetType)) {
583 } else if (byte[].class.equals(targetType)) {
591 } else if (Asn1OpaqueObject.class.equals(targetType)) {
598 if ((int.class.equals(targetType)) || (Integer.class.equals(targetType))) {
600 } else if ((long.class.equals(targetType)) || (Long.class.equals(targetType))) {
602 } else if (BigInteger.class.equals(targetType)) {
607 if (String.class.equals(targetType)) {
    [all...]
Asn1DerEncoder.java 456 public static byte[] toDer(Object source, Asn1Type targetType, Asn1Type targetElementType)
466 if ((targetType == null) || (targetType == Asn1Type.ANY)) {
470 switch (targetType) {
529 "Unsupported conversion: " + sourceType.getName() + " to ASN.1 " + targetType);
  /external/turbine/java/com/google/turbine/bytecode/
ClassFile.java 487 private final TargetType targetType;
493 TargetType targetType, Target target, TypePath path, AnnotationInfo anno) {
494 this.targetType = targetType;
509 public TargetType targetType() {
510 return targetType;
526 public enum TargetType {
    [all...]
  /external/junit/src/main/java/org/junit/experimental/theories/
ParameterSignature.java 81 private boolean isAssignableViaTypeConversion(Class<?> targetType, Class<?> candidate) {
84 return targetType.isAssignableFrom(wrapperClass);
  /packages/apps/Launcher3/src/com/android/launcher3/logging/
LoggerUtils.java 189 public static Target newTarget(int targetType, TargetExtension extension) {
191 t.type = targetType;
196 public static Target newTarget(int targetType) {
198 t.type = targetType;
  /prebuilts/tools/common/m2/repository/com/jakewharton/butterknife-compiler/8.4.0/
butterknife-compiler-8.4.0.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DeletionHandler.java 160 private void transfer(INode deleted, INode target, ConstraintType targetType, int depth) {
176 ConstraintType transfer = getCompatibleConstraint(type, targetType);
184 transfer(nextDeleted, target, targetType, depth + 1);
  /external/vogar/src/vogar/
Vogar.java 544 private enum TargetType {
554 TargetType(File defaultDeviceDir) {
578 TargetType targetType;
580 targetType = TargetType.SSH;
582 targetType = TargetType.LOCAL;
584 targetType = TargetType.ADB
    [all...]
  /external/golang-protobuf/jsonpb/
jsonpb.go 638 targetType := target.Type()
641 if targetType.Kind() == reflect.Ptr {
644 if string(inputValue) == "null" && targetType != reflect.TypeOf(&stpb.Value{}) {
647 target.Set(reflect.New(targetType.Elem()))
818 target.Set(reflect.New(targetType.Elem()))
826 if targetType.Kind() == reflect.Struct {
854 sprops := proto.GetProperties(targetType)
911 return fmt.Errorf("unknown field %q in %v", f, targetType)
917 if targetType.Kind() == reflect.Slice && targetType.Elem().Kind() != reflect.Uint8
    [all...]
  /external/turbine/java/com/google/turbine/lower/
Lower.java 48 import com.google.turbine.bytecode.ClassFile.TypeAnnotationInfo.TargetType;
277 typeAnnotations, f.type(), TargetType.FIELD, TypeAnnotationInfo.EMPTY_TARGET);
478 TargetType.SUPERTYPE,
484 result, i, TargetType.SUPERTYPE, new TypeAnnotationInfo.SuperTypeTarget(idx++));
490 TargetType.CLASS_TYPE_PARAMETER,
491 TargetType.CLASS_TYPE_PARAMETER_BOUND);
502 TargetType.METHOD_TYPE_PARAMETER,
503 TargetType.METHOD_TYPE_PARAMETER_BOUND);
508 lowerTypeAnnotations(result, e, TargetType.METHOD_THROWS, new ThrowsTarget(idx++));
516 TargetType.METHOD_RECEIVER_PARAMETER
    [all...]
  /external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
MockMethodAdvice.java 58 * @param targetType class to remove from the stack
63 Class<?> targetType) {
71 } while (!next.getClassName().equals(targetType.getName()));
  /external/deqp/modules/gles31/functional/
es31fFboSRGBWriteControlTests.cpp 552 TestFramebuffer (Context& context, const deUint32 targetType, const deUint32 colorAttachment, glw::GLuint textureAttachmentHandle, const bool isSRGB, const FboType fboType, const int idx);
555 void setTargetType (const deUint32 targetType);
577 TestFramebuffer::TestFramebuffer (Context& context, const deUint32 targetType, const deUint32 colorAttachment, glw::GLuint textureAttachmentHandle, const bool isSRGB, const FboType fboType, const int idx)
580 , m_targetType (targetType)
593 if (targetType == GL_DRAW_BUFFER)
600 if (targetType == GL_READ_BUFFER)
613 void TestFramebuffer::setTargetType (const deUint32 targetType)
615 m_targetType = targetType;
812 bool isFramebufferAttachmentSRGB (const deUint32 targetType, const deUint32 attachment) const;
814 void logState (const deUint32 targetType, const deUint32 attachment, const SamplingType samplingType) const
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/io/
JavapParser.java 20 import com.sun.tools.javac.code.TargetType;
199 TargetType targetType;
200 TargetType tt = TargetType.valueOf(targetTypeName);
202 targetType = tt;
209 switch (targetType) {
260 // if (targetType.) {
  /frameworks/base/core/java/android/transition/
TransitionSet.java 232 public TransitionSet addTarget(Class targetType) {
234 mTransitions.get(i).addTarget(targetType);
236 return (TransitionSet) super.addTarget(targetType);

Completed in 433 milliseconds

1 2 3 4 5 6 7 8 91011>>