/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
UCharacterCompare.java | 35 * Main testing method 47 p.println("method name ucharacter character"); 199 * @param method 202 * UCharacter value after running method 204 * Character value after running method 206 private static void trackDifference(PrintWriter f, int ch, String method, String ucharval, String charval) 208 if (m_hashtable_.containsKey(method)) { 209 Integer value = m_hashtable_.get(method); 210 m_hashtable_.put(method, new Integer(value.intValue() + 1)); 212 m_hashtable_.put(method, new Integer(1)) 245 StringBuilder method = new StringBuilder(s); local [all...] |
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
BreakIteratorTest.java | 42 String method = null; local 46 method = "getCharacterInstance"; 50 method = "getWordInstance"; 54 method = "getLineInstance"; 58 method = "getSentenceInstance"; 69 errln("FAIL: " + method + " returned JDK BreakIterator for locale " + loc); 73 logln("INFO: " + method + " returned ICU BreakIterator for locale " + loc); 96 // logln("INFO: " + method + " returned ICU BreakIterator for locale " + loc 101 errln("FAIL: " + method + " returned JDK BreakIterator for locale " + iculoc);
|
/external/javassist/src/test/test/javassist/bytecode/analysis/ |
ScannerTest.java | 29 CtMethod method = clazz.getDeclaredMethod("doit"); local 32 Subroutine[] subs = scanner.scan(method.getMethodInfo2()); 107 CtMethod method = new CtMethod(CtClass.voidType, "doit", new CtClass[] {CtClass.intType}, clazz); local 108 MethodInfo info = method.getMethodInfo2(); 176 clazz.addMethod(method);
|
/external/jetty/src/java/org/eclipse/jetty/security/authentication/ |
BasicAuthenticator.java | 79 String method=credentials.substring(0,space); local 80 if ("basic".equalsIgnoreCase(method))
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
IntrospectionUtil.java | 23 import java.lang.reflect.Method; 36 public static boolean isJavaBeanCompliantSetter (Method method) 38 if (method == null) 41 if (method.getReturnType() != Void.TYPE) 44 if (!method.getName().startsWith("set")) 47 if (method.getParameterTypes().length != 1) 53 public static Method findMethod (Class<?> clazz, String methodName, Class<?>[] args, boolean checkInheritance, boolean strictArgs) 59 throw new NoSuchMethodException("No method name"); 61 Method method = null local 262 Method method = null; local [all...] |
/external/libjpeg-turbo/ |
jddctmgr.c | 38 * The multiplier table contents are IDCT-method-dependent. To support 39 * application changes in IDCT method between scans, we can remake the 53 /* This array contains the IDCT method code that each multiplier table 101 int method = 0; local 112 method = JDCT_ISLOW; /* jidctred uses islow-style table */ 119 method = JDCT_ISLOW; /* jidctred uses islow-style table */ 123 method = JDCT_ISLOW; /* jidctint uses islow-style table */ 130 method = JDCT_ISLOW; /* jidctred uses islow-style table */ 134 method = JDCT_ISLOW; /* jidctint uses islow-style table */ 143 method = JDCT_ISLOW; /* jidctint uses islow-style table * [all...] |
/external/libweave/src/ |
device_registration_info.h | 172 void DoCloudRequest(provider::HttpClient::Method method, 179 provider::HttpClient::Method method; member in struct:weave::DeviceRegistrationInfo::CloudRequestData 225 // This method reschedules any pending/queued fetch requests. 314 // Backoff manager for DoCloudRequest() method.
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
CallbackHelper.java | 18 import java.lang.reflect.Method; 38 Method method = (Method)methods.get(i); local 39 Object callback = getCallback(method); 46 throw new IllegalStateException("getCallback must return a Callback or a Class consistently for every Method"); 52 methodMap.put(method, index); 57 abstract protected Object getCallback(Method method); 81 public int accept(Method method, List<Method> allMethods [all...] |
DispatcherGenerator.java | 46 MethodInfo method = (MethodInfo)it.next(); local 47 if (!TypeUtils.isProtected(method.getModifiers())) { 48 CodeEmitter e = context.beginMethod(ce, method); 49 context.emitCallback(e, context.getIndex(method)); 56 e.checkcast(method.getClassInfo().getType()); 58 e.invoke(method);
|
FixedValueGenerator.java | 32 MethodInfo method = (MethodInfo)it.next(); local 33 CodeEmitter e = context.beginMethod(ce, method); 34 context.emitCallback(e, context.getIndex(method));
|
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/ |
PutStreamIntegrationTest.java | 60 Method method = session.getMethod(); local 73 String response = String.valueOf(method) + ':' + new String(body); 78 public Response serve(String uri, Method method, Map<String, String> headers, Map<String, String> parms, Map<String, String> files) {
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
CSeq.java | 59 * method field 61 protected String method; field in class:CSeq 71 * Constructor given the sequence number and method. 74 * @param method is the method string. 76 public CSeq(long seqno, String method) { 79 this.method = SIPRequest.getCannonicalName(method); 116 return buffer.append(seqno).append(SP).append(method.toUpperCase()); 120 * Get the method [all...] |
RAck.java | 54 protected String method; field in class:RAck 70 cSeqNumber).append(SP).append(method).toString(); 94 * Gets the method of RAckHeader 96 * @return method of RAckHeader 99 return this.method; 120 public void setMethod(String method) throws ParseException { 121 this.method = method;
|
RequestLine.java | 53 /** method field. 55 protected String method; field in class:RequestLine 77 if (method != null) { 78 buffer.append(method); 97 /** Constructor given the request URI and the method. 99 public RequestLine(GenericURI requestURI, String method) { 101 this.method = method; 109 return method; 129 public void setMethod(String method) { [all...] |
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/ |
HttpClient4.java | 61 final String method = request.method; local 64 final boolean isDelete = DELETE.equalsIgnoreCase(method); 65 final boolean isPost = POST.equalsIgnoreCase(method); 66 final boolean isPut = PUT.equalsIgnoreCase(method);
|
/external/opencv3/3rdparty/libjpeg/ |
jddctmgr.c | 32 * The multiplier table contents are IDCT-method-dependent. To support 33 * application changes in IDCT method between scans, we can remake the 47 /* This array contains the IDCT method code that each multiplier table 95 int method = 0; local 106 method = JDCT_ISLOW; /* jidctint uses islow-style table */ 110 method = JDCT_ISLOW; /* jidctint uses islow-style table */ 114 method = JDCT_ISLOW; /* jidctint uses islow-style table */ 118 method = JDCT_ISLOW; /* jidctint uses islow-style table */ 122 method = JDCT_ISLOW; /* jidctint uses islow-style table */ 126 method = JDCT_ISLOW; /* jidctint uses islow-style table * [all...] |
/external/opencv3/modules/python/src2/ |
hdr_parser.py | 373 Parses the function or method declaration in the form: 462 return [] # class method typedef class in function:CppHeaderParser.parse_func_decl 471 print("Error at %s:%d the function/method name is missing: '%s'" % (self.hname, self.lineno, decl_start)) 476 # it means, this is inline implementation of a class method. 695 # assume it's function or method declaration, 700 # we return parse_flag == False to prevent the parser to look inside function/method bodies 741 The main method. Parses the input file. [all...] |
/external/opencv3/samples/gpu/ |
bgfg_segm.cpp | 15 enum Method 28 "{ m method | mog | method (mog, mog2, gmg, fgd) }" 40 string method = cmd.get<string>("method"); local 42 if (method != "mog" 43 && method != "mog2" 44 && method != "gmg" 45 && method != "fgd") 47 cerr << "Incorrect method" << endl [all...] |
/external/pdfium/third_party/libjpeg/ |
fpdfapi_jddctmgr.c | 31 * The multiplier table contents are IDCT-method-dependent. To support 32 * application changes in IDCT method between scans, we can remake the 46 /* This array contains the IDCT method code that each multiplier table 94 int method = 0; local 105 method = JDCT_ISLOW; /* jidctred uses islow-style table */ 109 method = JDCT_ISLOW; /* jidctred uses islow-style table */ 113 method = JDCT_ISLOW; /* jidctred uses islow-style table */ 121 method = JDCT_ISLOW; 127 method = JDCT_IFAST; 133 method = JDCT_FLOAT [all...] |
/external/proguard/src/proguard/obfuscate/ |
MappingKeeper.java | 148 // Find the method. 152 Method method = clazz.findMethod(methodName, descriptor); local 153 if (method != null) 159 String currentNewName = MemberObfuscator.newMemberName(method); 166 ": method '" + methodReturnType + " " + methodName + JavaConstants.METHOD_ARGUMENTS_OPEN + methodArguments + JavaConstants.METHOD_ARGUMENTS_CLOSE + 173 MemberObfuscator.setFixedNewMemberName(method, newMethodName);
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_service.cc | 93 "void CallMethod(const ::google::protobuf::MethodDescriptor* method,\n" 99 " const ::google::protobuf::MethodDescriptor* method) const;\n" 101 " const ::google::protobuf::MethodDescriptor* method) const;\n"); 145 const MethodDescriptor* method = descriptor_->method(i); local 147 sub_vars["name"] = method->name(); 148 sub_vars["input_type"] = ClassName(method->input_type(), true); 149 sub_vars["output_type"] = ClassName(method->output_type(), true); 214 const MethodDescriptor* method = descriptor_->method(i) local 245 const MethodDescriptor* method = descriptor_->method(i); local 288 const MethodDescriptor* method = descriptor_->method(i); local 312 const MethodDescriptor* method = descriptor_->method(i); local [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_service.cc | 141 const MethodDescriptor* method = descriptor_->method(i); local 143 GenerateMethodSignature(printer, method, IS_CONCRETE); 146 " impl.$method$(controller, request, done);\n" 148 "method", UnderscoresToCamelCase(method)); 180 const MethodDescriptor* method = descriptor_->method(i); local 181 WriteMethodDocComment(printer, method); 182 GenerateMethodSignature(printer, method, IS_ABSTRACT) 206 const MethodDescriptor* method = descriptor_->method(i); local 254 const MethodDescriptor* method = descriptor_->method(i); local 301 const MethodDescriptor* method = descriptor_->method(i); local 348 const MethodDescriptor* method = descriptor_->method(i); local 392 const MethodDescriptor* method = descriptor_->method(i); local 414 const MethodDescriptor* method = descriptor_->method(i); local [all...] |
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/ |
MessageHandler.java | 51 * @param message The message that contains the method and parameters to 67 String method = sl4aRequest.getString(SL4A_METHOD); local 68 if (method == null || "".equals(method)) { 69 Log.e("No SL4A method specified on the Bundle. Specify one with " 73 MethodDescriptor rpc = receiverManager.getMethodDescriptor(method); 75 Log.e("Unknown RPC: \"" + method + "\""); 79 Log.d("Invoking method " + rpc.getName()); 93 Log.e("Exception while executing sl4a method", t);
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/ |
JumboStringConversionTest.java | 100 Method method = Iterables.getFirst(classDef.getMethods(), null); local 101 Assert.assertNotNull(method); 103 MethodImplementation impl = method.getImplementation(); 197 Method method = Iterables.getFirst(classDef.getMethods(), null); local 198 Assert.assertNotNull(method); 200 MethodImplementation impl = method.getImplementation();
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/ |
LazyValue.java | 53 private final SmaliMethod method; field in class:LazyValue 59 public LazyValue(SmaliMethod method, Project project, int registerNumber, String type) { 60 this.method = method; 66 public static LazyValue create(@Nonnull SmaliMethod method, @Nonnull Project project, int registerNumber, 69 return new LazyByteValue(method, project, registerNumber, type); 71 return new LazyShortValue(method, project, registerNumber, type); 73 return new LazyLongValue(method, project, registerNumber, type); 75 return new LazyIntegerValue(method, project, registerNumber, type); 77 return new LazyFloatValue(method, project, registerNumber, type) [all...] |