Searched refs:assertTrue (Results 276 - 300 of 1870) sorted by relevance

<<11121314151617181920>>

/external/v8/test/mjsunit/
H A Dregexp.js90 assertTrue(/\ca/.test( "\x01" ));
93 assertTrue(/\c[a/]/.test( "\\ca" ));
94 assertTrue(/\c[a/]/.test( "\\c/" ));
98 assertTrue(re.test("\r"));
105 assertTrue(re.test("c]"));
106 assertTrue(re.test("\\]"));
111 assertTrue(re.test("\x11"));
117 assertTrue(re.test("\x1f"));
124 assertTrue(re.test("\\"));
125 assertTrue(r
[all...]
H A Dunicode-case-overoptimization.js34 assertTrue(re.test(c), i);
H A Ddebug-compile-event-newfunction.js41 assertTrue(!!evalFromScript, ' evalFromScript ');
43 assertTrue(/debug-compile-event-newfunction.js$/.test(
48 assertTrue(!!evalFromLocation, 'evalFromLocation is undefined');
H A Dwith-leave.js31 assertTrue(false);
38 assertTrue(false);
44 with ({x:18}) { throw 25; assertTrue(false); }
54 assertTrue(false); // should not reach here
56 assertTrue(e2 instanceof ReferenceError);
60 assertTrue(caught);
H A Dobject-define-property.js38 assertTrue(/called on non-object/.test(e));
40 assertTrue(exception);
48 assertTrue(/called on non-object/.test(e));
50 assertTrue(exception);
58 assertTrue(/called on non-object/.test(e));
60 assertTrue(exception);
117 assertTrue(false);
119 assertTrue(/must be an object/.test(e));
149 assertTrue(/Cannot redefine property/.test(e));
157 assertTrue(des
[all...]
H A Dparse-int-float.js45 assertTrue(isNaN(parseInt('0x ')));
46 assertTrue(isNaN(parseInt('0x')));
47 assertTrue(isNaN(parseInt('0x ', 16)));
48 assertTrue(isNaN(parseInt('0x', 16)));
95 assertTrue(isNaN(parseInt(0/0)));
96 assertTrue(isNaN(parseInt(1/0)), "parseInt Infinity");
97 assertTrue(isNaN(parseInt(-1/0)), "parseInt -Infinity");
99 assertTrue(isNaN(parseFloat(0/0)));
120 assertTrue("parseInt" in Number);
121 assertTrue("parseFloa
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-102153.js53 assertTrue(Debug.showBreakPoints(test).indexOf("// Break here.") >= 0);
57 assertTrue(break_hit);
H A Dregress-362870.js17 assertTrue(%HasFastProperties(obj));
H A Dregress-944.js46 assertTrue(isNaN(Date.parse("2010-11-25T22:02:30.Z")));
/external/v8/test/mjsunit/tools/
H A Dconsarray.js33 assertTrue(arr1.atEnd());
36 assertTrue(arr1.atEnd());
41 assertTrue(arr1.atEnd());
60 assertTrue(arr1.atEnd());
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
H A DProtocolVersionTest.java42 assertTrue(ProtocolVersion.isSupported(new byte[] { 3, 0 }));
43 assertTrue(ProtocolVersion.isSupported(new byte[] { 3, 1 }));
59 assertTrue(ProtocolVersion.isSupported("SSLv3"));
60 assertTrue(ProtocolVersion.isSupported("SSL"));
61 assertTrue(ProtocolVersion.isSupported("TLSv1"));
62 assertTrue(ProtocolVersion.isSupported("TLS"));
/external/lldb/test/functionalities/expr-doesnt-deadlock/
H A DTestExprDoesntBlock.py42 self.assertTrue(target, VALID_TARGET)
50 self.assertTrue(breakpoint and
56 self.assertTrue(process, PROCESS_IS_VALID)
61 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint condition")
66 self.assertTrue (var.IsValid())
67 self.assertTrue (var.GetValueAsSigned (0) == 567)
/external/lldb/test/lang/objc/objc-builtin-types/
H A DTestObjCBuiltinTypes.py42 self.assertTrue(target, VALID_TARGET)
45 self.assertTrue(bpt, VALID_BREAKPOINT)
50 self.assertTrue(process, PROCESS_IS_VALID)
56 self.assertTrue (len(thread_list) != 0, "No thread stopped at our breakpoint.")
57 self.assertTrue (len(thread_list) == 1, "More than one thread stopped at our breakpoint.")
61 self.assertTrue (frame, "Got a valid frame 0 frame.")
/external/lldb/test/python_api/rdar-12481949/
H A DTest-rdar-12481949.py57 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() == -1, "GetValueAsSigned() says -1")
58 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() != 0xFFFFFFFF, "GetValueAsSigned() does not say 0xFFFFFFFF")
59 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() != 0xFFFFFFFFFFFFFFFF, "GetValueAsSigned() does not say 0xFFFFFFFFFFFFFFFF")
61 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsUnsigned() != -1, "GetValueAsUnsigned() does not say -1")
62 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsUnsigned() == 0xFFFFFFFFFFFFFFFF, "GetValueAsUnsigned() says 0xFFFFFFFFFFFFFFFF")
63 self.assertTrue(self.frame().FindVariable("myvar").GetValueAsSigned() != 0xFFFFFFFF, "GetValueAsUnsigned() does not say 0xFFFFFFFF")
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSyncResultTest.java4 import static junit.framework.Assert.assertTrue;
29 assertTrue(result.hasSoftError());
30 assertTrue(result.hasError());
38 assertTrue(result.hasHardError());
39 assertTrue(result.hasError());
47 assertTrue(result.madeSomeProgress());
/external/v8/test/mjsunit/es6/
H A Dmath-log1p.js5 assertTrue(isNaN(Math.log1p(NaN)));
6 assertTrue(isNaN(Math.log1p(function() {})));
7 assertTrue(isNaN(Math.log1p({ toString: function() { return NaN; } })));
8 assertTrue(isNaN(Math.log1p({ valueOf: function() { return "abc"; } })));
13 assertTrue(isNaN(Math.log1p(-2)));
14 assertTrue(isNaN(Math.log1p(-Infinity)));
H A Dmath-sign.js33 assertTrue(isNaN(Math.sign("abc")));
34 assertTrue(isNaN(Math.sign({})));
38 assertTrue(isNaN(Math.sign([1, 1])));
H A Dmath-trunc.js35 assertTrue(isNaN(Math.trunc("abc")));
36 assertTrue(isNaN(Math.trunc({})));
40 assertTrue(isNaN(Math.trunc([1, 1])));
/external/v8/test/mjsunit/harmony/
H A Dblock-leave.js43 assertTrue(false);
55 assertTrue(false);
64 assertTrue(false);
74 assertTrue(false); // should not reach here
76 assertTrue(e2 instanceof ReferenceError);
80 assertTrue(caught);
H A Dprivate.js58 assertTrue(typeof symbols[i] === "symbol")
59 assertTrue(%SymbolIsPrivate(symbols[i]))
89 assertTrue(isValidSymbolString(symbols[i].toString()))
90 assertTrue(isValidSymbolString(Object(symbols[i]).toString()))
91 assertTrue(isValidSymbolString(Symbol.prototype.toString.call(symbols[i])))
101 assertTrue(Boolean(symbols[i]).valueOf())
103 assertTrue(!!symbols[i])
104 assertTrue(symbols[i] && true)
106 assertTrue(!symbols[i] || true)
130 assertTrue(Objec
[all...]
H A Dproxies-hash.js57 assertTrue(s.has(p1));
58 assertTrue(s.has(p2));
63 assertTrue(s.has(p1));
64 assertTrue(s.has(p2));
68 assertTrue(s.has(p1));
94 assertTrue(m.has(p1));
95 assertTrue(m.has(p2));
102 assertTrue(m.has(p1));
103 assertTrue(m.has(p2));
109 assertTrue(
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedSetTest.java79 assertTrue(Thread.holdsLock(mutex));
84 assertTrue(Thread.holdsLock(mutex));
89 assertTrue(Thread.holdsLock(mutex));
94 assertTrue(Thread.holdsLock(mutex));
99 assertTrue(Thread.holdsLock(mutex));
104 assertTrue(Thread.holdsLock(mutex));
109 assertTrue(Thread.holdsLock(mutex));
114 assertTrue(Thread.holdsLock(mutex));
119 assertTrue(Thread.holdsLock(mutex));
126 assertTrue(Threa
[all...]
/external/lldb/test/python_api/type/
H A DTestTypeList.py49 self.assertTrue(target, VALID_TARGET)
53 self.assertTrue(breakpoint, VALID_BREAKPOINT)
57 self.assertTrue(process, PROCESS_IS_VALID)
60 self.assertTrue(process.GetState() == lldb.eStateStopped)
62 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint condition")
69 self.assertTrue(len(type_list) >= 1) # a second Task make be scared up by the Objective-C runtime
71 self.assertTrue(type)
80 self.assertTrue(task_type)
85 self.assertTrue(task_ref_type)
90 self.assertTrue(task_pointer_typ
[all...]
/external/lldb/test/expression_command/timeout/
H A DTestCallWithTimeout.py41 self.assertTrue(target, VALID_TARGET)
44 self.assertTrue(breakpoint, VALID_BREAKPOINT)
50 self.assertTrue(process, PROCESS_IS_VALID)
55 self.assertTrue(len(threads) == 1)
66 self.assertTrue (value.IsValid())
67 self.assertTrue (value.GetError().Success() == False)
74 self.assertTrue (return_value == lldb.eReturnStatusFailed)
80 self.assertTrue(value.IsValid())
81 self.assertTrue (value.GetError().Success() == True)
88 self.assertTrue(return_valu
[all...]
/external/lldb/test/python_api/symbol-context/
H A DTestSymbolContext.py42 self.assertTrue(target, VALID_TARGET)
47 self.assertTrue(breakpoint and
53 self.assertTrue(process, PROCESS_IS_VALID)
58 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint")
60 self.assertTrue(frame0.GetLineEntry().GetLine() == self.line)
64 self.assertTrue(context)
77 self.assertTrue(function)
81 self.assertTrue(block)
92 self.assertTrue(lineEntry.GetLine() == self.line,
96 self.assertTrue(functio
[all...]

Completed in 674 milliseconds

<<11121314151617181920>>