Searched defs:target (Results 226 - 250 of 2230) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/state_tracker/
H A Dst_gen_mipmap.c56 GLenum target)
61 baseImage = _mesa_get_tex_image(ctx, texObj, target, texObj->BaseLevel);
77 st_generate_mipmap(struct gl_context *ctx, GLenum target, argument
95 lastLevel = compute_num_levels(ctx, texObj, target) - 1;
139 if (pt->target == PIPE_TEXTURE_CUBE) {
140 first_layer = last_layer = _mesa_tex_target_to_face(target);
163 _mesa_generate_mipmap(ctx, target, texObj);
54 compute_num_levels(struct gl_context *ctx, struct gl_texture_object *texObj, GLenum target) argument
/external/mockito/src/main/java/org/mockito/internal/exceptions/stacktrace/
H A DStackTraceFilter.java28 public StackTraceElement[] filter(StackTraceElement[] target, boolean keepTop) { argument
32 for (StackTraceElement element : target) {
/external/mockito/src/main/java/org/mockito/internal/junit/
H A DJUnitRule.java34 public Statement apply(final Statement base, final FrameworkMethod method, final Object target) { argument
38 .name(target.getClass().getSimpleName() + "." + method.getName())
41 .initMocks(target)
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
H A DBeanPropertySetter.java19 private final Object target; field in class:BeanPropertySetter
25 * @param target The target on which the setter must be invoked
29 public BeanPropertySetter(final Object target, final Field propertyField, boolean reportNoSetterFound) { argument
31 this.target = target;
37 * @param target The target on which the setter must be invoked
40 public BeanPropertySetter(final Object target, final Field propertyField) { argument
41 this(target, propertyFiel
[all...]
H A DFieldReader.java13 final Object target; field in class:FieldReader
17 public FieldReader(Object target, Field field) { argument
18 this.target = target;
29 return field.get(target);
31 throw new MockitoException("Cannot read state from field: " + field + ", on instance: " + target);
/external/mockito/src/main/java/org/mockito/invocation/
H A DInvocationFactory.java40 * @param target the mock object the method is invoked on.
50 Invocation createInvocation(Object target, MockCreationSettings settings, Method method, Callable realMethod, Object... args); argument
66 * @param target the mock object the method is invoked on.
76 Invocation createInvocation(Object target, MockCreationSettings settings, Method method, RealMethodBehavior realMethod, Object... args); argument
/external/mockito/subprojects/android/src/main/java/org/mockito/android/internal/creation/
H A DAndroidTempFileLocator.java14 final static File target; field in class:AndroidTempFileLocator
19 String user = System.getProperty("org.mockito.android.target");
46 target = t;
/external/pdfium/fxjs/xfa/
H A Dcjx_breakafter.cpp45 void CJX_BreakAfter::target(CFXJSE_Value* pValue, function in class:CJX_BreakAfter
H A Dcjx_breakbefore.cpp45 void CJX_BreakBefore::target(CFXJSE_Value* pValue, function in class:CJX_BreakBefore
H A Dcjx_delta.cpp38 void CJX_Delta::target(CFXJSE_Value* pValue, function in class:CJX_Delta
H A Dcjx_submit.cpp39 void CJX_Submit::target(CFXJSE_Value* pValue, function in class:CJX_Submit
/external/proguard/src/proguard/classfile/attribute/annotation/target/
H A DCatchTargetInfo.java21 package proguard.classfile.attribute.annotation.target;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
29 * Representation of a 'catch' annotation target.
H A DEmptyTargetInfo.java21 package proguard.classfile.attribute.annotation.target;
25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
28 * Representation of an empty annotation target.
H A DFormalParameterTargetInfo.java21 package proguard.classfile.attribute.annotation.target;
25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
28 * Representation of a formal parameter annotation target.
H A DOffsetTargetInfo.java21 package proguard.classfile.attribute.annotation.target;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
29 * Representation of an offset annotation target.
H A DSuperTypeTargetInfo.java21 package proguard.classfile.attribute.annotation.target;
25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
28 * Representation of a super type annotation target.
H A DTargetInfo.java21 package proguard.classfile.attribute.annotation.target;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
29 * Representation of an annotation target.
56 * Returns the type of the target.
H A DThrowsTargetInfo.java21 package proguard.classfile.attribute.annotation.target;
25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
28 * Representation of a 'throws' annotation target.
H A DTypeArgumentTargetInfo.java21 package proguard.classfile.attribute.annotation.target;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
29 * Representation of an offset annotation target.
H A DTypeParameterBoundTargetInfo.java21 package proguard.classfile.attribute.annotation.target;
25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
28 * Representation of a type parameter bound annotation target.
H A DTypeParameterTargetInfo.java21 package proguard.classfile.attribute.annotation.target;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
29 * Representation of a type parameter annotation target.
/external/proguard/src/proguard/classfile/attribute/annotation/target/visitor/
H A DLocalVariableTargetElementVisitor.java21 package proguard.classfile.attribute.annotation.target.visitor;
26 import proguard.classfile.attribute.annotation.target.*;
/external/protobuf/csharp/src/Google.Protobuf/Compatibility/
H A DTypeExtensions.cs49 /// Returns true if the target type is a value type, including a nullable value type or an enum, or false
52 internal static bool IsValueType(this Type target) argument
54 return target.GetTypeInfo().IsValueType;
60 internal static bool IsAssignableFrom(this Type target, Type c) argument
62 return target.GetTypeInfo().IsAssignableFrom(c.GetTypeInfo());
70 internal static PropertyInfo GetProperty(this Type target, string name) argument
73 while (target != null)
75 var typeInfo = target.GetTypeInfo();
81 target = typeInfo.BaseType;
97 internal static MethodInfo GetMethod(this Type target, strin argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DOpenGLSystem.java53 public static final void bindTexture(int target, int texture) { argument
55 sGL.glBindTexture(target, texture);
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowObjectAnimatorTest.java16 private final AnimatorTarget target = new AnimatorTarget(); field in class:ShadowObjectAnimatorTest
43 final ObjectAnimator animator = ObjectAnimator.ofInt(target, "transparency", 0, 1, 2, 3, 4);
51 assertThat(target.getTransparency()).isEqualTo(0);
56 assertThat(target.getTransparency()).isEqualTo(4);

Completed in 381 milliseconds

1234567891011>>