Searched defs:positive (Results 1 - 25 of 29) sorted by relevance

12

/external/stlport/test/unit/
H A Dunary.h15 struct positive : public unary_function<int, bool> { struct in inherits:unary_function
/external/proguard/src/proguard/gui/
H A DFilterBuilder.java53 StringBuffer positive = new StringBuffer();
56 buildFilter("", positive, negative);
58 return positive.length() <= negative.length() ?
59 positive.toString() :
67 * @param positive the filter to be extended, assuming the matching
73 StringBuffer positive,
101 // Extend the positive filter with exceptions and return.
102 if (positive.length() > 0)
104 positive.append(',');
106 positive
72 buildFilter(String prefix, StringBuffer positive, StringBuffer negative) argument
[all...]
/external/eigen/test/eigen2/
H A Deigen2_svd.cpp58 MatrixType unitary, positive; local
59 svd.computeUnitaryPositive(&unitary, &positive);
61 VERIFY_IS_APPROX(positive, positive.adjoint());
62 for(int i = 0; i < rows; i++) VERIFY(positive.diagonal()[i] >= 0); // cheap necessary (not sufficient) condition for positivity
63 VERIFY_IS_APPROX(unitary*positive, a);
65 svd.computePositiveUnitary(&positive, &unitary);
67 VERIFY_IS_APPROX(positive, positive.adjoint());
68 for(int i = 0; i < rows; i++) VERIFY(positive
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMarquee.cpp302 bool positive = range > 0; local
307 if (positive)
/external/chromium_org/tools/traceline/traceline/
H A Dassembler.h88 positive = not_sign enumerator in enum:Condition
/external/chromium_org/extensions/browser/api/declarative_webrequest/
H A Dwebrequest_condition_attribute.cc548 bool positive)
550 positive_(positive) {}
643 bool positive)
645 positive_(positive) {}
546 WebRequestConditionAttributeRequestHeaders( scoped_ptr<const HeaderMatcher> header_matcher, bool positive) argument
641 WebRequestConditionAttributeResponseHeaders( scoped_ptr<const HeaderMatcher> header_matcher, bool positive) argument
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_execute.c53 * Set x to positive or negative infinity.
84 * Return TRUE for +0 and other positive values, FALSE otherwise.
88 positive(float x) function
1387 if (positive(r)) {
/external/mesa3d/src/mesa/program/
H A Dprog_execute.c53 * Set x to positive or negative infinity.
84 * Return TRUE for +0 and other positive values, FALSE otherwise.
88 positive(float x) function
1387 if (positive(r)) {
/external/pcre/dist/sljit/
H A DsljitNativeARM_32.c1191 static sljit_si generate_int(struct sljit_compiler *compiler, sljit_si reg, sljit_uw imm, sljit_si positive) argument
1296 FAIL_IF(push_inst(compiler, EMIT_DATA_PROCESS_INS(positive ? MOV_DP : MVN_DP, 0, reg, SLJIT_UNUSED, imm1)));
1297 FAIL_IF(push_inst(compiler, EMIT_DATA_PROCESS_INS(positive ? ORR_DP : BIC_DP, 0, reg, reg, imm2)));
/external/opencv/cv/src/
H A Dcvhaar.cpp137 CV_ERROR( CV_StsOutOfRange, "Number of stages should be positive" );
220 "(has null pointers or non-positive classfier count)", i );
451 CV_ERROR( CV_StsOutOfRange, "Scale must be positive" );
1011 int positive = 0; local
1026 positive = (ssz.width/ystep)*((ssz.height + ystep-1)/ystep);
1031 for( y = y1, positive = 0; y < y2; y += ystep )
1041 mask1.data.ptr + y1*mask1.step, mask1.step, ssz, &positive,
1045 positive = 0;
1048 if( positive <= 0 )
1054 for( y = y1, positive
[all...]
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dzic.c131 static void leapadd(zic_t t, int positive, int rolling, int count);
1329 register int positive; local
1333 positive = FALSE;
1336 positive = FALSE;
1339 positive = TRUE;
1342 positive = TRUE;
1354 leapadd(tadd(t, tod), positive, lp->l_value, count); local
2591 leapadd(t, positive, rolling, count)
2593 const int positive;
2599 if (leapcnt + (positive
[all...]
/external/chromium_org/v8/src/arm/
H A Dassembler-arm.cc545 bool positive = (instr & B23) == B23; local
547 return positive ? offset : -offset;
553 bool positive = (instr & B23) == B23; local
556 return positive ? offset : -offset;
562 bool positive = offset >= 0; local
563 if (!positive) offset = -offset;
566 instr = (instr & ~B23) | (positive ? B23 : 0);
575 bool positive = offset >= 0; local
576 if (!positive) offset = -offset;
579 instr = (instr & ~B23) | (positive
592 bool positive = offset >= 0; local
[all...]
H A Dlithium-codegen-arm.cc1148 // indicate that positive dividends are heavily favored, so the branching
1397 Label positive; local
1402 __ b(pl, &positive);
1405 __ bind(&positive);
1479 // If the divisor is positive, things are easy: There can be no deopts and we
1573 Label positive; local
1578 __ b(pl, &positive);
1581 __ bind(&positive);
3689 // Check the sign of the argument. If the argument is positive, just
3748 // if input is positive
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dzic.c131 static void leapadd(zic_t t, int positive, int rolling, int count);
1329 register int positive; local
1333 positive = FALSE;
1336 positive = FALSE;
1339 positive = TRUE;
1342 positive = TRUE;
1354 leapadd(tadd(t, tod), positive, lp->l_value, count); local
2591 leapadd(t, positive, rolling, count)
2593 const int positive;
2599 if (leapcnt + (positive
[all...]
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc223 "exclude). A test is run if it matches one of the positive "
489 // positive filter and negative filter portions
492 std::string positive; local
495 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
498 positive = std::string(p, dash); // Everything up to the dash
500 if (positive.empty()) {
502 positive = kUniversalFilter;
508 return (MatchesFilter(full_name, positive.c_str()) &&
5107 " Run only the tests whose name matches one of the positive pattern
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest.cc212 "exclude). A test is run if it matches one of the positive "
481 // positive filter and negative filter portions
484 String positive; local
487 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
490 positive = String(p, dash - p); // Everything up to the dash
492 if (positive.empty()) {
494 positive = kUniversalFilter;
500 return (MatchesFilter(full_name, positive.c_str()) &&
4714 " Run only the tests whose name matches one of the positive pattern
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-codegen-ia32.cc1111 // indicate that positive dividends are heavily favored, so the branching
1339 // If the divisor is positive, things are easy: There can be no deopts and we
3535 // Check the sign of the argument. If the argument is positive, just
3658 // Use truncating instruction (OK because input is positive).
3729 // If the sign is positive, we return +0.
3827 Label positive, done, zero; local
3830 __ j(above, &positive, Label::kNear);
3841 __ bind(&positive);
/external/chromium_org/v8/src/x64/
H A Dlithium-codegen-x64.cc1023 // indicate that positive dividends are heavily favored, so the branching
1135 // If the divisor is positive, things are easy: There can be no deopts and we
3625 // Check the sign of the argument. If the argument is positive, just
3753 // Use truncating instruction (OK because input is positive).
3935 Label positive, done, zero; local
3938 __ j(above, &positive, Label::kNear);
3951 __ bind(&positive);
/external/chromium_org/v8/src/x87/
H A Dlithium-codegen-x87.cc1403 // indicate that positive dividends are heavily favored, so the branching
1631 // If the divisor is positive, things are easy: There can be no deopts and we
3822 // Check the sign of the argument. If the argument is positive, just
3982 // If the sign is positive, we return +0.
4189 Label positive, done, zero, nan_result; local
/external/gtest/src/
H A Dgtest.cc219 "exclude). A test is run if it matches one of the positive "
485 // positive filter and negative filter portions
488 std::string positive; local
491 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
494 positive = std::string(p, dash); // Everything up to the dash
496 if (positive.empty()) {
498 positive = kUniversalFilter;
504 return (MatchesFilter(full_name, positive.c_str()) &&
4831 " Run only the tests whose name matches one of the positive pattern
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc212 "exclude). A test is run if it matches one of the positive "
481 // positive filter and negative filter portions
484 String positive; local
487 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
490 positive = String(p, dash - p); // Everything up to the dash
492 if (positive.empty()) {
494 positive = kUniversalFilter;
500 return (MatchesFilter(full_name, positive.c_str()) &&
4682 " Run only the tests whose name matches one of the positive pattern
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest.cc212 "exclude). A test is run if it matches one of the positive "
481 // positive filter and negative filter portions
484 String positive; local
487 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
490 positive = String(p, dash - p); // Everything up to the dash
492 if (positive.empty()) {
494 positive = kUniversalFilter;
500 return (MatchesFilter(full_name, positive.c_str()) &&
4714 " Run only the tests whose name matches one of the positive pattern
[all...]
/external/protobuf/gtest/src/
H A Dgtest.cc196 "exclude). A test is run if it matches one of the positive "
462 // positive filter and negative filter portions
465 String positive; local
468 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
471 positive = String(p, dash - p); // Everything up to the dash
473 if (positive.empty()) {
475 positive = kUniversalFilter;
481 return (MatchesFilter(full_name, positive.c_str()) &&
4471 " Run only the tests whose name matches one of the positive pattern
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1398 // Attempts to parse a string into a positive integer pointed to by the
1703 "exclude). A test is run if it matches one of the positive "
1969 // positive filter and negative filter portions
1972 std::string positive; local
1975 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
1978 positive = std::string(p, dash); // Everything up to the dash
1980 if (positive.empty()) {
1982 positive = kUniversalFilter;
1988 return (MatchesFilter(full_name, positive
[all...]
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1398 // Attempts to parse a string into a positive integer pointed to by the
1703 "exclude). A test is run if it matches one of the positive "
1969 // positive filter and negative filter portions
1972 std::string positive; local
1975 positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter
1978 positive = std::string(p, dash); // Everything up to the dash
1980 if (positive.empty()) {
1982 positive = kUniversalFilter;
1988 return (MatchesFilter(full_name, positive
[all...]

Completed in 1159 milliseconds

12