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

1 2 34 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/
tlspie1.d 1 #name: TLS with PIE
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
NumberFormatterApiTest.java 54 NumberFormatter.with(),
69 NumberFormatter.with().notation(Notation.simple()),
82 "Basic with Negative Sign",
84 NumberFormatter.with(),
95 NumberFormatter.with().notation(Notation.scientific()),
110 NumberFormatter.with().notation(Notation.engineering()),
125 NumberFormatter.with().notation(Notation.scientific().withExponentSignDisplay(SignDisplay.ALWAYS)),
140 NumberFormatter.with().notation(Notation.scientific().withMinExponentDigits(2)),
155 NumberFormatter.with().notation(Notation.scientific()),
166 NumberFormatter.with().notation(Notation.compactShort())
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
NumberFormatterApiTest.java 51 NumberFormatter.with(),
66 NumberFormatter.with().notation(Notation.simple()),
79 "Basic with Negative Sign",
81 NumberFormatter.with(),
92 NumberFormatter.with().notation(Notation.scientific()),
107 NumberFormatter.with().notation(Notation.engineering()),
122 NumberFormatter.with().notation(Notation.scientific().withExponentSignDisplay(SignDisplay.ALWAYS)),
137 NumberFormatter.with().notation(Notation.scientific().withMinExponentDigits(2)),
152 NumberFormatter.with().notation(Notation.scientific()),
163 NumberFormatter.with().notation(Notation.compactShort())
    [all...]
  /external/python/cpython3/Lib/test/test_importlib/import_/
test_packages.py 12 with util.mock_spec('pkg.__init__', 'pkg.module') as mock:
13 with util.import_state(meta_path=[mock]):
18 with util.mock_spec('pkg.module') as mock:
19 with util.import_state(meta_path=[mock]):
20 with self.assertRaises(ImportError) as cm:
30 with mock:
31 with util.import_state(meta_path=[mock]):
32 with self.assertRaises(ZeroDivisionError):
36 with self.assertRaises(ZeroDivisionError):
47 with mock
    [all...]
test_fromlist.py 19 with util.mock_spec('pkg.__init__', 'pkg.module') as importer:
20 with util.import_state(meta_path=[importer]):
26 with util.mock_modules('pkg.__init__', 'pkg.module')as importer:
27 with util.import_state(meta_path=[importer]):
48 to be the only name in the fromlist [using * with others].
54 with util.mock_modules('module') as importer:
55 with util.import_state(meta_path=[importer]):
61 with util.mock_modules('module') as importer:
62 with util.import_state(meta_path=[importer]):
69 with util.mock_modules('pkg.__init__', 'pkg.module') as importer
    [all...]
  /external/protobuf/jenkins/
