HomeSort by relevance Sort by last modified time
    Searched full:string_type (Results 1 - 25 of 258) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/webkit/LayoutTests/fast/xpath/
string-value-expected.txt 1 PASS doc.evaluate('.', doc, null, XPathResult.STRING_TYPE, null).stringValue is '0 1a-cdata-b2'
2 PASS doc.evaluate('.', doc.documentElement, null, XPathResult.STRING_TYPE, null).stringValue is '0 1a-cdata-b2'
3 PASS doc.evaluate('.', PI, null, XPathResult.STRING_TYPE, null).stringValue is '"Data" '
4 PASS doc.evaluate('.', COMMENT, null, XPathResult.STRING_TYPE, null).stringValue is ' comment '
5 PASS doc.evaluate('.', CDATA, null, XPathResult.STRING_TYPE, null).stringValue is '-cdata-'
6 PASS doc.evaluate('.', TEXT, null, XPathResult.STRING_TYPE, null).stringValue is '0 '
7 PASS doc.evaluate('.', EMPTY, null, XPathResult.STRING_TYPE, null).stringValue is ''
8 PASS doc.evaluate('.', ATTR, null, XPathResult.STRING_TYPE, null).stringValue is '<&nbsp;>'
evaluate-twice-expected.txt 1 PASS expr.evaluate(doc.documentElement.firstChild, XPathResult.STRING_TYPE, null).stringValue is '1'
2 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue is '1'
3 PASS expr.evaluate(doc.documentElement.firstChild, XPathResult.STRING_TYPE, null).stringValue is '1'
4 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue is '2'
5 PASS expr.evaluate(doc.documentElement.firstChild, XPathResult.STRING_TYPE, null).stringValue is '1'
6 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue is '2'
substring-nan-position-expected.txt 3 PASS document.evaluate("substring('12345', number('NaN'))", document, null, XPathResult.STRING_TYPE, null).stringValue is ''
4 PASS document.evaluate("substring('12345', number('NaN'), 3)", document, null, XPathResult.STRING_TYPE, null).stringValue is ''
5 PASS document.evaluate("substring('12345', number('NaN'), -2147483645)", document, null, XPathResult.STRING_TYPE, null).stringValue is ''
6 PASS document.evaluate("substring('12345', number('NaN'), number('NaN'))", document, null, XPathResult.STRING_TYPE, null).stringValue is ''
substring-non-positive-postion-expected.txt 3 PASS document.evaluate("substring('abcde', 0)", document, null, XPathResult.STRING_TYPE, null).stringValue is 'abcde'
4 PASS document.evaluate("substring('abcde', -2)", document, null, XPathResult.STRING_TYPE, null).stringValue is 'abcde'
5 PASS document.evaluate("substring('abcde', 0, 5)", document, null, XPathResult.STRING_TYPE, null).stringValue is 'abcd'
6 PASS document.evaluate("substring('abcde', -2, 5)", document, null, XPathResult.STRING_TYPE, null).stringValue is 'ab'
substring-after-expected.txt 3 PASS document.evaluate("substring-after('abcde', 'd')", document, null, XPathResult.STRING_TYPE, null).stringValue is 'e'
4 PASS document.evaluate("substring-after('abcde', 'f')", document, null, XPathResult.STRING_TYPE, null).stringValue is ''
5 PASS document.evaluate("substring-after('abcde', '')", document, null, XPathResult.STRING_TYPE, null).stringValue is 'abcde'
6 PASS document.evaluate("substring-after('1999/04/01', '/')", document, null, XPathResult.STRING_TYPE, null).stringValue is '04/01'
7 PASS document.evaluate("substring-after('1999/04/01', '19')", document, null, XPathResult.STRING_TYPE, null).stringValue is '99/04/01'
evaluate-twice.html 15 shouldBe("expr.evaluate(doc.documentElement.firstChild, XPathResult.STRING_TYPE, null).stringValue", "'1'");
16 shouldBe("expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue", "'1'");
20 shouldBe("expr.evaluate(doc.documentElement.firstChild, XPathResult.STRING_TYPE, null).stringValue", "'1'");
21 shouldBe("expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue", "'2'");
25 shouldBe("expr.evaluate(doc.documentElement.firstChild, XPathResult.STRING_TYPE, null).stringValue", "'1'");
26 shouldBe("expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue", "'2'");
substring-after.html 13 shouldBe("document.evaluate(\"substring-after('abcde', 'd')\", document, null, XPathResult.STRING_TYPE, null).stringValue", "'e'");
14 shouldBe("document.evaluate(\"substring-after('abcde', 'f')\", document, null, XPathResult.STRING_TYPE, null).stringValue", "''");
15 shouldBe("document.evaluate(\"substring-after('abcde', '')\", document, null, XPathResult.STRING_TYPE, null).stringValue", "'abcde'");
16 shouldBe("document.evaluate(\"substring-after('1999/04/01', '/')\", document, null, XPathResult.STRING_TYPE, null).stringValue", "'04/01'");
17 shouldBe("document.evaluate(\"substring-after('1999/04/01', '19')\", document, null, XPathResult.STRING_TYPE, null).stringValue", "'99/04/01'");
string-value.html 37 shouldBe("doc.evaluate('.', doc, null, XPathResult.STRING_TYPE, null).stringValue", "'0 1a-cdata-b2'");
38 shouldBe("doc.evaluate('.', doc.documentElement, null, XPathResult.STRING_TYPE, null).stringValue", "'0 1a-cdata-b2'");
39 shouldBe("doc.evaluate('.', PI, null, XPathResult.STRING_TYPE, null).stringValue", "'\"Data\" '");
40 shouldBe("doc.evaluate('.', COMMENT, null, XPathResult.STRING_TYPE, null).stringValue", "' comment '");
41 shouldBe("doc.evaluate('.', CDATA, null, XPathResult.STRING_TYPE, null).stringValue", "'-cdata-'");
42 shouldBe("doc.evaluate('.', TEXT, null, XPathResult.STRING_TYPE, null).stringValue", "'0 '");
43 shouldBe("doc.evaluate('.', EMPTY, null, XPathResult.STRING_TYPE, null).stringValue", "''");
44 shouldBe("doc.evaluate('.', ATTR, null, XPathResult.STRING_TYPE, null).stringValue", "'<&nbsp;>'");
substring-nan-position.html 13 shouldBe("document.evaluate(\"substring('12345', number(\'NaN\'))\", document, null, XPathResult.STRING_TYPE, null).stringValue", "''");
14 shouldBe("document.evaluate(\"substring('12345', number(\'NaN\'), 3)\", document, null, XPathResult.STRING_TYPE, null).stringValue", "''");
17 shouldBe("document.evaluate(\"substring('12345', number(\'NaN\'), -2147483645)\", document, null, XPathResult.STRING_TYPE, null).stringValue", "''");
19 shouldBe("document.evaluate(\"substring('12345', number(\'NaN\'), number(\'NaN\'))\", document, null, XPathResult.STRING_TYPE, null).stringValue", "''");
substring-non-positive-postion.html 13 shouldBe("document.evaluate(\"substring('abcde', 0)\", document, null, XPathResult.STRING_TYPE, null).stringValue", "'abcde'");
14 shouldBe("document.evaluate(\"substring('abcde', -2)\", document, null, XPathResult.STRING_TYPE, null).stringValue", "'abcde'");
15 shouldBe("document.evaluate(\"substring('abcde', 0, 5)\", document, null, XPathResult.STRING_TYPE, null).stringValue", "'abcd'");
16 shouldBe("document.evaluate(\"substring('abcde', -2, 5)\", document, null, XPathResult.STRING_TYPE, null).stringValue", "'ab'");
  /external/webkit/LayoutTests/fast/xpath/4XPath/Core/
