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

1 2 3 4 5 6 7 8 910

  /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...]
  /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);
  /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);
  /packages/apps/Launcher3/src/com/android/launcher3/logging/
LoggerUtils.java 165 public static Target newTarget(int targetType, TargetExtension extension) {
167 t.type = targetType;
172 public static Target newTarget(int targetType) {
174 t.type = targetType;
  /external/junit/src/main/java/org/junit/experimental/theories/
ParameterSignature.java 81 private boolean isAssignableViaTypeConversion(Class<?> targetType, Class<?> candidate) {
84 return targetType.isAssignableFrom(wrapperClass);
  /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 549 private enum TargetType {
559 TargetType(File defaultDeviceDir) {
583 TargetType targetType;
585 targetType = TargetType.SSH;
587 targetType = TargetType.LOCAL;
589 targetType = TargetType.ADB
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
InlineByteBuddyMockMaker.java 314 static Throwable hideRecursiveCall(Throwable throwable, int current, Class<?> targetType) {
321 } while (!next.getClassName().equals(targetType.getName()));
  /external/deqp/modules/gles31/functional/
es31fFboSRGBWriteControlTests.cpp 560 TestFramebuffer (Context& context, const deUint32 targetType, const deUint32 colorAttachment, glw::GLuint textureAttachmentHandle, const bool isSRGB, const FboType fboType, const int idx);
563 void setTargetType (const deUint32 targetType);
587 TestFramebuffer::TestFramebuffer (Context& context, const deUint32 targetType, const deUint32 colorAttachment, glw::GLuint textureAttachmentHandle, const bool isSRGB, const FboType fboType, const int idx)
590 , m_targetType (targetType)
603 if (targetType == GL_DRAW_BUFFER)
610 if (targetType == GL_READ_BUFFER)
623 void TestFramebuffer::setTargetType (const deUint32 targetType)
625 m_targetType = targetType;
838 bool isFramebufferAttachmentSRGB (const deUint32 targetType, const deUint32 attachment) const;
840 void logState (const deUint32 targetType, const deUint32 attachment, const SamplingType samplingType) const
    [all...]
es31fSRGBDecodeTests.cpp 403 const glu::TextureTestUtil::TextureType targetType,
444 const glu::TextureTestUtil::TextureType targetType,
456 , m_targetType (targetType)
868 void addTexture (const glu::TextureTestUtil::TextureType targetType,
1061 void SRGBTestCase::addTexture ( const glu::TextureTestUtil::TextureType targetType,
1071 SRGBTestTexture* texture = new SRGBTestTexture(m_context, targetType, m_internalFormat, width, height, color, wrapS, wrapT, minFilter, magFilter, decoding);
    [all...]
  /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);
  /frameworks/support/transition/src/android/support/transition/
TransitionSet.java 245 public TransitionSet addTarget(@NonNull Class targetType) {
247 mTransitions.get(i).addTarget(targetType);
249 return (TransitionSet) super.addTarget(targetType);
  /prebuilts/tools/common/m2/repository/com/jakewharton/butterknife/7.0.1/
butterknife-7.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/butterknife-annotations/8.4.0/
butterknife-annotations-8.4.0.jar 
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
ThrowingProviderBinder.java 204 public ScopedBindingBuilder to(Class<? extends P> targetType) {
205 return to(Key.get(targetType));
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4.2/
ecj-4.4.2.jar 
  /external/dagger2/lib/
auto-factory-1.0-20150915.183854-35.jar 
  /prebuilts/devtools/tools/lib/
ecj-4.4.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/
ecj-4.4.jar 

Completed in 1108 milliseconds

1 2 3 4 5 6 7 8 910