HomeSort by relevance Sort by last modified time
    Searched refs:meth (Results 76 - 100 of 387) sorted by null

1 2 34 5 6 7 8 91011>>

  /art/test/044-proxy/src/
BasicTest.java 89 Method meth = methods[methods.length -1]; local
90 System.out.println("Decl annos: " + Arrays.deepToString(meth.getDeclaredAnnotations()));
91 Annotation[][] paramAnnos = meth.getParameterAnnotations();
94 System.out.println("Modifiers: " + meth.getModifiers());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_curses.py 39 for meth in [stdscr.addch, stdscr.addstr]:
42 meth(*args)
44 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
53 meth()
test_py3kwarn.py 146 meth = {}.get
148 self.assertWarning(func < meth, w, expected)
150 self.assertWarning(func > meth, w, expected)
152 self.assertWarning(meth <= func, w, expected)
154 self.assertWarning(meth >= func, w, expected)
156 self.assertNoWarning(meth == func, w)
157 self.assertNoWarning(meth != func, w)
  /external/clang/test/Index/
get-cursor.cpp 43 void meth() { function in struct:LocalS
  /external/libmojo/third_party/markupsafe/
__init__.py 49 :meth:`escape` classmethod to create a :class:`Markup` object:
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_curses.py 39 for meth in [stdscr.addch, stdscr.addstr]:
42 meth(*args)
44 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
53 meth()
test_py3kwarn.py 146 meth = {}.get
148 self.assertWarning(func < meth, w, expected)
150 self.assertWarning(func > meth, w, expected)
152 self.assertWarning(meth <= func, w, expected)
154 self.assertWarning(meth >= func, w, expected)
156 self.assertNoWarning(meth == func, w)
157 self.assertNoWarning(meth != func, w)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_curses.py 39 for meth in [stdscr.addch, stdscr.addstr]:
42 meth(*args)
44 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
53 meth()
  /prebuilts/go/darwin-x86/src/runtime/
error.go 95 func panicwrap(pkg, typ, meth string) {
96 panic(plainError("value method " + pkg + "." + typ + "." + meth + " called using nil *" + typ + " pointer"))
  /prebuilts/go/linux-x86/src/runtime/
error.go 95 func panicwrap(pkg, typ, meth string) {
96 panic(plainError("value method " + pkg + "." + typ + "." + meth + " called using nil *" + typ + " pointer"))
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclrun.swg 305 swig_method *meth;
455 meth = cls->methods;
456 while (meth && meth->name) {
458 size_t meth_len = strlen(meth->name);
461 where = strstr(where, meth->name);
472 Tcl_AppendElement(interp, (char *) meth->name);
473 meth++;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_curses.py 39 for meth in [stdscr.addch, stdscr.addstr]:
42 meth(*args)
44 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
53 meth()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_curses.py 39 for meth in [stdscr.addch, stdscr.addstr]:
42 meth(*args)
44 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
53 meth()
  /art/test/074-gc-thrash/src/
Main.java 79 Method meth; local
81 meth = vmdClass.getMethod("dumpHprofData", String.class);
87 return meth;
  /art/test/130-hprof/src/
Main.java 222 Method meth; local
224 meth = vmdClass.getMethod("dumpHprofData", String.class);
230 return meth;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMException.java 358 Method meth = local
362 if (null != meth) {
365 exception = (Throwable) meth.invoke(exception, (Class<?>) null);
  /external/boringssl/src/crypto/evp/
evp.c 209 const EVP_PKEY_ASN1_METHOD *meth = evp_pkey_asn1_find(nid); local
210 if (meth == NULL) {
213 return meth->pkey_id;
  /external/boringssl/src/crypto/fipsmodule/ec/
internal.h 115 const EC_METHOD *meth; member in struct:ec_group_st
139 const EC_METHOD *meth; member in struct:ec_point_st
147 EC_GROUP *ec_group_new(const EC_METHOD *meth);
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
PerfTest.java 386 String meth = (String) iter.next(); local
388 // Call meth to set up the test
390 Function testFunction = testProvider.getTestCmd(meth);
392 throw new RuntimeException(meth
396 throw new RuntimeException(meth
402 long loops = getIteration(meth, testFunction);
409 System.out.println("= " + meth + " begin " + iterations);
411 System.out.println("= " + meth + " begin " + time + " seconds");
414 System.out.println("= " + meth + " begin ");
423 System.out.println("= " + meth + " end " + (t / 1000.0) + " loops: " + loops + " operations:
    [all...]
  /external/python/cpython2/Lib/
urllib2.py 354 for meth in dir(handler):
355 if meth in ["redirect_request", "do_open", "proxy_open"]:
359 i = meth.find("_")
360 protocol = meth[:i]
361 condition = meth[i+1:]
365 kind = meth[j+1:]
426 meth = getattr(processor, meth_name)
427 req = meth(req)
434 meth = getattr(processor, meth_name)
435 response = meth(req, response
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
urllib2.py 329 for meth in dir(handler):
330 if meth in ["redirect_request", "do_open", "proxy_open"]:
334 i = meth.find("_")
335 protocol = meth[:i]
336 condition = meth[i+1:]
340 kind = meth[j+1:]
401 meth = getattr(processor, meth_name)
402 req = meth(req)
409 meth = getattr(processor, meth_name)
410 response = meth(req, response
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
urllib2.py 329 for meth in dir(handler):
330 if meth in ["redirect_request", "do_open", "proxy_open"]:
334 i = meth.find("_")
335 protocol = meth[:i]
336 condition = meth[i+1:]
340 kind = meth[j+1:]
401 meth = getattr(processor, meth_name)
402 req = meth(req)
409 meth = getattr(processor, meth_name)
410 response = meth(req, response
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib2.py 329 for meth in dir(handler):
330 if meth in ["redirect_request", "do_open", "proxy_open"]:
334 i = meth.find("_")
335 protocol = meth[:i]
336 condition = meth[i+1:]
340 kind = meth[j+1:]
401 meth = getattr(processor, meth_name)
402 req = meth(req)
409 meth = getattr(processor, meth_name)
410 response = meth(req, response
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib2.py 329 for meth in dir(handler):
330 if meth in ["redirect_request", "do_open", "proxy_open"]:
334 i = meth.find("_")
335 protocol = meth[:i]
336 condition = meth[i+1:]
340 kind = meth[j+1:]
401 meth = getattr(processor, meth_name)
402 req = meth(req)
409 meth = getattr(processor, meth_name)
410 response = meth(req, response
    [all...]
  /external/python/cpython2/Lib/test/
test_py3kwarn.py 147 meth = {}.get
149 self.assertWarning(func < meth, w, expected)
151 self.assertWarning(func > meth, w, expected)
153 self.assertWarning(meth <= func, w, expected)
155 self.assertWarning(meth >= func, w, expected)
157 self.assertNoWarning(meth == func, w)
158 self.assertNoWarning(meth != func, w)

Completed in 349 milliseconds

1 2 34 5 6 7 8 91011>>