make_test_output.py 32 with open(basedir + "/joblog") as jobs:
52 with open(basedir + "/logs/1/" + testname + "/stdout") as f:
55 with open(basedir + "/logs/1/" + testname + "/stderr") as f:
62 with open(basedir + '/logs/1/cpp/build_time', 'r') as f:
74 with tag("testsuites"):
75 with tag("testsuite", name="Protobuf Tests"):
77 with tag("testcase", name=test["name"], classname=test["name"],
79 with tag("system-out"):
81 with tag("system-err"):
84 with tag("failure")
    [all...]
  /external/llvm/test/MC/MachO/
x86_32-optimal_nop.s 4 .align 4, 0 # start with 16 byte alignment filled with zeros
11 .align 4, 0 # start with 16 byte alignment filled with zeros
19 .align 4, 0 # start with 16 byte alignment filled with zeros
26 .align 4, 0 # start with 16 byte alignment filled with zeros
36 .align 4, 0 # start with 16 byte alignment filled with zero
    [all...]
  /external/swiftshader/third_party/LLVM/test/MC/MachO/
x86_32-optimal_nop.s 4 .align 4, 0 # start with 16 byte alignment filled with zeros
11 .align 4, 0 # start with 16 byte alignment filled with zeros
19 .align 4, 0 # start with 16 byte alignment filled with zeros
26 .align 4, 0 # start with 16 byte alignment filled with zeros
36 .align 4, 0 # start with 16 byte alignment filled with zero
    [all...]
  /external/ltp/testcases/kernel/fs/fs_bind/rbind/
00_Descriptions.txt 16 /* along with this program; if not, write to the Free Software */
42 test17 - shared subtree with shared child to shared subtree.
43 test18 - shared subtree with shared child to private subtree.
44 test19 - shared subtree with shared child to slave subtree.
45 test20 - shared subtree with shared child to uncloneable subtree.
46 test21 - shared subtree with private child to shared subtree.
47 test22 - shared subtree with private child to slave subtree.
48 test23 - shared subtree with private child to private subtree.
49 test24 - shared subtree with unclonable child to private subtree.
50 test25 - shared subtree with slave child to shared subtree
    [all...]
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ServletsModuleBuilder.java 5 * you may not use this file except in compliance with the License.
31 * Builds the guice module that binds configured servlets, with their
65 public void with(Class<? extends HttpServlet> servletKey) { method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
66 with(Key.get(servletKey));
69 public void with(Key<? extends HttpServlet> servletKey) { method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
70 with(servletKey, new HashMap<String, String>()); method
73 public void with(HttpServlet servlet) { method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
74 with(servlet, new HashMap<String, String>()); method
77 public void with(Class<? extends HttpServlet> servletKey, method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
79 with(Key.get(servletKey), initParams)
82 public void with(Key<? extends HttpServlet> servletKey, method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
84 with(servletKey, initParams, null); method
87 private void with(Key<? extends HttpServlet> servletKey, Map<String, String> initParams, method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
101 public void with(HttpServlet servlet, method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
105 with(servletKey, initParams, servlet); method
    [all...]
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
EdslTest.java 5 * you may not use this file except in compliance with the License.
47 serve("/*").with(DummyServlet.class);
82 serve("/1/*").with(DummyServlet.class);
83 serve("/2/*").with(Key.get(DummyServlet.class));
84 serve("/3/*").with(new DummyServlet());
85 serve("/4/*").with(DummyServlet.class, new HashMap<String, String>());
87 serve("*.htm").with(Key.get(DummyServlet.class));
88 serve("*.html").with(Key.get(DummyServlet.class),
91 serveRegex("/person/[0-8]*").with(DummyServlet.class);
92 serveRegex("/person/[0-9]*").with(DummyServlet.class
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
variable_scope_test.py 4 # you may not use this file except in compliance with the License.
47 # involving objects with __del__ defined.
71 with self.assertRaises(ValueError):
75 with self.assertRaises(ValueError):
89 with variable_scope.variable_scope("tower0") as tower:
90 with variable_scope.variable_scope("foo", initializer=init):
94 with variable_scope.variable_scope(tower, initializer=init):
102 with variable_scope.variable_scope("tower1") as tower:
103 with variable_scope.variable_scope("foo", constraint=constraint):
106 with variable_scope.variable_scope(tower, constraint=constraint)
    [all...]
  /external/tensorflow/tensorflow/contrib/framework/python/ops/
arg_scope_test.py 4 # you may not use this file except in compliance with the License.
49 with self.test_session():
50 with arg_scope([]) as sc:
57 with self.test_session():
58 with arg_scope([func1], a=1, b=None, c=[1]) as sc1:
60 with arg_scope({}) as sc2:
62 with arg_scope([]) as current_arg_scope:
70 with self.assertRaises(ValueError):
71 with arg_scope([my_func], a=1):
75 with self.assertRaises(TypeError)
    [all...]
ops_test.py 4 # you may not use this file except in compliance with the License.
31 with ops.Graph().as_default() as g0:
36 with g0.as_default():
40 with ops.Graph().as_default():
46 with g0.as_default():
49 with self.assertRaisesRegexp(ValueError, "not from the passed-in graph"):
51 with g1.as_default():
53 with self.assertRaisesRegexp(ValueError, "must be from the same graph"):
55 with self.assertRaisesRegexp(ValueError, "not from the passed-in graph"):
57 with self.assertRaisesRegexp(ValueError, "not from the passed-in graph")
    [all...]
  /external/python/cpython2/Lib/test/
make_ssl_certs.py 95 with tempfile.NamedTemporaryFile(delete=False) as f:
100 with open(req_file, 'w') as f:
106 with tempfile.NamedTemporaryFile(delete=False) as f:
121 with open(cert_file, 'r') as f:
123 with open(key_file, 'r') as f:
137 with open(os.path.join('cadir','index.txt'),'a+') as f:
139 with open(os.path.join('cadir','crl.txt'),'a+') as f:
141 with open(os.path.join('cadir','index.txt.attr'),'w+') as f:
144 with tempfile.NamedTemporaryFile("w") as t:
147 with tempfile.NamedTemporaryFile() as f
    [all...]
test_imghdr.py 32 with open(cls.testfile, 'rb') as stream:
44 with open(filename, 'rb') as stream:
46 with open(filename, 'rb') as stream:
59 with open(TESTFN, 'wb') as stream:
63 with open(TESTFN, 'rb') as stream:
69 with self.assertRaises(TypeError):
71 with self.assertRaises(AttributeError):
73 with self.assertRaises(TypeError):
75 with open(self.testfile, 'rb') as f:
76 with self.assertRaises(AttributeError)
    [all...]
  /external/python/cpython3/Lib/test/
make_ssl_certs.py 94 with tempfile.NamedTemporaryFile(delete=False) as f:
99 with open(req_file, 'w') as f:
105 with tempfile.NamedTemporaryFile(delete=False) as f:
120 with open(cert_file, 'r') as f:
122 with open(key_file, 'r') as f:
136 with open(os.path.join('cadir','index.txt'),'a+') as f:
138 with open(os.path.join('cadir','crl.txt'),'a+') as f:
140 with open(os.path.join('cadir','index.txt.attr'),'w+') as f:
143 with tempfile.NamedTemporaryFile("w") as t:
146 with tempfile.NamedTemporaryFile() as f
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
With.py 21 with cm: pass
22 with cm: pass
23 with cm: pass
24 with cm: pass
25 with cm: pass
26 with cm: pass
27 with cm: pass
28 with cm: pass
29 with cm: pass
30 with cm: pass
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/tools/
script_common_test.py 15 with devil_env.SysPath(devil_env.PYMOCK_PATH):
26 with mock.patch('devil.android.device_utils.DeviceUtils.HealthyDevices',
37 with mock.patch('devil.android.device_utils.DeviceUtils.HealthyDevices',
44 with mock.patch('devil.android.device_utils.DeviceUtils.HealthyDevices',
46 with self.assertRaises(device_errors.DeviceUnreachableError):
50 with mock.patch('devil.android.device_utils.DeviceUtils.HealthyDevices',
52 with self.assertRaises(device_errors.NoDevicesError):
  /external/python/cpython2/Tools/pybench/
With.py 21 with cm: pass
22 with cm: pass
23 with cm: pass
24 with cm: pass
25 with cm: pass
26 with cm: pass
27 with cm: pass
28 with cm: pass
29 with cm: pass
30 with cm: pas
    [all...]
  /external/python/cpython3/Tools/pybench/
With.py 20 with cm: pass
21 with cm: pass
22 with cm: pass
23 with cm: pass
24 with cm: pass
25 with cm: pass
26 with cm: pass
27 with cm: pass
28 with cm: pass
29 with cm: pas
    [all...]
  /external/tensorflow/tensorflow/python/training/
checkpoint_utils_test.py 4 # you may not use this file except in compliance with the License.
42 with variable_scope.variable_scope("useful_scope"):
58 with variable_scope.variable_scope("scope"):
80 with self.assertRaises(errors_impl.OpError):
86 with self.test_session() as session:
88 with self.assertRaises(errors_impl.OpError):
94 with self.test_session() as session:
107 with self.test_session() as session:
116 with self.test_session() as session:
120 with ops.Graph().as_default() as g
    [all...]
  /art/tools/ahat/src/test/com/android/ahat/
QueryTest.java 5 * you may not use this file except in compliance with the License.
40 assertEquals("/object?answer=42&foo=sludge", query.with("foo", "sludge").toString());
41 assertEquals("/object?answer=43&foo=bar", query.with("answer", "43").toString());
42 assertEquals("/object?answer=43&foo=bar", query.with("answer", 43).toString());
43 assertEquals("/object?answer=42&bar=finally&foo=bar", query.with("bar", "finally").toString());
54 assertEquals("/object?answer=42&foo=tar", query.with("foo", "tar").toString());
55 assertEquals("/object?answer=43&foo=sludge", query.with("answer", "43").toString());
57 query.with("bar", "finally").toString());
67 assertEquals("/object?foo=sludge", query.with("foo", "sludge").toString());
68 assertEquals("/object?answer=43", query.with("answer", "43").toString())
    [all...]
  /external/llvm/test/MC/Mips/eva/
invalid.s 13 lle $4, 8($33) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset
14 lle $4, 512($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset
15 lle $4, -513($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset
17 lwe $4, 8($33) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset
18 lwe $4, 512($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset
19 lwe $4, -513($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset
21 sbe $4, 8($33) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset
22 sbe $4, 512($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset
23 sbe $4, -513($5) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offset
25 sce $4, 8($33) # CHECK: :[[@LINE]]:13: error: expected memory with 9-bit signed offse
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/tools/
script_common_test.py 17 with devil_env.SysPath(devil_env.PYMOCK_PATH):
20 with devil_env.SysPath(devil_env.DEPENDENCY_MANAGER_PATH):
31 with mock.patch('devil.android.device_utils.DeviceUtils.HealthyDevices',
42 with mock.patch('devil.android.device_utils.DeviceUtils.HealthyDevices',
49 with mock.patch('devil.android.device_utils.DeviceUtils.HealthyDevices',
51 with self.assertRaises(device_errors.DeviceUnreachableError):
55 with mock.patch('devil.android.device_utils.DeviceUtils.HealthyDevices',
57 with self.assertRaises(device_errors.NoDevicesError):
72 with self.assertRaises(exceptions.NoPathFoundError):
76 with tempfile.NamedTemporaryFile() as f
    [all...]

Completed in 766 milliseconds

1 2 34 5 6 7 8 91011>>