HomeSort by relevance Sort by last modified time
    Searched defs:check (Results 601 - 625 of 1856) sorted by null

<<21222324252627282930>>

  /external/v8/test/unittests/compiler/
common-operator-reducer-unittest.cc 324 Node* check = graph()->NewNode(machine()->Float32LessThan(), c0, p0); local
325 Node* branch = graph()->NewNode(common()->Branch(), check, graph()->start());
344 Node* check = graph()->NewNode(machine()->Float64LessThan(), c0, p0); local
345 Node* branch = graph()->NewNode(common()->Branch(), check, graph()->start());
364 Node* check = graph()->NewNode(machine()->Float32LessThan(), p0, p1); local
365 Node* branch = graph()->NewNode(common()->Branch(), check, graph()->start());
382 Node* check = graph()->NewNode(machine()->Float64LessThan(), p0, p1); local
383 Node* branch = graph()->NewNode(common()->Branch(), check, graph()->start());
400 Node* check = graph()->NewNode(machine()->Float32LessThan(), p0, p1); local
401 Node* branch = graph()->NewNode(common()->Branch(), check, graph()->start())
418 Node* check = graph()->NewNode(machine()->Float64LessThan(), p0, p1); local
553 Node* check = graph()->NewNode(machine()->Float32LessThan(), c0, p0); local
566 Node* check = graph()->NewNode(machine()->Float64LessThan(), c0, p0); local
579 Node* check = graph()->NewNode(machine()->Float32LessThan(), p0, p1); local
591 Node* check = graph()->NewNode(machine()->Float64LessThan(), p0, p1); local
603 Node* check = graph()->NewNode(machine()->Float32LessThan(), p0, p1); local
615 Node* check = graph()->NewNode(machine()->Float64LessThan(), p0, p1); local
    [all...]
  /external/zlib/src/examples/
