Searched refs:item (Results 101 - 125 of 3493) sorted by relevance

1234567891011>>

/external/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-hangul.c139 static HB_Bool hangul_shape_syllable(HB_ShaperItem *item, HB_Bool openType) argument
141 const HB_UChar16 *ch = item->string + item->item.pos;
142 int len = item->item.length;
144 const int availableGlyphs = item->num_glyphs;
150 if (item->item.length == 2) {
156 } else if (item
213 HB_HangulShape(HB_ShaperItem *item) argument
[all...]
H A Dharfbuzz-tibetan.c103 static HB_Bool tibetan_shape_syllable(HB_Bool openType, HB_ShaperItem *item, HB_Bool invalid) argument
106 const HB_UChar16 *str = item->string + item->item.pos;
107 int len = item->item.length;
109 const int availableGlyphs = item->num_glyphs;
114 if (item->num_glyphs < item->item
206 HB_TibetanShape(HB_ShaperItem *item) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DPEPPubSub.java35 PEPItem item; field in class:PEPPubSub
41 public PEPPubSub(PEPItem item) { argument
44 this.item = item;
78 * &lt;item jid="gato1@gato.home"/&gt;
79 * &lt;item jid="gato2@gato.home"/&gt;
88 buf.append("<publish node=\"").append(item.getNode()).append("\">");
89 buf.append(item.toXML());
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
H A D15.6.2.js52 var item = 0;
54 array[item++] = new TestCase( SECTION, "typeof (new Boolean(1))", "object", typeof (new Boolean(1)) );
55 array[item++] = new TestCase( SECTION, "(new Boolean(1)).constructor", Boolean.prototype.constructor, (new Boolean(1)).constructor );
56 array[item++] = new TestCase( SECTION,
60 array[item++] = new TestCase( SECTION, "(new Boolean(1)).valueOf()", true, (new Boolean(1)).valueOf() );
61 array[item++] = new TestCase( SECTION, "typeof new Boolean(1)", "object", typeof new Boolean(1) );
62 array[item++] = new TestCase( SECTION, "(new Boolean(0)).constructor", Boolean.prototype.constructor, (new Boolean(0)).constructor );
63 array[item++] = new TestCase( SECTION,
67 array[item++] = new TestCase( SECTION, "(new Boolean(0)).valueOf()", false, (new Boolean(0)).valueOf() );
68 array[item
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
H A D11.6.3.js80 var item = 0;
82 array[item++] = new TestCase( SECTION, "Number.NaN + 1", Number.NaN, Number.NaN + 1 );
83 array[item++] = new TestCase( SECTION, "1 + Number.NaN", Number.NaN, 1 + Number.NaN );
85 array[item++] = new TestCase( SECTION, "Number.NaN - 1", Number.NaN, Number.NaN - 1 );
86 array[item++] = new TestCase( SECTION, "1 - Number.NaN", Number.NaN, 1 - Number.NaN );
88 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY + Number.POSITIVE_INFINITY", Number.POSITIVE_INFINITY, Number.POSITIVE_INFINITY + Number.POSITIVE_INFINITY);
89 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY + Number.NEGATIVE_INFINITY", Number.NEGATIVE_INFINITY, Number.NEGATIVE_INFINITY + Number.NEGATIVE_INFINITY);
91 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY + Number.NEGATIVE_INFINITY", Number.NaN, Number.POSITIVE_INFINITY + Number.NEGATIVE_INFINITY);
92 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY + Number.POSITIVE_INFINITY", Number.NaN, Number.NEGATIVE_INFINITY + Number.POSITIVE_INFINITY);
94 array[item
[all...]
H A D11.1.1.js39 var item = 0; variable
45 testcases[item++] = new TestCase( SECTION,
50 testcases[item++] = new TestCase( SECTION,
57 testcases[item++] = new TestCase( SECTION,
64 testcases[item++] = new TestCase( SECTION,
71 testcases[item++] = new TestCase( SECTION,
76 testcases[item++] = new TestCase( SECTION,
81 testcases[item++] = new TestCase( SECTION,
86 testcases[item++] = new TestCase( SECTION,
92 testcases[item
[all...]
H A D11.12-1.js59 var item = 0;
61 array[item++] = new TestCase( SECTION, "true ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED"));
62 array[item++] = new TestCase( SECTION, "false ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED"));
64 array[item++] = new TestCase( SECTION, "1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED"));
65 array[item++] = new TestCase( SECTION, "0 ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED"));
66 array[item++] = new TestCase( SECTION, "-1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED"));
68 array[item++] = new TestCase( SECTION, "NaN ? 'FAILED' : 'PASSED'", "PASSED", (Number.NaN?"FAILED":"PASSED"));
70 array[item++] = new TestCase( SECTION, "var VAR = true ? , : 'FAILED'", "PASSED", (VAR = true ? "PASSED" : "FAILED") );
H A D11.13.js59 var item = 0;
61 array[item++] = new TestCase( SECTION, "true ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED"));
62 array[item++] = new TestCase( SECTION, "false ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED"));
64 array[item++] = new TestCase( SECTION, "1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED"));
65 array[item++] = new TestCase( SECTION, "0 ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED"));
66 array[item++] = new TestCase( SECTION, "-1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED"));
68 array[item++] = new TestCase( SECTION, "NaN ? 'FAILED' : 'PASSED'", "PASSED", (Number.NaN?"FAILED":"PASSED"));
70 array[item++] = new TestCase( SECTION, "var VAR = true ? , : 'FAILED'", "PASSED", (VAR = true ? "PASSED" : "FAILED") );
H A D11.5.3.js80 var item = 0;
84 array[item++] = new TestCase( SECTION, "Number.NaN % Number.NaN", Number.NaN, Number.NaN % Number.NaN );
85 array[item++] = new TestCase( SECTION, "Number.NaN % 1", Number.NaN, Number.NaN % 1 );
86 array[item++] = new TestCase( SECTION, "1 % Number.NaN", Number.NaN, 1 % Number.NaN );
88 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY % Number.NaN", Number.NaN, Number.POSITIVE_INFINITY % Number.NaN );
89 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY % Number.NaN", Number.NaN, Number.NEGATIVE_INFINITY % Number.NaN );
94 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY % Number.NEGATIVE_INFINITY", Number.NaN, Number.NEGATIVE_INFINITY % Number.NEGATIVE_INFINITY );
95 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY % Number.NEGATIVE_INFINITY", Number.NaN, Number.POSITIVE_INFINITY % Number.NEGATIVE_INFINITY );
96 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY % Number.POSITIVE_INFINITY", Number.NaN, Number.NEGATIVE_INFINITY % Number.POSITIVE_INFINITY );
97 array[item
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
H A D15.5.4.10-1.js74 var item = 0;
76 array[item++] = new TestCase( SECTION, "String.prototype.substring.length", 2, String.prototype.substring.length );
77 array[item++] = new TestCase( SECTION, "delete String.prototype.substring.length", false, delete String.prototype.substring.length );
78 array[item++] = new TestCase( SECTION, "delete String.prototype.substring.length; String.prototype.substring.length", 2, eval("delete String.prototype.substring.length; String.prototype.substring.length") );
84 array[item++] = new TestCase( SECTION,
89 array[item++] = new TestCase( SECTION,
94 array[item++] = new TestCase( SECTION,
99 array[item++] = new TestCase( SECTION,
105 array[item++] = new TestCase( SECTION,
111 array[item
[all...]
H A D15.5.4.3-1.js49 var item = 0;
51 array[item++] = new TestCase( SECTION, "String.prototype.valueOf.length", 0, String.prototype.valueOf.length );
53 array[item++] = new TestCase( SECTION, "String.prototype.valueOf()", "", String.prototype.valueOf() );
54 array[item++] = new TestCase( SECTION, "(new String()).valueOf()", "", (new String()).valueOf() );
55 array[item++] = new TestCase( SECTION, "(new String(\"\")).valueOf()", "", (new String("")).valueOf() );
56 array[item++] = new TestCase( SECTION, "(new String( String() )).valueOf()","", (new String(String())).valueOf() );
57 array[item++] = new TestCase( SECTION, "(new String( \"h e l l o\" )).valueOf()", "h e l l o", (new String("h e l l o")).valueOf() );
58 array[item++] = new TestCase( SECTION, "(new String( 0 )).valueOf()", "0", (new String(0)).valueOf() );
H A D15.5.4.5-2.js67 var item = 0;
71 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(0)", 0x0074, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(0)") );
72 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(1)", 0x0072, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(1)") );
73 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(2)", 0x0075, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(2)") );
74 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(3)", 0x0065, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(3)") );
75 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)") );
76 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)") );
78 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(true)", 0x0072, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(true)") );
79 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(false)", 0x0074, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(false)") );
81 array[item
[all...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundleBackForwardListItem.h39 WK_EXPORT WKURLRef WKBundleBackForwardListItemCopyOriginalURL(WKBundleBackForwardListItemRef item);
40 WK_EXPORT WKURLRef WKBundleBackForwardListItemCopyURL(WKBundleBackForwardListItemRef item);
41 WK_EXPORT WKStringRef WKBundleBackForwardListItemCopyTitle(WKBundleBackForwardListItemRef item);
43 WK_EXPORT WKStringRef WKBundleBackForwardListItemCopyTarget(WKBundleBackForwardListItemRef item);
44 WK_EXPORT bool WKBundleBackForwardListItemIsTargetItem(WKBundleBackForwardListItemRef item);
46 WK_EXPORT WKArrayRef WKBundleBackForwardListItemCopyChildren(WKBundleBackForwardListItemRef item);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
H A D15.8.2.1.js47 var item = 0;
49 array[item++] = new TestCase( SECTION, "Math.abs.length", 1, Math.abs.length );
51 array[item++] = new TestCase( SECTION, "Math.abs()", Number.NaN, Math.abs() );
52 array[item++] = new TestCase( SECTION, "Math.abs( void 0 )", Number.NaN, Math.abs(void 0) );
53 array[item++] = new TestCase( SECTION, "Math.abs( null )", 0, Math.abs(null) );
54 array[item++] = new TestCase( SECTION, "Math.abs( true )", 1, Math.abs(true) );
55 array[item++] = new TestCase( SECTION, "Math.abs( false )", 0, Math.abs(false) );
56 array[item++] = new TestCase( SECTION, "Math.abs( string primitive)", Number.NaN, Math.abs("a string primitive") );
57 array[item++] = new TestCase( SECTION, "Math.abs( string object )", Number.NaN, Math.abs(new String( 'a String object' )) );
58 array[item
[all...]
H A D15.8.2.6.js52 var item = 0;
54 array[item++] = new TestCase( SECTION, "Math.ceil.length", 1, Math.ceil.length );
56 array[item++] = new TestCase( SECTION, "Math.ceil(NaN)", Number.NaN, Math.ceil(Number.NaN) );
57 array[item++] = new TestCase( SECTION, "Math.ceil(null)", 0, Math.ceil(null) );
58 array[item++] = new TestCase( SECTION, "Math.ceil()", Number.NaN, Math.ceil() );
59 array[item++] = new TestCase( SECTION, "Math.ceil(void 0)", Number.NaN, Math.ceil(void 0) );
61 array[item++] = new TestCase( SECTION, "Math.ceil('0')", 0, Math.ceil('0') );
62 array[item++] = new TestCase( SECTION, "Math.ceil('-0')", -0, Math.ceil('-0') );
63 array[item++] = new TestCase( SECTION, "Infinity/Math.ceil('0')", Infinity, Infinity/Math.ceil('0'));
64 array[item
[all...]
H A D15.8.2.12.js52 var item = 0;
54 array[item++] = new TestCase( SECTION, "Math.min.length", 2, Math.min.length );
56 array[item++] = new TestCase( SECTION, "Math.min()", Infinity, Math.min() );
57 array[item++] = new TestCase( SECTION, "Math.min(void 0, 1)", Number.NaN, Math.min( void 0, 1 ) );
58 array[item++] = new TestCase( SECTION, "Math.min(void 0, void 0)", Number.NaN, Math.min( void 0, void 0 ) );
59 array[item++] = new TestCase( SECTION, "Math.min(null, 1)", 0, Math.min( null, 1 ) );
60 array[item++] = new TestCase( SECTION, "Math.min(-1, null)", -1, Math.min( -1, null ) );
61 array[item++] = new TestCase( SECTION, "Math.min(true, false)", 0, Math.min(true,false) );
63 array[item++] = new TestCase( SECTION, "Math.min('-99','99')", -99, Math.min( "-99","99") );
65 array[item
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
H A D15.4.1.2.js50 var item = 0;
52 array[item++] = new TestCase( SECTION, "(Array()).length", 0, (Array()).length );
53 array[item++] = new TestCase( SECTION, "(Array(0)).length", 0, (Array(0)).length );
54 array[item++] = new TestCase( SECTION, "(Array(1)).length", 1, (Array(1)).length );
55 array[item++] = new TestCase( SECTION, "(Array(10)).length", 10, (Array(10)).length );
56 array[item++] = new TestCase( SECTION, "(Array('1')).length", 1, (Array('1')).length );
57 array[item++] = new TestCase( SECTION, "(Array(1000)).length", 1000, (Array(1000)).length );
58 array[item++] = new TestCase( SECTION, "(Array('1000')).length", 1, (Array('1000')).length );
59 array[item++] = new TestCase( SECTION, "(Array(4294967295)).length", ToUint32(4294967295), (Array(4294967295)).length );
60 array[item
[all...]
H A D15.4-1.js46 var item = 0;
48 array[item++] = new TestCase( SECTION,
53 array[item++] = new TestCase( SECTION,
58 array[item++] = new TestCase( SECTION,
63 array[item++] = new TestCase( SECTION,
69 array[item++] = new TestCase( SECTION,
74 array[item++] = new TestCase( SECTION,
80 array[item++] = new TestCase( SECTION,
85 array[item++] = new TestCase( SECTION,
92 array[item
[all...]
H A D15.4.2.1-1.js64 var item = 0;
66 array[item++] = new TestCase( SECTION, "typeof new Array(1,2)", "object", typeof new Array(1,2) );
67 array[item++] = new TestCase( SECTION, "(new Array(1,2)).toString", Array.prototype.toString, (new Array(1,2)).toString );
68 array[item++] = new TestCase( SECTION,
73 array[item++] = new TestCase( SECTION, "(new Array(1,2)).length", 2, (new Array(1,2)).length );
74 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); arr[0]", 1, eval("var arr = (new Array(1,2)); arr[0]") );
75 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); arr[1]", 2, eval("var arr = (new Array(1,2)); arr[1]") );
76 array[item++] = new TestCase( SECTION, "var arr = (new Array(1,2)); String(arr)", "1,2", eval("var arr = (new Array(1,2)); String(arr)") );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
H A D9.3.1-2.js68 var item = 0;
72 array[item++] = new TestCase( SECTION, "Number(00)", 0, Number("00"));
73 array[item++] = new TestCase( SECTION, "Number(01)", 1, Number("01"));
74 array[item++] = new TestCase( SECTION, "Number(02)", 2, Number("02"));
75 array[item++] = new TestCase( SECTION, "Number(03)", 3, Number("03"));
76 array[item++] = new TestCase( SECTION, "Number(04)", 4, Number("04"));
77 array[item++] = new TestCase( SECTION, "Number(05)", 5, Number("05"));
78 array[item++] = new TestCase( SECTION, "Number(06)", 6, Number("06"));
79 array[item++] = new TestCase( SECTION, "Number(07)", 7, Number("07"));
80 array[item
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-tibetan.c103 static HB_Bool tibetan_shape_syllable(HB_Bool openType, HB_ShaperItem *item, HB_Bool invalid) argument
106 const HB_UChar16 *str = item->string + item->item.pos;
107 int len = item->item.length;
109 const int availableGlyphs = item->num_glyphs;
114 if (item->num_glyphs < item->item
206 HB_TibetanShape(HB_ShaperItem *item) argument
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
H A D7.1-3.js55 var item = 0;
56 array[item++] = new TestCase( SECTION, "'var'+'\u000B'+'MYVAR1=10;MYVAR1'", 10, eval('var'+'\u000B'+'MYVAR1=10;MYVAR1') );
57 array[item++] = new TestCase( SECTION, "'var'+'\u0009'+'MYVAR2=10;MYVAR2'", 10, eval('var'+'\u0009'+'MYVAR2=10;MYVAR2') );
58 array[item++] = new TestCase( SECTION, "'var'+'\u000C'+'MYVAR3=10;MYVAR3'", 10, eval('var'+'\u000C'+'MYVAR3=10;MYVAR3') );
59 array[item++] = new TestCase( SECTION, "'var'+'\u0020'+'MYVAR4=10;MYVAR4'", 10, eval('var'+'\u0020'+'MYVAR4=10;MYVAR4') );
63 array[item++] = new TestCase( SECTION,
68 array[item++] = new TestCase( SECTION,
72 array[item++] = new TestCase( SECTION,
H A D7.8.2-n.js41 var item = 0;
43 // array[item++] = new TestCase( "7.8.2", "{ 1 \n 2 } 3", 3, "{ 1 \n 2 } 3" );
44 array[item++] = new TestCase( "7.8.2", "{ 1 2 } 3", "error", eval("{1 2 } 3") );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/
H A D15.7.4.3-1.js46 var item = 0;
49 array[item++] = new TestCase("15.7.4.1", "Number.prototype.valueOf()", 0, "Number.prototype.valueOf()" );
51 array[item++] = new TestCase("15.7.4.1", "(new Number(1)).valueOf()", 1, "(new Number(1)).valueOf()" );
52 array[item++] = new TestCase("15.7.4.1", "(new Number(-1)).valueOf()", -1, "(new Number(-1)).valueOf()" );
53 array[item++] = new TestCase("15.7.4.1", "(new Number(0)).valueOf()", 0, "(new Number(0)).valueOf()" );
54 array[item++] = new TestCase("15.7.4.1", "(new Number(Number.POSITIVE_INFINITY)).valueOf()", Number.POSITIVE_INFINITY, "(new Number(Number.POSITIVE_INFINITY)).valueOf()" );
55 array[item++] = new TestCase("15.7.4.1", "(new Number(Number.NaN)).valueOf()", Number.NaN, "(new Number(Number.NaN)).valueOf()" );
56 array[item++] = new TestCase("15.7.4.1", "(new Number()).valueOf()", 0, "(new Number()).valueOf()" );
/external/guava/guava-testlib/src/com/google/common/testing/
H A DEqualsTester.java61 * <li>"{@code [group }<i>i</i>{@code , item }<i>j</i>{@code ]}" refers to the
62 * <i>j</i><sup>th</sup> item in the <i>i</i><sup>th</sup> equality group,
100 @Override public void assertRelated(Object item, Object related) {
101 assertEquals("$ITEM must be equal to $RELATED", item, related);
102 int itemHash = item.hashCode();
108 @Override public void assertUnrelated(Object item, Object unrelated) {
111 assertTrue("$ITEM must be unequal to $UNRELATED", !Objects.equal(item, unrelated));
125 for (Object item : Iterables.concat(equalityGroups)) {
126 assertTrue(item + " must be unequal to null", !item
[all...]

Completed in 309 milliseconds

1234567891011>>