test_literal_expr-expected.txt 1 PASS document.evaluate('""', document, null, XPathResult.STRING_TYPE, null).stringValue is ""
2 PASS document.evaluate('"Hi"', document, null, XPathResult.STRING_TYPE, null).stringValue is "Hi"
3 PASS document.evaluate('"NaN"', document, null, XPathResult.STRING_TYPE, null).stringValue is "NaN"
4 PASS document.evaluate('"? = middle dot"', document, null, XPathResult.STRING_TYPE, null).stringValue is "? = middle dot"
5 PASS document.evaluate('"0"', document, null, XPathResult.STRING_TYPE, null).stringValue is "0"
6 PASS document.evaluate('"1"', document, null, XPathResult.STRING_TYPE, null).stringValue is "1"
7 PASS document.evaluate('"2"', document, null, XPathResult.STRING_TYPE, null).stringValue is "2"
8 PASS document.evaluate('"3"', document, null, XPathResult.STRING_TYPE, null).stringValue is "3"
9 PASS document.evaluate('"4"', document, null, XPathResult.STRING_TYPE, null).stringValue is "4"
10 PASS document.evaluate('"5"', document, null, XPathResult.STRING_TYPE, null).stringValue is "5
    [all...]
test_literal_expr.html 11 shouldBe('document.evaluate(\'""\', document, null, XPathResult.STRING_TYPE, null).stringValue', '""');
12 shouldBe('document.evaluate(\'"Hi"\', document, null, XPathResult.STRING_TYPE, null).stringValue', '"Hi"');
13 shouldBe('document.evaluate(\'"NaN"\', document, null, XPathResult.STRING_TYPE, null).stringValue', '"NaN"');
14 shouldBe('document.evaluate(\'"\u2022 = middle dot"\', document, null, XPathResult.STRING_TYPE, null).stringValue', '"\u2022 = middle dot"');
15 shouldBe('document.evaluate(\'"0"\', document, null, XPathResult.STRING_TYPE, null).stringValue', '"0"');
16 shouldBe('document.evaluate(\'"1"\', document, null, XPathResult.STRING_TYPE, null).stringValue', '"1"');
17 shouldBe('document.evaluate(\'"2"\', document, null, XPathResult.STRING_TYPE, null).stringValue', '"2"');
18 shouldBe('document.evaluate(\'"3"\', document, null, XPathResult.STRING_TYPE, null).stringValue', '"3"');
19 shouldBe('document.evaluate(\'"4"\', document, null, XPathResult.STRING_TYPE, null).stringValue', '"4"');
20 shouldBe('document.evaluate(\'"5"\', document, null, XPathResult.STRING_TYPE, null).stringValue', '"5"')
    [all...]
  /external/stlport/stlport/stl/
