Searched defs:values2 (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/v8/test/mjsunit/
H A Dmath-floor-of-div-nosudiv.js188 var values2 = [1, 3, 10, 99, 100, 101, 0x7fffffff]; variable
190 for (var i = 0; i < values2.length; i++) {
191 for (var j = 0; j < values2.length; j++) {
192 assertEquals(Math.floor(div((values2[i] | 0), (values2[j] | 0))),
193 Math.floor((values2[i] | 0) / (values2[j] | 0)));
194 assertEquals(Math.floor(div(-(values2[i] | 0), (values2[j] | 0))),
195 Math.floor(-(values2[
[all...]
H A Dmath-floor-of-div.js188 var values2 = [1, 3, 10, 99, 100, 101, 0x7fffffff]; variable
190 for (var i = 0; i < values2.length; i++) {
191 for (var j = 0; j < values2.length; j++) {
192 assertEquals(Math.floor(div((values2[i] | 0), (values2[j] | 0))),
193 Math.floor((values2[i] | 0) / (values2[j] | 0)));
194 assertEquals(Math.floor(div(-(values2[i] | 0), (values2[j] | 0))),
195 Math.floor(-(values2[
[all...]
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_service_autofill_unittest.cc902 std::vector<base::string16> values2; local
903 profile2.GetRawMultiInfo(field_type, &values2);
908 for (size_t i = 0; i < values2.size(); ++i)
909 if (values_set.find(values2[i]) == values_set.end())
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp2705 RefPtrWillBeRawPtr<CSSValueList> values2 = nullptr; local
2851 if (value2 && !values2) {
2852 values2 = CSSValueList::createCommaSeparated();
2853 values2->append(value2.release());
2861 if (values2)
2862 values2->append(currValue2.release());
2876 if (values2 && values2->length())
2877 retValue2 = values2.release();
/external/chromium_org/third_party/libxml/src/
H A Dxpath.c6474 double *values2; local
6505 values2 = (double *) xmlMalloc(ns2->nodeNr * sizeof(double));
6506 if (values2 == NULL) {
6518 values2[j] = xmlXPathCastNodeToNumber(ns2->nodeTab[j]);
6520 if (xmlXPathIsNaN(values2[j]))
6523 ret = (val1 < values2[j]);
6525 ret = (val1 <= values2[j]);
6527 ret = (val1 > values2[j]);
6529 ret = (val1 >= values2[j]);
6537 xmlFree(values2);
6730 xmlChar **values2; local
[all...]
/external/libxml2/
H A Dxpath.c6589 double *values2; local
6620 values2 = (double *) xmlMalloc(ns2->nodeNr * sizeof(double));
6621 if (values2 == NULL) {
6633 values2[j] = xmlXPathCastNodeToNumber(ns2->nodeTab[j]);
6635 if (xmlXPathIsNaN(values2[j]))
6638 ret = (val1 < values2[j]);
6640 ret = (val1 <= values2[j]);
6642 ret = (val1 > values2[j]);
6644 ret = (val1 >= values2[j]);
6652 xmlFree(values2);
6845 xmlChar **values2; local
[all...]

Completed in 1045 milliseconds