gun.c 115 output file, a running CRC-32 check on the output and the total number of
121 int check; /* true if checking crc and total */ member in struct:outd
136 if (me->check) {
223 outd.check = 0;
315 input does not cause an exception. The code != end + 1 check is
317 code. If this ever causes a problem, that check could be safely
318 removed. Leaving this check in greatly improves gun's ability
320 In any case, the prev > end check must be retained. */
379 trailer CRC-32 check or length doesn't match, Z_BUF_ERROR if the input ends
407 strm->msg = (char *)"incorrect header check";
    [all...]
  /frameworks/base/core/java/android/net/
VpnService.java 254 check(address, prefixLength); method
284 check(address, prefixLength); method
380 private static void check(InetAddress address, int prefixLength) { method in class:VpnService
459 check(address, prefixLength); method
494 check(address, prefixLength); method
    [all...]
  /frameworks/base/core/java/android/widget/
RadioGroup.java 153 public void check(@IdRes int id) { method in class:RadioGroup
190 * @see #check(int)
205 * @see #check(int)
209 check(-1);
  /frameworks/base/core/tests/utiltests/src/com/android/internal/util/
FastXmlSerializerTest.java 124 private boolean check(String description, String str) throws Exception { method in class:FastXmlSerializerTest
139 ok &= check("char: " + i, String.valueOf((char) i));
142 assertFalse(check("+ud800", "\ud800"));
143 assertFalse(check("+udc00", "\udc00"));
147 ok &= check("char: " + i, String.valueOf((char) i) + String.valueOf((char) j));
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
InverseBinding.java 117 Preconditions.check((mExpr == null) != mChainedExpressions.isEmpty(),
  /frameworks/wilhelm/tests/sandbox/
multiplay.c 84 #define check(result) check2(result, __LINE__) macro
99 check(result);
102 check(result);
151 check(result);
153 check(result);
156 check(result);
163 check(result);
165 check(result);
169 check(result);
172 check(result)
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
SinkChannelImpl.java 174 assert IOStatus.check(n);
197 assert IOStatus.check(n);
SourceChannelImpl.java 178 assert IOStatus.check(n);
209 assert IOStatus.check(n);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
OCSP.java 60 * just check the revocation status of a certificate, and you don't want to
77 * used for the OCSP check. A timeout of zero is interpreted as
114 public static RevocationStatus check(X509Certificate cert, method in class:OCSP
131 OCSPResponse ocspResponse = check(Collections.singletonList(certId),
152 public static RevocationStatus check(X509Certificate cert, method in class:OCSP
159 return check(cert, issuerCert, responderURI, responderCert, date,
164 public static RevocationStatus check(X509Certificate cert, method in class:OCSP
179 OCSPResponse ocspResponse = check(Collections.singletonList(certId),
199 static OCSPResponse check(List<CertId> certIds, URI responderURI, method in class:OCSP
236 // Check the respons
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
ObjectIdentifier.java 140 * Validity check included.
213 * Validity check included.
227 * Validity check NOT included.
247 * Then get and check the length of the ID's encoding. We set
248 * up so that we can use in.available() to check for the end of
260 check(encoding);
266 * Validity check NOT included.
273 check(encoding);
297 * does the check and conversion. All around the JDK, the method is called
590 * Private methods to check validity of OID. They must be -
601 private static void check(byte[] encoding) throws IOException { method in class:ObjectIdentifier
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
TestUtils.java 209 public void check(Certificate arg0, Collection arg1) method
223 // just to check this checker state
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
NfceeAccessControl.java 73 * Check if the {uid, pkg} combination may use NFCEE.
77 public boolean check(int uid, String pkg) { method in class:NfceeAccessControl
105 * Check if the given ApplicationInfo may use the NFCEE.
109 public boolean check(ApplicationInfo info) { method in class:NfceeAccessControl
127 * Check with package manager if the pkg may use NFCEE.
240 // check for duplicate package names
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_decorators.py 31 def check(*args, **kwds): function in function:dbcheck.decorate
35 return check
158 # Sanity check: is expr is a valid expression by itself?
test_hashlib.py 157 def check(self, name, data, digest): member in class:HashLibTestCase
188 self.check(algorithm_name, u'spam', expected)
201 self.check('md5', '', 'd41d8cd98f00b204e9800998ecf8427e')
204 self.check('md5', 'abc', '900150983cd24fb0d6963f7d28e17f72')
207 self.check('md5', 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
214 self.check('md5', 'A'*size, 'c9af2dff37468ce5dfee8f2cfc0a9c6d')
231 self.check('md5', 'A'*size, '28138d306ff1b8281f1a9067e1a1a2b3')
240 self.check('sha1', "",
244 self.check('sha1', "abc",
248 self.check('sha1', "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
    [all...]
test_sort.py 9 def check(tag, expected, raw, compare=None): function
84 check("identity", x, s)
88 check("reversed", x, s)
92 check("random permutation", x, s)
97 check("reversed via function", y, s, lambda a, b: cmp(b, a))
104 check("an insane function left some permutation", x, s)
117 check("exception during sort left some permutation", x, s)
123 check("stability", x, s)
test_textwrap.py 31 def check(self, result, expect): member in class:BaseTestCase
38 self.check(result, expect)
70 # Check that wrapping the empty string returns an empty list.
75 # Check that the empty string is not indented.
98 self.check(result, expect)
101 self.check(result, '\n'.join(expect))
111 self.check(wrapper.wrap(text), expect)
118 self.check(wrapper.wrap(text), expect)
121 self.check(wrapper.wrap(text), expect)
125 self.check(wrapper.wrap(text), expect
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_decorators.py 31 def check(*args, **kwds): function in function:dbcheck.decorate
35 return check
158 # Sanity check: is expr is a valid expression by itself?
test_hashlib.py 157 def check(self, name, data, digest): member in class:HashLibTestCase
188 self.check(algorithm_name, u'spam', expected)
201 self.check('md5', '', 'd41d8cd98f00b204e9800998ecf8427e')
204 self.check('md5', 'abc', '900150983cd24fb0d6963f7d28e17f72')
207 self.check('md5', 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
214 self.check('md5', 'A'*size, 'c9af2dff37468ce5dfee8f2cfc0a9c6d')
231 self.check('md5', 'A'*size, '28138d306ff1b8281f1a9067e1a1a2b3')
240 self.check('sha1', "",
244 self.check('sha1', "abc",
248 self.check('sha1', "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
    [all...]
test_sort.py 9 def check(tag, expected, raw, compare=None): function
84 check("identity", x, s)
88 check("reversed", x, s)
92 check("random permutation", x, s)
97 check("reversed via function", y, s, lambda a, b: cmp(b, a))
104 check("an insane function left some permutation", x, s)
117 check("exception during sort left some permutation", x, s)
123 check("stability", x, s)
test_textwrap.py 31 def check(self, result, expect): member in class:BaseTestCase
38 self.check(result, expect)
70 # Check that wrapping the empty string returns an empty list.
75 # Check that the empty string is not indented.
98 self.check(result, expect)
101 self.check(result, '\n'.join(expect))
111 self.check(wrapper.wrap(text), expect)
118 self.check(wrapper.wrap(text), expect)
121 self.check(wrapper.wrap(text), expect)
125 self.check(wrapper.wrap(text), expect
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
sys_linux_arm.s 280 // Paranoia: check that SP is as we expect. Use R13 to avoid linker 'fixup'
298 // paranoia; check they are not nil
302 BL runtime·emptyfunc(SB) // fault if stack check is wrong
404 BCC check
408 check: label
409 // Kernel lies; double-check.
  /prebuilts/go/linux-x86/src/runtime/
sys_linux_arm.s 280 // Paranoia: check that SP is as we expect. Use R13 to avoid linker 'fixup'
298 // paranoia; check they are not nil
302 BL runtime·emptyfunc(SB) // fault if stack check is wrong
404 BCC check
408 check: label
409 // Kernel lies; double-check.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_refactor.py 239 def check(structure, expected): function in function:TestRefactoringTool.test_refactor_dir
257 check([], [])
265 check(tree, expected)
268 check(tree, tree)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_decorators.py 31 def check(*args, **kwds): function in function:dbcheck.decorate
35 return check
158 # Sanity check: is expr is a valid expression by itself?

Completed in 1721 milliseconds

<<21222324252627282930>>