_messages_facets.h 59 typedef string string_type; typedef in class:messages
65 string_type get(catalog __c, int __set, int __msgid,
66 const string_type& __dfault) const
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
79 const string_type& __dfault) const
92 typedef wstring string_type; typedef in class:messages
98 inline string_type get(catalog __c, int __set, int __msgid,
99 const string_type& __dfault) const
111 virtual string_type do_get(catalog __c, int __set, int __msgid,
112 const string_type& __dfault) cons
127 typedef string string_type; typedef in class:messages_byname
155 typedef wstring string_type; typedef in class:messages_byname
    [all...]
_monetary.h 58 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_get
67 string_type& __digits) const
79 string_type& __digits) const;
89 typedef string string_type; typedef in class:moneypunct
95 string_type curr_symbol() const { return do_curr_symbol(); }
96 string_type positive_sign() const { return do_positive_sign(); }
97 string_type negative_sign() const { return do_negative_sign(); }
128 typedef string string_type; typedef in class:moneypunct
135 string_type curr_symbol() const { return do_curr_symbol(); }
136 string_type positive_sign() const { return do_positive_sign();
171 typedef wstring string_type; typedef in class:moneypunct
210 typedef wstring string_type; typedef in class:moneypunct
254 typedef string string_type; typedef in class:moneypunct_byname
287 typedef string string_type; typedef in class:moneypunct_byname
321 typedef wstring string_type; typedef in class:moneypunct_byname
354 typedef wstring string_type; typedef in class:moneypunct_byname
392 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_put
    [all...]
_collate.h 46 typedef string string_type; typedef in class:collate
55 string_type transform(const char* __low, const char* __high) const {
69 virtual string_type do_transform(const char*, const char*) const;
82 typedef wstring string_type; typedef in class:collate
91 string_type transform(const wchar_t* __low, const wchar_t* __high) const {
105 virtual string_type do_transform(const wchar_t*, const wchar_t*) const;
125 virtual string_type do_transform(const char*, const char*) const;
148 virtual string_type do_transform(const wchar_t*, const wchar_t*) const;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_messages_facets.h 59 typedef string string_type; typedef in class:messages
65 string_type get(catalog __c, int __set, int __msgid,
66 const string_type& __dfault) const
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
79 const string_type& __dfault) const
92 typedef wstring string_type; typedef in class:messages
98 inline string_type get(catalog __c, int __set, int __msgid,
99 const string_type& __dfault) const
111 virtual string_type do_get(catalog __c, int __set, int __msgid,
112 const string_type& __dfault) cons
127 typedef string string_type; typedef in class:messages_byname
155 typedef wstring string_type; typedef in class:messages_byname
    [all...]
_monetary.h 58 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_get
67 string_type& __digits) const
79 string_type& __digits) const;
89 typedef string string_type; typedef in class:moneypunct
95 string_type curr_symbol() const { return do_curr_symbol(); }
96 string_type positive_sign() const { return do_positive_sign(); }
97 string_type negative_sign() const { return do_negative_sign(); }
128 typedef string string_type; typedef in class:moneypunct
135 string_type curr_symbol() const { return do_curr_symbol(); }
136 string_type positive_sign() const { return do_positive_sign();
171 typedef wstring string_type; typedef in class:moneypunct
210 typedef wstring string_type; typedef in class:moneypunct
254 typedef string string_type; typedef in class:moneypunct_byname
287 typedef string string_type; typedef in class:moneypunct_byname
321 typedef wstring string_type; typedef in class:moneypunct_byname
354 typedef wstring string_type; typedef in class:moneypunct_byname
392 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_put
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_messages_facets.h 59 typedef string string_type; typedef in class:messages
65 string_type get(catalog __c, int __set, int __msgid,
66 const string_type& __dfault) const
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
79 const string_type& __dfault) const
92 typedef wstring string_type; typedef in class:messages
98 inline string_type get(catalog __c, int __set, int __msgid,
99 const string_type& __dfault) const
111 virtual string_type do_get(catalog __c, int __set, int __msgid,
112 const string_type& __dfault) cons
127 typedef string string_type; typedef in class:messages_byname
155 typedef wstring string_type; typedef in class:messages_byname
    [all...]
