Searched defs:methods (Results 76 - 100 of 281) sorted by relevance

1234567891011>>

/external/junit/src/main/java/org/junit/internal/runners/rules/
H A DRuleMemberValidator.java16 * A RuleMemberValidator validates the rule fields/methods of a
25 * validates methods with a {@link ClassRule} annotation and the
26 * {@link #RULE_METHOD_VALIDATOR} validates methods with a {@link Rule} annotation.</p>
49 * Validates methods with a {@link ClassRule} annotation.
61 * Validates methods with a {@link Rule} annotation.
72 private final boolean methods; field in class:RuleMemberValidator
77 this.methods = builder.methods;
89 List<? extends FrameworkMember<?>> members = methods ? target.getAnnotatedMethods(annotation)
113 private boolean methods; field in class:RuleMemberValidator.Builder
[all...]
/external/pdfium/fxjs/
H A Dfxjse.h56 const FXJSE_FUNCTION_DESCRIPTOR* methods; member in struct:FXJSE_CLASS_DESCRIPTOR
/external/python/cpython2/Include/
H A Dmethodobject.h11 not Python methods in user-defined classes. See classobject.h
61 the construction of methods for a class. These cannot be used for
74 PyMethodDef *methods; /* Methods of this type */ member in struct:PyMethodChain
/external/python/cpython2/Mac/Modules/dlg/
H A Ddlgsupport.py242 methods = [] variable
247 for f in methods: object.add(f)
/external/python/cpython2/Mac/Modules/list/
H A Dlistsupport.py17 OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
171 methods = [] variable
191 methods.append(f)
250 for f in methods: object.add(f)
/external/python/cpython2/Mac/Modules/menu/
H A Dmenusupport.py16 OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
98 methods = [] variable
104 for f in methods: object.add(f)
/external/python/cpython2/Mac/Modules/osa/
H A Dosasupport.py14 OBJECTPREFIX = 'OSAObj' # The prefix for object methods
95 methods = [] variable
101 for f in methods: object.add(f)
/external/python/cpython2/Mac/Modules/qdoffs/
H A Dqdoffssupport.py16 OBJECTPREFIX = OBJECTNAME + 'Obj' # The prefix for object methods
88 methods = [] variable
93 methods.append(f)
133 for f in methods: object.add(f)
/external/python/cpython2/Mac/Modules/te/
H A Dtesupport.py17 OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
200 methods = [] variable
207 methods.append(f)
212 for f in methods: object.add(f)
/external/r8/src/main/java/com/android/tools/r8/graph/
H A DDexProgramClass.java66 // We only have a class data item if there are methods or fields.
129 private boolean hasAnnotations(DexEncodedMethod[] methods) { argument
130 return methods != null && Arrays.stream(methods).anyMatch(DexEncodedMethod::hasAnnotation);
/external/r8/src/main/java/com/android/tools/r8/optimize/
H A DDebugStripper.java165 private void processMethods(DexEncodedMethod[] methods, ClassNaming naming, argument
167 if (methods == null) {
170 for (DexEncodedMethod method : methods) {
189 DexEncodedMethod[] methods) {
190 for (DexEncodedMethod method : methods) {
188 setIntialNameCounts(Reference2IntMap<DexString> nameCounts, DexEncodedMethod[] methods) argument
H A DMemberRebindingAnalysis.java108 private void computeMethodRebinding(Set<DexMethod> methods, argument
112 for (DexMethod method : methods) {
114 // We can safely ignore array types, as the corresponding methods are defined in a library.
/external/r8/src/test/java/com/android/tools/r8/jasmin/
H A DJasminBuilder.java28 private final List<String> methods = new ArrayList<>(); field in class:JasminBuilder.ClassBuilder
80 methods.add(builder.toString());
115 for (String method : methods) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableClassDef.java71 @Nullable Iterable<? extends Method> methods) {
75 if (methods == null) {
76 methods = ImmutableList.of();
87 this.directMethods = ImmutableMethod.immutableSetOf(Iterables.filter(methods, MethodUtil.METHOD_IS_DIRECT));
88 this.virtualMethods = ImmutableMethod.immutableSetOf(Iterables.filter(methods, MethodUtil.METHOD_IS_VIRTUAL));
64 ImmutableClassDef(@onnull String type, int accessFlags, @Nullable String superclass, @Nullable Collection<String> interfaces, @Nullable String sourceFile, @Nullable Collection<? extends Annotation> annotations, @Nullable Iterable<? extends Field> fields, @Nullable Iterable<? extends Method> methods) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderClassDef.java69 @Nullable Iterable<? extends BuilderMethod> methods) {
73 if (methods == null) {
74 methods = ImmutableList.of();
85 this.directMethods = ImmutableSortedSet.copyOf(Iterables.filter(methods, MethodUtil.METHOD_IS_DIRECT));
86 this.virtualMethods = ImmutableSortedSet.copyOf(Iterables.filter(methods, MethodUtil.METHOD_IS_VIRTUAL));
62 BuilderClassDef(@onnull BuilderTypeReference type, int accessFlags, @Nullable BuilderTypeReference superclass, @Nonnull BuilderTypeList interfaces, @Nullable BuilderStringReference sourceFile, @Nonnull BuilderAnnotationSet annotations, @Nullable Iterable<? extends BuilderField> fields, @Nullable Iterable<? extends BuilderMethod> methods) argument
/external/testng/src/main/java/org/testng/internal/
H A DMethodGroupsHelper.java22 * Collections of helper methods to help deal with test methods
35 * Collect all the methods that belong to the included groups and exclude all
36 * the methods that belong to an excluded group.
38 static void collectMethodsByGroup(ITestNGMethod[] methods, argument
45 for (ITestNGMethod tm : methods) {
126 * Extracts the map of groups and their corresponding methods from the <code>classes</code>.
131 ITestNGMethod[] methods = before ? cls.getBeforeGroupsMethods() : cls.getAfterGroupsMethods();
132 for (ITestNGMethod method : methods) {
140 // BeforeGroups/AfterGroups methods shoul
250 findMethodsThatBelongToGroup( ITestNGMethod method, ITestNGMethod[] methods, String groupRegexp) argument
271 findMethodsThatBelongToGroup(ITestNGMethod[] methods, String groupRegexp) argument
[all...]
/external/testng/src/main/java/org/testng/junit/
H A DJUnit4TestRunner.java40 * Needed from TestRunner in order to figure out what JUnit test methods
43 * @return the list of all JUnit test methods run
68 public void run(Class testClass, String... methods) { argument
69 start(testClass, methods);
76 public Result start(final Class testCase, final String... methods) { argument
88 if (methods.length == 0) {
92 for (String m: methods) {
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DFeatureSpecificTestSuiteBuilder.java49 * Builder methods of this class (such as {@link #named}) return this type, so
50 * that Builder methods of more derived classes can be chained onto them without
148 * Prevents the given methods from being run as part of the test suite.
155 public B suppressing(Method... methods) { argument
156 return suppressing(Arrays.asList(methods));
159 public B suppressing(Collection<Method> methods) { argument
160 suppressedTests.addAll(methods);
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
H A DProbeArrayStrategyFactoryTest.java283 private final List<AddedMethod> methods = new ArrayList<AddedMethod>(); field in class:ProbeArrayStrategyFactoryTest.ClassVisitorMock
302 methods.add(m);
318 methods.get(methods.size() - 1).name);
322 methods.get(methods.size() - 1).name);
325 methods.get(methods.size() - 1).name);
362 assertEquals(cv.methods.size(), 1);
363 cv.methods
[all...]
/external/libjpeg-turbo/
H A Djcsample.c71 downsample1_ptr methods[MAX_COMPONENTS]; member in struct:__anon10858
134 (*downsample->methods[ci]) (cinfo, compptr, in_ptr, out_ptr);
496 downsample->methods[ci] = fullsize_smooth_downsample;
500 downsample->methods[ci] = fullsize_downsample;
505 downsample->methods[ci] = jsimd_h2v1_downsample;
507 downsample->methods[ci] = h2v1_downsample;
514 downsample->methods[ci] = jsimd_h2v2_smooth_downsample;
517 downsample->methods[ci] = h2v2_smooth_downsample;
523 downsample->methods[ci] = jsimd_h2v2_downsample;
525 downsample->methods[c
[all...]
/external/ltp/tools/pounder21/src/memxfer5b/
H A Dmemxfer5b.c41 char *methods[] = { variable
51 int nmethods = sizeof(methods) / sizeof(methods[0]);
125 printf("\t%2d:\t%s\n", i, methods[i]);
181 methods[method]);
254 methods[method], size, size * cnt, tottim,
258 methods[method]);
/external/lzma/CPP/7zip/Common/
H A DCreateCoder.cpp265 CRecordVector<CMethodId> &methods)
267 methods.ClearAndSetSize(g_NumHashers);
270 methods[i] = (*g_Hashers[i]).Id;
278 methods.Add(__externalCodecs->Hashers[i].Id);
263 GetHashMethods( DECL_EXTERNAL_CODECS_LOC_VARS CRecordVector<CMethodId> &methods) argument
/external/lzma/CPP/7zip/UI/Common/
H A DHashCalc.cpp46 CObjectVector<COneMethodInfo> methods; local
61 methods.Clear();
66 if (ids.Size() != methods.Size())
67 methods.Insert(index, m);
78 if (ids.Size() != methods.Size())
79 methods.Insert(index, m);
90 const COneMethodInfo &m = methods[i];
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
H A DInlineBytecodeGenerator.java192 MethodList<?> methods,
187 wrap(TypeDescription instrumentedType, ClassVisitor classVisitor, Implementation.Context implementationContext, TypePool typePool, FieldList<FieldDescription.InDefinedShape> fields, MethodList<?> methods, int writerFlags, int readerFlags) argument
/external/openssh/
H A Dauth2.c65 /* methods */
262 packet_disconnect("no authentication methods enabled");
300 char *methods; local
374 methods = authmethods_get(authctxt);
375 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
376 partial, methods);
378 packet_put_cstring(methods);
382 free(methods);
388 * methods list. Returns 1 if allowed, or no methods list
465 char *methods, *omethods, *method, *p; local
543 list_starts_with(const char *methods, const char *method, const char *submethod) argument
575 remove_method(char **methods, const char *method, const char *submethod) argument
[all...]

Completed in 667 milliseconds

1234567891011>>