Home
last modified time | relevance | path

Searched refs:IsNotZero (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/xfa/fgas/crt/
Dcfgas_decimal.cpp251 m_bNeg(neg && IsNotZero()), in CFGAS_Decimal()
288 m_bNeg = val < 0 && IsNotZero(); in CFGAS_Decimal()
324 m_bNeg = negmet && IsNotZero(); in CFGAS_Decimal()
343 if (m_bNeg && IsNotZero()) in ToWideString()
380 m_bNeg = m_bNeg && IsNotZero(); in SetScale()
399 m_bNeg = m_bNeg && IsNotZero(); in SetScale()
404 if (IsNotZero()) in SetNegate()
421 if (!val.IsNotZero()) in operator /()
436 if (!IsNotZero()) in operator /()
Dcfgas_decimal.h28 bool IsNotZero() const { return m_uHi || m_uMid || m_uLo; } in IsNotZero() function
Dcfgas_stringformatter.cpp1882 while (decimal.IsNotZero() && in FormatNum()
1893 while (decimal.IsNotZero() && in FormatNum()
/external/googletest/googlemock/test/
Dgmock-actions_test.cc428 class IsNotZero : public ActionInterface<bool(int)> { // NOLINT class
436 const Action<bool(int)> a1(new IsNotZero); // NOLINT in TEST()
Dgmock-matchers_test.cc2963 ConvertibleToBool IsNotZero(int number) { in TEST() function
2971 Matcher<int> m = Truly(IsNotZero); in TEST()