Searched defs:expect (Results 26 - 50 of 161) sorted by relevance

1234567

/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DScanning.pxd47 cdef bint expect(self, what, message = *) except -2 member in class:PyrexScanner
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnumfmtst.h206 void expect(NumberFormat& fmt, const UnicodeString& str, const Formattable& n);
208 void expect(NumberFormat& fmt, const char *str, const Formattable& n) { function in class:NumberFormatTest
209 expect(fmt, UnicodeString(str, ""), n);
212 void expect(NumberFormat& fmt, const Formattable& n,
215 void expect(NumberFormat& fmt, const Formattable& n, function in class:NumberFormatTest
217 expect(fmt, n, UnicodeString(exp, ""), rt);
220 void expect(NumberFormat* fmt, const Formattable& n,
223 void expect(NumberFormat* fmt, const Formattable& n, function in class:NumberFormatTest
225 expect(fmt, n, UnicodeString(exp, ""), errorCode);
H A Dcpdtrtst.cpp356 expect(*ct1, s, s);
395 expect(*ct2, Data[i+1], Data[i+2]);
407 void CompoundTransliteratorTest::expect(const CompoundTransliterator& t, function in class:CompoundTransliteratorTest
/external/chromium_org/tools/gn/
H A Dtokenizer_unittest.cc18 bool CheckTokenizer(const char* input, const TokenExpectation (&expect)[len]) { argument
28 if (expect[i].type != results[i].type())
30 if (expect[i].value != results[i].value())
/external/chromium_org/v8/test/cctest/
H A Dtest-javascript-arm64.cc131 int expect) {
140 ExpectInt32(expect, result);
147 int expect) {
157 ExpectInt32(expect, result);
127 if_comparison_testcontext_helper( char const * op, char const * lhs, char const * rhs, int expect) argument
143 if_comparison_effectcontext_helper( char const * op, char const * lhs, char const * rhs, int expect) argument
/external/icu/icu4c/source/test/intltest/
H A Dnumfmtst.h212 void expect(NumberFormat& fmt, const UnicodeString& str, const Formattable& n);
214 void expect(NumberFormat& fmt, const char *str, const Formattable& n) { function in class:NumberFormatTest
215 expect(fmt, UnicodeString(str, ""), n);
218 void expect(NumberFormat& fmt, const Formattable& n,
221 void expect(NumberFormat& fmt, const Formattable& n, function in class:NumberFormatTest
223 expect(fmt, n, UnicodeString(exp, ""), rt);
226 void expect(NumberFormat* fmt, const Formattable& n,
229 void expect(NumberFormat* fmt, const Formattable& n, function in class:NumberFormatTest
231 expect(fmt, n, UnicodeString(exp, ""), rt, errorCode);
234 void expect(NumberForma function in class:NumberFormatTest
239 void expect(NumberFormat* fmt, const Formattable& n, function in class:NumberFormatTest
[all...]
/external/junit/src/org/junit/rules/
H A DExpectedException.java30 * thrown.expect(NullPointerException.class);
36 * thrown.expect(NullPointerException.class);
69 public void expect(Matcher<?> matcher) { method in class:ExpectedException
80 public void expect(Class<? extends Throwable> type) { method in class:ExpectedException
81 expect(instanceOf(type));
97 expect(hasMessage(matcher));
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DTraditional.py78 self.expect(')')
81 self.expect(']')
138 def expect(self, c): member in class:REParser
/external/chromium_org/v8/test/cctest/compiler/
H A Dcodegen-tester.cc342 int32_t expect = gen->expected(input_a, input_b); local
343 if (false) printf(" cmp(a=%d, b=%d) ?== %d\n", input_a, input_b, expect);
344 CHECK_EQ(expect, m->Call(input_a, input_b));
354 int32_t expect = gen->expected(input_a, input_b); local
355 if (false) printf(" cmp(a=%d, b=%d) ?== %d\n", input_a, input_b, expect);
356 CHECK_EQ(expect, m->Call(input_a, input_b));
365 int32_t expect = gen->expected(input_a, input_b); local
366 if (false) printf(" cmp(a=%d, b=%d) ?== %d\n", input_a, input_b, expect);
367 CHECK_EQ(expect, m->Call(input_a, input_b));
H A Dtest-phi-reducer.cc32 void CheckReduce(Node* expect, Node* phi) { argument
35 if (expect == phi) {
39 CHECK_EQ(expect, reduction.replacement());
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp12.cpp10 template <unsigned n> void expect(Opaque<n> _) {} function
133 expect<0>(Base().foo<int>());
134 expect<1>(Base().foo<0>());
135 expect<0>(Derived1().foo<int>()); // expected-error {{no matching member function for call to 'foo'}}
136 expect<2>(Derived1().foo<0>());
137 expect<0>(Derived2().foo<int>()); // expected-error {{no matching member function for call to 'foo'}}
138 expect<2>(Derived2().foo<0>());
139 expect<3>(Derived3().foo<int>());
140 expect<1>(Derived3().foo<0>()); // expected-error {{no matching member function for call to 'foo'}}
141 expect<
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDoubleArray.java140 * @param expect the expected value
145 public final boolean compareAndSet(int i, double expect, double update) { argument
147 doubleToRawLongBits(expect),
164 * @param expect the expected value
168 public final boolean weakCompareAndSet(int i, double expect, double update) { argument
170 doubleToRawLongBits(expect),
H A DAtomicDouble.java128 * @param expect the expected value
133 public final boolean compareAndSet(double expect, double update) { argument
135 doubleToRawLongBits(expect),
150 * @param expect the expected value
154 public final boolean weakCompareAndSet(double expect, double update) { argument
156 doubleToRawLongBits(expect),
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java54 public final boolean compareAndSet(int expect, int update) { argument
55 if (value == expect) {
H A DAtomicLong.java54 public final boolean compareAndSet(long expect, long update) { argument
55 if (value == expect) {
/external/liblzf/
H A Dlzf_c.c79 # define expect(expr,value) __builtin_expect ((expr),(value)) macro
82 # define expect(expr,value) (expr) macro
86 #define expect_false(expr) expect ((expr) != 0, 0)
87 #define expect_true(expr) expect ((expr) != 0, 1)
/external/oprofile/libutil++/tests/
H A Dfile_manip_tests.cpp36 << "expect:\n\"" << output << "\"\n"
50 << "expect:\n\"" << output << "\"\n"
208 string expect = cur->output; local
210 expect = SRCDIR + expect;
212 expect, result);
/external/chromium_org/ash/desktop_background/
H A Dwallpaper_resizer_unittest.cc46 bool IsColor(const gfx::ImageSkia& image, const uint32_t expect) { argument
51 return *image_bitmap->getAddr32(0, 0) == expect;
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsyncable_file_operation_runner_unittest.cc109 File::Error expect) {
111 weak_factory_.GetWeakPtr(), location, expect);
130 File::Error expect, File::Error status) {
132 EXPECT_EQ(expect, status);
108 ExpectStatus(const tracked_objects::Location& location, File::Error expect) argument
129 DidFinish(const tracked_objects::Location& location, File::Error expect, File::Error status) argument
/external/chromium_org/remoting/webapp/browser_test/
H A Dbrowser_test.js67 browserTest.expect = function(expr, message) {
110 browserTest.expect(element);
268 browserTest.expect(typeof test.run == 'function');
/external/chromium_org/third_party/libxml/src/
H A DtestRegexp.c130 int expect = -1; local
134 expect = 0;
136 expect = 1;
149 if ((expect == 1) && (ret == 1)) {
151 } else if ((expect == 0) && (ret == 0)) {
153 } else if ((expect == 1) && (ret == 0)) {
155 } else if ((expect == 0) && (ret == 1)) {
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/opus/
H A Dopus_unittest.cc33 void TestSetMaxPlaybackRate(opus_int32 expect, int32_t set);
69 void OpusTest::TestSetMaxPlaybackRate(opus_int32 expect, int32_t set) { argument
75 EXPECT_EQ(expect, bandwidth);
80 EXPECT_EQ(expect, bandwidth);
/external/e2fsprogs/lib/ext2fs/
H A Dres_gdt.c178 blk_t expect = gdt_blk + grp * sb->s_blocks_per_group; local
183 expect, grp, gdt_blk, last);
185 gdt_buf[last] = expect;
188 } else if (gdt_buf[last] != expect) {
191 gdt_buf[last], expect, gdt_blk, last);
/external/ltrace/
H A Dglob.c196 translate(const char *glob, int exp_status, const char *expect) argument
208 if (strcmp(pattern, expect) != 0)
210 glob, expect, pattern);
218 try_match(const char *glob, const char *str, int expect) argument
224 assert(status == expect);
/external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
H A Dqunit.js299 expect: function(asserts) {

Completed in 586 milliseconds

1234567