/external/testng/src/test/java/test/inject/ |
Sample.java | 13 ITestNGMethod[] allMethods = tc.getAllTestMethods(); 14 Assert.assertEquals(allMethods.length, 1); 15 Assert.assertEquals(allMethods[0].getMethod().getName(),"f");
|
/prebuilts/go/darwin-x86/src/go/doc/testdata/ |
e.2.golden | 35 // T4.M should appear as method of T5 only if AllMethods is set. 43 // T4.M should appear as method of T5 only if AllMethods is set. 90 // V6.M should appear as method of V1 and V5 if AllMethods is set. 98 // V4.M should appear as method of V2 and V3 if AllMethods is set. 106 // V4.M should appear as method of V2 and V3 if AllMethods is set. 114 // V4.M should appear as method of V2 and V3 if AllMethods is set. 122 // V6.M should appear as method of V1 and V5 if AllMethods is set. 128 // V6.M should appear as method of V1 and V5 if AllMethods is set.
|
e.0.golden | 35 // T4.M should appear as method of T5 only if AllMethods is set. 96 // V4.M should appear as method of V2 and V3 if AllMethods is set. 107 // V6.M should appear as method of V1 and V5 if AllMethods is set.
|
e.1.golden | 37 // T4.M should appear as method of T5 only if AllMethods is set. 98 // V4.M should appear as method of V2 and V3 if AllMethods is set. 109 // V6.M should appear as method of V1 and V5 if AllMethods is set.
|
e.go | 69 // Don't show embedded methods of exported anonymous fields unless AllMethods 74 // T4.M should appear as method of T5 only if AllMethods is set. 95 // U2.M should appear as method of U2 and as method of U3 only if AllMethods is set. 102 // U3.N should appear as method of U3 and as method of U2 only if AllMethods is set. 143 // V4.M should appear as method of V2 and V3 if AllMethods is set. 146 // V6.M should appear as method of V1 and V5 if AllMethods is set.
|
/prebuilts/go/linux-x86/src/go/doc/testdata/ |
e.2.golden | 35 // T4.M should appear as method of T5 only if AllMethods is set. 43 // T4.M should appear as method of T5 only if AllMethods is set. 90 // V6.M should appear as method of V1 and V5 if AllMethods is set. 98 // V4.M should appear as method of V2 and V3 if AllMethods is set. 106 // V4.M should appear as method of V2 and V3 if AllMethods is set. 114 // V4.M should appear as method of V2 and V3 if AllMethods is set. 122 // V6.M should appear as method of V1 and V5 if AllMethods is set. 128 // V6.M should appear as method of V1 and V5 if AllMethods is set.
|
e.0.golden | 35 // T4.M should appear as method of T5 only if AllMethods is set. 96 // V4.M should appear as method of V2 and V3 if AllMethods is set. 107 // V6.M should appear as method of V1 and V5 if AllMethods is set.
|
e.1.golden | 37 // T4.M should appear as method of T5 only if AllMethods is set. 98 // V4.M should appear as method of V2 and V3 if AllMethods is set. 109 // V6.M should appear as method of V1 and V5 if AllMethods is set.
|
e.go | 69 // Don't show embedded methods of exported anonymous fields unless AllMethods 74 // T4.M should appear as method of T5 only if AllMethods is set. 95 // U2.M should appear as method of U2 and as method of U3 only if AllMethods is set. 102 // U3.N should appear as method of U3 and as method of U2 only if AllMethods is set. 143 // V4.M should appear as method of V2 and V3 if AllMethods is set. 146 // V6.M should appear as method of V1 and V5 if AllMethods is set.
|
/prebuilts/go/darwin-x86/src/go/types/ |
type.go | 245 allMethods []*Func // ordered list of methods declared with or embedded in this interface (TODO(gri): replace with mset) 288 func (t *Interface) NumMethods() int { return len(t.allMethods) } 292 func (t *Interface) Method(i int) *Func { return t.allMethods[i] } 295 func (t *Interface) Empty() bool { return len(t.allMethods) == 0 } 302 if t.allMethods != nil { 306 var allMethods []*Func 309 allMethods = make([]*Func, 0, 1) 311 allMethods = t.methods 314 allMethods = append(allMethods, t.methods... [all...] |
lookup.go | 165 // TODO(gri) t.allMethods is sorted - use binary search 166 if i, m := lookupMethod(t.allMethods, pkg, name); m != nil { 246 // TODO(gri) allMethods is sorted - can do this more efficiently 247 for _, m := range T.allMethods { 248 _, obj := lookupMethod(ityp.allMethods, m.pkg, m.name) 262 for _, m := range T.allMethods {
|
/prebuilts/go/linux-x86/src/go/types/ |
type.go | 245 allMethods []*Func // ordered list of methods declared with or embedded in this interface (TODO(gri): replace with mset) 288 func (t *Interface) NumMethods() int { return len(t.allMethods) } 292 func (t *Interface) Method(i int) *Func { return t.allMethods[i] } 295 func (t *Interface) Empty() bool { return len(t.allMethods) == 0 } 302 if t.allMethods != nil { 306 var allMethods []*Func 309 allMethods = make([]*Func, 0, 1) 311 allMethods = t.methods 314 allMethods = append(allMethods, t.methods... [all...] |
lookup.go | 165 // TODO(gri) t.allMethods is sorted - use binary search 166 if i, m := lookupMethod(t.allMethods, pkg, name); m != nil { 246 // TODO(gri) allMethods is sorted - can do this more efficiently 247 for _, m := range T.allMethods { 248 _, obj := lookupMethod(ityp.allMethods, m.pkg, m.name) 262 for _, m := range T.allMethods {
|
/external/testng/src/main/java/org/testng/internal/ |
MethodGroupsHelper.java | 155 List<ITestNGMethod> allMethods,
187 allMethods.toArray(new ITestNGMethod[allMethods.size()]), g);
203 ITestNGMethod thisMethod = MethodGroupsHelper.findMethodNamed(tm, allMethods);
225 private static ITestNGMethod findMethodNamed(String tm, List<ITestNGMethod> allMethods) {
226 for (ITestNGMethod m : allMethods) {
|
IInvoker.java | 30 ITestNGMethod[] allMethods,
|
ConfigurationGroupMethods.java | 38 public ConfigurationGroupMethods(ITestNGMethod[] allMethods,
42 m_allMethods= allMethods;
|
MethodHelper.java | 271 List<ITestNGMethod> allMethods, IAnnotationFinder finder) {
274 ITestNGMethod[] allMethodsArray = allMethods.toArray(new ITestNGMethod[allMethods.size()]);
|
/external/javassist/src/main/javassist/tools/reflect/ |
ClassMetaobject.java | 205 Method[] allmethods = target.getClass().getMethods(); local 206 int n = allmethods.length; 209 if (allmethods[i].getName().startsWith(head)) { 211 return allmethods[i].invoke(target, args); 254 Method[] allmethods = baseclass.getDeclaredMethods(); local 255 int n = allmethods.length; 259 Method m = allmethods[i]; 280 methods[index[i] - 1] = allmethods[i];
|
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
ParentProfileTest.java | 135 private void assertValidMethodNames(Collection<String> names, Collection<Method> allMethods) { 136 Set<String> allNames = allMethods.stream()
|
/prebuilts/go/darwin-x86/src/go/doc/ |
doc.go | 88 AllMethods 108 Types: sortedTypes(r.types, mode&AllMethods != 0),
|
/prebuilts/go/linux-x86/src/go/doc/ |
doc.go | 88 AllMethods 108 Types: sortedTypes(r.types, mode&AllMethods != 0),
|
/external/testng/src/main/java/org/testng/junit/ |
JUnitMethodFinder.java | 82 Method[] allMethods = current.getDeclaredMethods(); 83 for(Method allMethod : allMethods) { 84 ITestNGMethod m = new TestNGMethod(/* allMethods[i].getDeclaringClass(), */ allMethod,
|
/external/doclava/src/com/google/doclava/ |
DoclavaDiff.java | 175 = site.apiInfo().findClass(qualifiedClassName).allMethods(); 234 Map<String, MethodInfo> allMethods = new HashMap<String, MethodInfo>(); 241 for (Map.Entry<String, MethodInfo> entry: classInfo.allMethods().entrySet()) { 242 allMethods.put(entry.getKey(), entry.getValue()); 247 methods.addAll(allMethods.values());
|
SinceTagger.java | 209 if (spec.allMethods().containsKey(method.getHashableName())) { 210 MethodInfo specMethod = spec.allMethods().get(method.getHashableName()); 222 if (superclass.allMethods().containsKey(method.getHashableName())) {
|
/dalvik/dx/src/com/android/dex/ |
ClassData.java | 56 public Method[] allMethods() {
|