_monetary.h 58 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_get
67 string_type& __digits) const
79 string_type& __digits) const;
89 typedef string string_type; typedef in class:moneypunct
95 string_type curr_symbol() const { return do_curr_symbol(); }
96 string_type positive_sign() const { return do_positive_sign(); }
97 string_type negative_sign() const { return do_negative_sign(); }
128 typedef string string_type; typedef in class:moneypunct
135 string_type curr_symbol() const { return do_curr_symbol(); }
136 string_type positive_sign() const { return do_positive_sign();
171 typedef wstring string_type; typedef in class:moneypunct
210 typedef wstring string_type; typedef in class:moneypunct
254 typedef string string_type; typedef in class:moneypunct_byname
287 typedef string string_type; typedef in class:moneypunct_byname
321 typedef wstring string_type; typedef in class:moneypunct_byname
354 typedef wstring string_type; typedef in class:moneypunct_byname
392 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_put
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_messages_facets.h 59 typedef string string_type; typedef in class:messages
65 string_type get(catalog __c, int __set, int __msgid,
66 const string_type& __dfault) const
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
79 const string_type& __dfault) const
92 typedef wstring string_type; typedef in class:messages
98 inline string_type get(catalog __c, int __set, int __msgid,
99 const string_type& __dfault) const
111 virtual string_type do_get(catalog __c, int __set, int __msgid,
112 const string_type& __dfault) cons
127 typedef string string_type; typedef in class:messages_byname
155 typedef wstring string_type; typedef in class:messages_byname
    [all...]
