HomeSort by relevance Sort by last modified time
    Searched defs:expect (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/tools/gyp/test/actions/
gyptest-default.py 44 expect = """\
54 test.run_built_executable('program', chdir=chdir, stdout=expect)
60 expect = "Hello from generate_main.py\n" variable
66 test.run_built_executable('null_input', chdir=chdir, stdout=expect)
gyptest-errors.py 18 expect = [ variable
21 test.must_contain_all_lines(test.stderr(), expect)
gyptest-generated-header.py 22 expect = 'foobar output\n' variable
23 test.run_built_executable('program', chdir=CHDIR, stdout=expect)
35 expect = 'barbaz output\n' variable
36 test.run_built_executable('program', chdir=CHDIR, stdout=expect)
gyptest-all.py 46 expect = """\
56 test.run_built_executable('program', chdir=chdir, stdout=expect)
62 expect = "Hello from generate_main.py\n" variable
68 test.run_built_executable('null_input', chdir=chdir, stdout=expect)
  /external/chromium_org/tools/gyp/test/configurations/invalid/
gyptest-configurations.py 32 expect = ['%s not allowed in the Debug configuration, found in target ' variable
34 test.must_contain_all_lines(test.stderr(), expect)
  /external/chromium_org/tools/gyp/test/defines-escaping/
gyptest-defines-escaping.py 28 expect = """
31 test.run_built_executable('defines_escaping', stdout=expect)
46 expect = """
49 test.run_built_executable('defines_escaping', stdout=expect)
69 expect = """
72 test.run_built_executable('defines_escaping', stdout=expect)
92 expect = """
95 test.run_built_executable('defines_escaping', stdout=expect)
114 expect = r"""
119 test.run_built_executable('defines_escaping', stdout=expect)
155 expect = "%PATH%" variable
    [all...]
  /external/chromium_org/tools/gyp/test/variables/commands/
gyptest-commands-repeated.py 16 expect = test.read('commands-repeated.gyp.stdout').replace('\r\n', '\n') variable
20 stdout=expect, ignore_line_numbers=True)
32 expect = test.read('commands-repeated.gypd.golden').replace('\r\n', '\n') variable
33 if not test.match(contents, expect):
35 test.diff(expect, contents, 'commands-repeated.gypd ')
gyptest-commands-ignore-env.py 23 expect = test.read('commands.gyp.ignore-env.stdout').replace('\r\n', '\n') variable
28 stdout=expect, ignore_line_numbers=True)
40 expect = test.read('commands.gypd.golden').replace('\r', '') variable
41 if not test.match(contents, expect):
43 test.diff(expect, contents, 'commands.gypd ')
gyptest-commands.py 17 expect = test.read('commands.gyp.stdout').replace('\r', '') variable
21 stdout=expect, ignore_line_numbers=True)
33 expect = test.read('commands.gypd.golden').replace('\r', '') variable
34 if not test.match(contents, expect):
36 test.diff(expect, contents, 'commands.gypd ')
  /external/chromium_org/ui/webui/resources/js/
load_time_data.js 27 expect(!this.data_, 'Re-setting data.');
44 expect(this.data_, 'No data. Did you remember to include strings.js?');
46 expect(typeof value != 'undefined', 'Could not find value for ' + id);
98 expect(value == Math.floor(value), 'Number isn\'t integer: ' + value);
107 expect(typeof replacements == 'object',
120 function expect(condition, message) { function
129 * @param {string} type The type we expect |value| to be.
132 expect(typeof value == type, '[' + value + '] (' + id +
136 expect(!loadTimeData, 'should only include this file once');
  /external/chromium_org/third_party/icu/source/test/intltest/
numfmtst.h 177 void expect(NumberFormat& fmt, const UnicodeString& str, const Formattable& n);
179 void expect(NumberFormat& fmt, const char *str, const Formattable& n) { function in class:NumberFormatTest
180 expect(fmt, UnicodeString(str, ""), n);
183 void expect(NumberFormat& fmt, const Formattable& n,
186 void expect(NumberFormat& fmt, const Formattable& n, function in class:NumberFormatTest
188 expect(fmt, n, UnicodeString(exp, ""), rt);
191 void expect(NumberFormat* fmt, const Formattable& n,
194 void expect(NumberFormat* fmt, const Formattable& n, function in class:NumberFormatTest
196 expect(fmt, n, UnicodeString(exp, ""), errorCode);
  /external/chromium_org/tools/gyp/test/variables/filelist/
gyptest-filelist.py 18 expect = test.read('filelist.gyp.stdout') variable
20 expect = expect.replace('/', r'\\').replace('\r\n', '\n') variable
24 stdout=expect, ignore_line_numbers=True)
37 expect = test.read('filelist.gypd.golden').replace('\r', '') variable
38 if not test.match(contents, expect):
40 test.diff(expect, contents, 'src/filelist.gypd ')
44 expect = 'John\nJacob\nJingleheimer\nSchmidt\n' variable
45 if not test.match(contents, expect):
47 test.diff(expect, contents, 'src/names.txt '
    [all...]
  /external/icu4c/test/intltest/
numfmtst.h 189 void expect(NumberFormat& fmt, const UnicodeString& str, const Formattable& n);
191 void expect(NumberFormat& fmt, const char *str, const Formattable& n) { function in class:NumberFormatTest
192 expect(fmt, UnicodeString(str, ""), n);
195 void expect(NumberFormat& fmt, const Formattable& n,
198 void expect(NumberFormat& fmt, const Formattable& n, function in class:NumberFormatTest
200 expect(fmt, n, UnicodeString(exp, ""), rt);
203 void expect(NumberFormat* fmt, const Formattable& n,
206 void expect(NumberFormat* fmt, const Formattable& n, function in class:NumberFormatTest
208 expect(fmt, n, UnicodeString(exp, ""), errorCode);
  /external/oprofile/libop/tests/
mangle_tests.c 53 char * expect = xmalloc(strlen(test->result) + local
55 strcpy(expect, op_samples_current_dir);
56 strcat(expect, test->result);
57 if (strcmp(result, expect)) {
59 (int)(test - tests), result, expect);
62 free(expect);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
ReturnTest.java 61 String expect = retval.getText(); local
63 if ( expect.charAt(0)=='"' && expect.charAt(expect.length()-1)=='"' ) {
64 expect = expect.substring(1, expect.length()-1);
67 return expect;
  /external/chromium_org/tools/gyp/test/linux/
gyptest-implicit-rpath.py 33 expect = '$ORIGIN/lib/' variable
35 expect = '$ORIGIN/lib.target/' variable
39 if GetRpaths('shared_executable') != [expect]:
42 if GetRpaths('shared_executable_no_so_suffix') != [expect]:
  /external/chromium_org/v8/test/mjsunit/
apply.js 81 var expect = "42foofishhorse"; variable
83 expect += "undefined";
84 assertEquals(expect, j.apply(undefined, arr), "apply to undefined");
  /external/oprofile/libregex/tests/
java_test.cpp 31 << "expect:\n\"" << output << "\"\n"
39 char const * expect; member in struct:__anon26165::input_output
60 check_result(cur->mangled, cur->expect, result);
regex_test.cpp 36 string test, expect, last; local
47 expect = last;
51 if (str != expect) {
52 cerr << "mistmatch: test, expect, returned\n"
54 << '"' << expect << '"' << endl
  /external/v8/test/mjsunit/
apply.js 81 var expect = "42foofishhorse"; variable
83 expect += "undefined";
84 assertEquals(expect, j.apply(undefined, arr), "apply to undefined");
  /bootable/recovery/edify/
main.c 26 int expect(const char* expr_str, const char* expected, int* errors) { function
76 expect("a", "a", &errors);
77 expect("\"a\"", "a", &errors);
78 expect("\"\\x61\"", "a", &errors);
79 expect("# this is a comment\n"
86 expect("a; b; c", "c", &errors);
89 expect("a + b", "ab", &errors);
90 expect("a + \n \"b\"", "ab", &errors);
91 expect("a + b +\nc\n", "abc", &errors);
94 expect("concat(a, b)", "ab", &errors)
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
HttpEntityEnclosingRequestBase.java 67 Header expect = getFirstHeader(HTTP.EXPECT_DIRECTIVE); local
68 return expect != null && HTTP.EXPECT_CONTINUE.equalsIgnoreCase(expect.getValue());
  /external/apache-http/src/org/apache/http/impl/client/
EntityEnclosingRequestWrapper.java 74 Header expect = getFirstHeader(HTTP.EXPECT_DIRECTIVE); local
75 return expect != null && HTTP.EXPECT_CONTINUE.equalsIgnoreCase(expect.getValue());
  /external/apache-http/src/org/apache/http/message/
BasicHttpEntityEnclosingRequest.java 77 Header expect = getFirstHeader(HTTP.EXPECT_DIRECTIVE); local
78 return expect != null && HTTP.EXPECT_CONTINUE.equalsIgnoreCase(expect.getValue());
  /external/chromium_org/chrome/browser/ui/app_list/search/
tokenized_string_match_unittest.cc 59 const char* expect; member in struct:app_list::test::__anon8378
75 EXPECT_EQ(kTestCases[i].expect, MatchHit(text, match));

Completed in 563 milliseconds

1 2 3 4 5 6 7