/external/opencv/cv/src/ |
cvcontours.cpp | 167 int approx_method1; /* approx method when tracing */ 168 int approx_method2; /* final approx method */ 195 int method, CvPoint offset ) 220 if( method < 0 || method > CV_CHAIN_APPROX_TC89_KCOS ) 223 if( header_size < (int) (method == CV_CHAIN_CODE ? sizeof( CvChain ) : sizeof( CvContour ))) 255 scanner->approx_method2 = scanner->approx_method1 = method; 257 if( method == CV_CHAIN_APPROX_TC89_L1 || method == CV_CHAIN_APPROX_TC89_KCOS ) 296 if( method > CV_CHAIN_APPROX_SIMPLE 541 int method = _method - 1; local 714 int method = _method - 1; local [all...] |
/external/pdfium/samples/fx_lpng/lpng_v163/ |
fx_pngwutil.c | 257 unsigned int z_cmf = data[0]; /* zlib compression method and flags */
328 int method = png_ptr->zlib_method;
local 350 method = png_ptr->zlib_text_method;
390 png_ptr->zlib_set_method != method ||
417 ret = deflateInit2(&png_ptr->zstream, level, method, windowBits,
[all...] |
/external/proguard/src/proguard/shrink/ |
UsageMarker.java | 108 // Explicitly mark the <clinit> method, if it's not empty. 195 // Has the method already been referenced? 215 // Has the method already been referenced? 220 // Mark the method body. 223 // Note that, if the method has been marked as possibly used, 224 // the method hierarchy has already been marked (cfr. below). 242 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 246 method.accept(clazz, UsageMarker.this); 282 // Is the method's class used [all...] |
/external/webp/include/webp/ |
encode.h | 94 int method; // quality/speed trade-off (0=fast, 6=slower-better) member in struct:WebPConfig 112 int alpha_filtering; // Predictive filtering method for alpha plane. 175 // This function will overwrite several fields from config: 'method', 'quality' 455 // adjusted accordingly. Note that this method is lossy. 470 // method is roughly 2x slower than WebPPictureARGBToYUVA() but produces better 478 // Note that the use of this method is discouraged if one has access to the
|
/external/webp/src/enc/ |
frame.c | 580 const int method = enc->method_; local 582 const int fast_probe = ((method == 0 || method == 3) && !do_search); 589 (method >= 3 || do_search) ? RD_OPT_BASIC : RD_OPT_NONE; 598 if (method == 3) { // we need more stats for method 3 to be reliable.
|
/external/webp/src/webp/ |
encode.h | 94 int method; // quality/speed trade-off (0=fast, 6=slower-better) member in struct:WebPConfig 112 int alpha_filtering; // Predictive filtering method for alpha plane. 175 // This function will overwrite several fields from config: 'method', 'quality' 455 // adjusted accordingly. Note that this method is lossy. 470 // method is roughly 2x slower than WebPPictureARGBToYUVA() but produces better 478 // Note that the use of this method is discouraged if one has access to the
|
/external/wpa_supplicant_8/src/eap_peer/ |
eap.c | 12 * functions in this file. The method functions, m.func(), are similar to the 40 EapType method); 113 wpa_printf(MSG_DEBUG, "EAP: deinitialize previously used EAP method " 122 * eap_allowed_method - Check whether EAP method is allowed 125 * @method: EAP type 126 * Returns: 1 = allowed EAP method, 0 = not allowed 128 int eap_allowed_method(struct eap_sm *sm, int vendor, u32 method) 139 m[i].method != EAP_TYPE_NONE; i++) { 140 if (m[i].vendor == vendor && m[i].method == method) 251 EapType method; local 1311 enum { EAP_SM_SIM, EAP_SM_AKA, EAP_SM_AKA_PRIME } method = EAP_SM_SIM; local 2426 u32 method; local [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_i.h | 19 * struct eap_method - EAP method interface 20 * This structure defines the EAP method interface. Each method will need to 21 * register its own EAP type, EAP name, and set of function pointers for method 26 EapType method; member in struct:eap_method 46 * free - Free EAP method data 47 * @method: Pointer to the method data registered with 50 * This function will be called when the EAP method is being 51 * unregistered. If the EAP method allocated resources durin [all...] |
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
peers.cpp | 191 enum selected_method method = SEL_METHOD_NONE; local 194 method = (enum selected_method) var.toInt(); 209 if (method == SEL_METHOD_NONE && 215 if (method == SEL_METHOD_NONE) { 1343 enum selected_method method = SEL_METHOD_NONE; local 1649 enum selected_method method = local [all...] |
/frameworks/av/media/libstagefright/wifi-display/source/ |
WifiDisplaySource.cpp | 1058 AString method; local 1060 data->getRequestField(0, &method); 1068 if (method.startsWith("RTSP/")) { [all...] |
/frameworks/base/cmds/content/src/com/android/commands/content/ |
Content.java | 116 + "usage: adb shell content call --uri <URI> --method <METHOD> [--arg <ARG>]\n" 118 + " <METHOD> is the name of a provider-defined method\n" 142 private static final String ARGUMENT_METHOD = "--method"; 263 String method = null; local 274 method = argumentValueRequired(argument); 288 if (method == null) { 289 throw new IllegalArgumentException("Content provider method not specified."); 291 return new CallCommand(uri, userId, method, arg, values) [all...] |
/frameworks/base/test-runner/src/android/test/ |
TestRunner.java | 26 import java.lang.reflect.Method; 95 * Implemented method of the interface TestListener which will listen for the 105 * Implemented method of the interface TestListener which will listen for the 118 * Implemented method of the interface TestListener which will listen for an 284 Method method = getChildrenMethod(clazz); local 285 if (method != null) { 286 String[] children = getChildren(method); 332 Method[] methods = getAllTestMethods(clazz); 333 for (Method m : methods) 689 Method method = getChildrenMethod(clazz); local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
SerializationStressTest1.java | 87 public Object method(Object objParam, Object objParam2) { method in class:SerializationStressTest1.SpecTest 91 public boolean method(boolean bParam, Object objParam) { method in class:SerializationStressTest1.SpecTest 95 public boolean method(boolean bParam, Object objParam, Object objParam2) { method in class:SerializationStressTest1.SpecTest 370 // Test for method void 397 // Test for method void 423 // Test for method void 451 // Test for method void 478 // Test for method void 507 // Test for method void 535 // Test for method voi [all...] |
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
FileIOInterruptTest.java | 182 testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method.READ); 186 testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method.READV); 189 private void testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method method) 199 if (method == ChannelReader.Method.READ) { 214 testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method.READ); 218 testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method.READV); 221 private void testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method method) 531 private final Method method; field in class:FileIOInterruptTest.ChannelReader 576 private final Method method; field in class:FileIOInterruptTest.ChannelWriter [all...] |
/prebuilts/gradle-plugin/com/android/tools/lint/lint/24.3.0-beta1/ |
lint-24.3.0-beta1.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint/24.3.0-beta2/ |
lint-24.3.0-beta2.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint/24.3.0-beta3/ |
lint-24.3.0-beta3.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint/24.3.0-beta4/ |
lint-24.3.0-beta4.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint/24.3.1/ |
lint-24.3.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint/24.4.0-alpha1/ |
lint-24.4.0-alpha1.jar | |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_weakref.py | 14 def method(self): member in class:C 30 return C().method 33 return C.method 505 # "II instance has no attribute 'J'" in <bound method II.acallback 644 # should get invoked when the bound method object callback (c.cb) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
zipfile.py | 11 import zlib # We may need its compression method namespace 734 raise RuntimeError, "That compression method is not supported" 741 self.compression = compression # Method of compression [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_weakref.py | 14 def method(self): member in class:C 30 return C().method 33 return C.method 505 # "II instance has no attribute 'J'" in <bound method II.acallback 644 # should get invoked when the bound method object callback (c.cb) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
zipfile.py | 11 import zlib # We may need its compression method namespace 734 raise RuntimeError, "That compression method is not supported" 741 self.compression = compression # Method of compression [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/ |
ManifestInfo.java | 253 * Constructs an {@link ManifestInfo} for the given project. Don't use this method; 254 * use the {@link #get} factory method instead. 642 IMethod method = (IMethod) element; 643 IType declaringType = method.getDeclaringType(); 648 || method.getElementName().equals("onCreate")) { //$NON-NLS-1$ 730 * guessActivity simply looks for references to "R.layout.foo", this method searches 774 IMethod method = (IMethod) element; 775 IType declaringType = method.getDeclaringType(); 813 IMethod method = activityType.getMethod( local 815 if (method.exists()) [all...] |