/external/junit/src/junit/textui/ |
TestRunner.java | 20 * If this class defines a static <code>suite</code> method it 67 * This method can be used to start a test run 154 String method= ""; local 166 method= arg.substring(lastIndex + 1); 177 if (!method.equals("")) 178 return runSingleMethod(testCase, method, wait); 186 protected TestResult runSingleMethod(String testCase, String method, boolean wait) throws Exception { 188 Test test= TestSuite.createTest(testClass, method);
|
/external/junit/src/org/junit/internal/runners/ |
JUnit4ClassRunner.java | 5 import java.lang.reflect.Method; 31 private final List<Method> fTestMethods; 40 protected List<Method> getTestMethods() { 60 for (Method method : fTestMethods) 61 invokeTestMethod(method, notifier); 67 List<Method> testMethods= fTestMethods; 68 for (Method method : testMethods) 69 spec.addChild(methodDescription(method)); 126 Method method= iter.next(); local [all...] |
/external/kernel-headers/original/uapi/linux/ |
atmbr2684.h | 69 int method; /* BR2684_FIND_* */ member in struct:br2684_if_spec
|
/external/libchrome/dbus/ |
dbus_statistics.cc | 22 // then method (using std::string <). 26 const std::string& method) 29 method(method), 36 std::string method; member in struct:dbus::__anon15349::Stat 46 return method < other.method; 82 // Add a call to |method| for |interface|. See also MethodCall in message.h. 85 const std::string& method, 92 Stat* stat = GetStat(service, interface, method, true) [all...] |
/external/libdrm/include/drm/ |
nouveau_ioctl.h | 123 __u8 method; member in struct:nvif_ioctl_mthd_v0 125 __u8 data[]; /* method data (class.h) */
|
/external/libdrm/nouveau/nvif/ |
ioctl.h | 127 __u8 method; member in struct:nvif_ioctl_mthd_v0 129 __u8 data[]; /* method data (class.h) */
|
/external/libmicrohttpd/src/microspdy/ |
applicationlayer.c | 64 char *method = NULL; local 93 if(strcmp(":method",iterator->name) == 0) 97 method = iterator->value[0]; 135 request->method=method; 143 if(NULL == method || strlen(method) == 0 163 method,
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zEncode.cpp | 314 // it has only password method;
320 CMethodFull method;
local 322 method.NumInStreams = 1;
323 method.NumOutStreams = 1;
326 method.Id = k_AES;
328 _options.Methods.Add(method);
432 CMethodFull method;
local 433 method.NumInStreams = 1;
434 method.NumOutStreams = 1;
435 coderStreamsInfo.NumInStreams = method.NumOutStreams; [all...] |
/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_transfer.c | 658 } *method, methods[] = { local 666 method = methods - 1; 667 while ((++method)->possible) { 668 if (method->possible(nv30, filter, src, dst)) { 669 method->execute(nv30, filter, src, dst);
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/ |
BulkBeanEmitter.java | 19 import java.lang.reflect.Method; 47 Method[] getters = new Method[getterNames.length]; 48 Method[] setters = new Method[setterNames.length]; 58 private void generateGet(final Class target, final Method[] getters) { 81 private void generateSet(final Class target, final Method[] setters) { 126 Method[] getters_out, 127 Method[] setters_out) { 135 Method method = ReflectUtils.findDeclaredMethod(target, getters[i], null) local 146 Method method = ReflectUtils.findDeclaredMethod(target, setters[i], new Class[]{ types[i] }); local [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/ |
MethodDelegate.java | 31 * Delegates are a typesafe pointer to another method. Since Java does not 33 * a proxy that forwards method calls to any method with the same signature. 40 * Any interface with one method can become the interface for a delegate. 52 * delegate. It has only one method, and the interface is public. In 53 * order to create a delegate for that method, all we have to do is 81 * easily created the delegate to match the static <code>main</code> method by 91 * use any interface with one declared method to forward events to any method that 92 * matches the signature (although the method name can be different) 203 final Method method = targetClass.getMethod(methodName, proxy.getParameterTypes()); local [all...] |
MulticastDelegate.java | 98 final MethodInfo method = ReflectUtils.getMethodInfo(ReflectUtils.findInterfaceMethod(iface)); local 109 // generate proxied method 110 emitProxy(ce, method); 132 private void emitProxy(ClassEmitter ce, final MethodInfo method) { 133 final CodeEmitter e = EmitUtils.begin_method(ce, method, Constants.ACC_PUBLIC); 134 Type returnType = method.getSignature().getReturnType(); 149 e.invoke(method);
|
/external/mockwebserver/src/main/java/com/google/mockwebserver/ |
RecordedRequest.java | 35 private final String method; field in class:RecordedRequest 87 this.method = requestLine.substring(0, methodEnd); 90 this.method = null; 100 return method;
|
/external/nanohttpd/core/src/test/java/fi/iki/elonen/ |
HttpServerTest.java | 68 public Method method; field in class:HttpServerTest.TestServer 101 this.method = session.getMethod();
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
SIPResponse.java | 149 retval = "Method not allowed"; 385 * Note -- use the encode method for formatting the message. 623 * @param method 626 private final void setBranch( Via via, String method ) { 628 if (method.equals( Request.ACK ) ) { 634 } else if (method.equals( Request.CANCEL )) { 684 String method = cseq.getMethod(); local 686 newRequest.setMethod(method); 688 this.setBranch( via, method );
|
/external/opencv3/3rdparty/libwebp/enc/ |
webpenc.c | 100 // Method | 0 | 1 | 2 | 3 |(4)| 5 | 6 | 123 const int method = config->method; local 125 enc->method_ = method; 126 enc->rd_opt_level_ = (method >= 6) ? RD_OPT_TRELLIS_ALL 127 : (method >= 5) ? RD_OPT_TRELLIS 128 : (method >= 3) ? RD_OPT_BASIC 139 enc->use_tokens_ = (method >= 3) && !enc->do_search_;
|
/external/opencv3/samples/cpp/ |
stereo_match.cpp | 176 int method = scale < 1 ? INTER_AREA : INTER_CUBIC; local 177 resize(img1, temp1, Size(), scale, scale, method); 179 resize(img2, temp2, Size(), scale, scale, method);
|
/external/proguard/src/proguard/classfile/io/ |
LibraryClassReader.java | 190 LibraryMethod method = new LibraryMethod(); local 191 this.visitLibraryMember(libraryClass, method); 194 if (AccessUtil.accessLevel(method.getAccessFlags()) >= 198 reusableMethods[visibleMethodsCount++] = method;
|
/external/proguard/src/proguard/optimize/evaluation/ |
VariableOptimizer.java | 95 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 99 // method.getName(clazz).equals("abc"); 105 livenessAnalyzer.visitCodeAttribute(clazz, method, codeAttribute); 110 codeAttribute.attributesAccept(clazz, method, this); 113 (method.getAccessFlags() & ClassConstants.ACC_STATIC) != 0 || 117 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz), 118 method.getAccessFlags()); 158 System.out.println("VariableOptimizer: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)) [all...] |
/external/proguard/src/proguard/preverify/ |
CodeSubroutineInliner.java | 64 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 68 // method.getName(clazz).equals("abc"); 72 // Catch any unexpected exceptions from the actual visiting method. 76 visitCodeAttribute0(clazz, method, codeAttribute); 82 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]"); 87 method.accept(clazz, new ClassPrinter()); 95 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/ |
RobolectricTestRunner.java | 9 import java.lang.reflect.Method; 94 * into "do nothing" classes which proxy all method calls to shadow classes, just like it does 313 @Override protected Statement methodBlock(final FrameworkMethod method) { 314 setupI18nStrictState(method.getMethod(), robolectricConfig); 315 lookForLocaleAnnotation( method.getMethod(), robolectricConfig ); 321 delegate.internalBeforeTest(method.getMethod()); 323 final Statement statement = super.methodBlock(method); 330 delegate.internalAfterTest(method.getMethod()); 340 * Called before each test method is run. Sets up the simulation of the Android runtime environment. 342 @Override public void internalBeforeTest(final Method method) [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
DumpVtables.java | 40 import org.jf.dexlib2.iface.Method; 119 List<Method> methods = classProto.getVtable(); 123 Method method = methods.get(i); local 125 String methodString = i + ":" + method.getDefiningClass() + "->" + method.getName() + "("; 126 for (CharSequence parameter: method.getParameterTypes()) { 129 methodString += ")" + method.getReturnType() + "\n";
|
MethodAnalyzer.java | 66 * there's no need to perform the verification multiple times, so we wait until the method is fully analyzed and then 69 * Before calling the analyze() method, you must have initialized the ClassPath by calling 73 @Nonnull private final Method method; field in class:MethodAnalyzer 98 public MethodAnalyzer(@Nonnull ClassPath classPath, @Nonnull Method method, 104 this.method = method; 106 MethodImplementation methodImpl = method.getImplementation(); 108 throw new IllegalArgumentException("The method has no implementation") 145 Method method = this.method; local [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/ |
DebugInfo.java | 113 DexBackedMethod method = methodImpl.method; local 119 new ParameterIterator(method.getParameterTypes(), 120 method.getParameterAnnotations(), 126 if (!AccessFlags.STATIC.isSet(methodImpl.method.getAccessFlags())) { 130 @Override public String getType() { return methodImpl.method.getDefiningClass(); }
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/ |
SmaliInstruction.java | 197 SmaliMethod method = getParentMethod(); local 199 MethodAnalyzer analyzer = method.getMethodAnalyzer();
|