_monetary.h 58 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_get
67 string_type& __digits) const
79 string_type& __digits) const;
89 typedef string string_type; typedef in class:moneypunct
95 string_type curr_symbol() const { return do_curr_symbol(); }
96 string_type positive_sign() const { return do_positive_sign(); }
97 string_type negative_sign() const { return do_negative_sign(); }
128 typedef string string_type; typedef in class:moneypunct
135 string_type curr_symbol() const { return do_curr_symbol(); }
136 string_type positive_sign() const { return do_positive_sign();
171 typedef wstring string_type; typedef in class:moneypunct
210 typedef wstring string_type; typedef in class:moneypunct
254 typedef string string_type; typedef in class:moneypunct_byname
287 typedef string string_type; typedef in class:moneypunct_byname
321 typedef wstring string_type; typedef in class:moneypunct_byname
354 typedef wstring string_type; typedef in class:moneypunct_byname
392 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_put
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_messages_facets.h 59 typedef string string_type; typedef in class:messages
65 string_type get(catalog __c, int __set, int __msgid,
66 const string_type& __dfault) const
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
79 const string_type& __dfault) const
92 typedef wstring string_type; typedef in class:messages
98 inline string_type get(catalog __c, int __set, int __msgid,
99 const string_type& __dfault) const
111 virtual string_type do_get(catalog __c, int __set, int __msgid,
112 const string_type& __dfault) cons
127 typedef string string_type; typedef in class:messages_byname
155 typedef wstring string_type; typedef in class:messages_byname
    [all...]
_monetary.h 58 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_get
67 string_type& __digits) const
79 string_type& __digits) const;
89 typedef string string_type; typedef in class:moneypunct
95 string_type curr_symbol() const { return do_curr_symbol(); }
96 string_type positive_sign() const { return do_positive_sign(); }
97 string_type negative_sign() const { return do_negative_sign(); }
128 typedef string string_type; typedef in class:moneypunct
135 string_type curr_symbol() const { return do_curr_symbol(); }
136 string_type positive_sign() const { return do_positive_sign();
171 typedef wstring string_type; typedef in class:moneypunct
210 typedef wstring string_type; typedef in class:moneypunct
254 typedef string string_type; typedef in class:moneypunct_byname
287 typedef string string_type; typedef in class:moneypunct_byname
321 typedef wstring string_type; typedef in class:moneypunct_byname
354 typedef wstring string_type; typedef in class:moneypunct_byname
392 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_put
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_messages_facets.h 59 typedef string string_type; typedef in class:messages
65 string_type get(catalog __c, int __set, int __msgid,
66 const string_type& __dfault) const
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
79 const string_type& __dfault) const
92 typedef wstring string_type; typedef in class:messages
98 inline string_type get(catalog __c, int __set, int __msgid,
99 const string_type& __dfault) const
111 virtual string_type do_get(catalog __c, int __set, int __msgid,
112 const string_type& __dfault) cons
127 typedef string string_type; typedef in class:messages_byname
155 typedef wstring string_type; typedef in class:messages_byname
    [all...]
_monetary.h 58 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_get
67 string_type& __digits) const
79 string_type& __digits) const;
89 typedef string string_type; typedef in class:moneypunct
95 string_type curr_symbol() const { return do_curr_symbol(); }
96 string_type positive_sign() const { return do_positive_sign(); }
97 string_type negative_sign() const { return do_negative_sign(); }
128 typedef string string_type; typedef in class:moneypunct
135 string_type curr_symbol() const { return do_curr_symbol(); }
136 string_type positive_sign() const { return do_positive_sign();
171 typedef wstring string_type; typedef in class:moneypunct
210 typedef wstring string_type; typedef in class:moneypunct
254 typedef string string_type; typedef in class:moneypunct_byname
287 typedef string string_type; typedef in class:moneypunct_byname
321 typedef wstring string_type; typedef in class:moneypunct_byname
354 typedef wstring string_type; typedef in class:moneypunct_byname
392 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type; typedef in class:money_put
    [all...]

Completed in 372 milliseconds

1 2 3 4 5 6 7 8 91011