Home
last modified time | relevance | path

Searched refs:IsBoolean (Results 1 – 21 of 21) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceTypes.cpp125 #define X(tag, IsVec, IsInt, IsFloat, IsIntArith, IsBoolean, IsParam, \ argument
129 IsBoolean, IsParam, IceType_##CompareResult},
DIceTypes.def82 //#define X(tag, IsVec, IsInt, IsFloat, IsIntArith, IsBoolean, IsParam,
/external/pdfium/fxjs/xfa/
Dcfxjse_value_embeddertest.cpp24 EXPECT_FALSE(pValue->IsBoolean(isolate())); in TEST_F()
Dcfxjse_value.h33 bool IsBoolean(v8::Isolate* pIsolate) const;
Dcfxjse_value.cpp241 bool CFXJSE_Value::IsBoolean(v8::Isolate* pIsolate) const { in IsBoolean() function in CFXJSE_Value
247 return hValue->IsBoolean(); in IsBoolean()
Dcfxjse_formcalc_context_embeddertest.cpp45 EXPECT_TRUE(fxv8::IsBoolean(value) || fxv8::IsInteger(value)) in ExecuteExpectBool()
Dcfxjse_formcalc_context.cpp1472 if (fxv8::IsBoolean(arg)) in ValueToUTF8String()
1494 if (fxv8::IsBoolean(firstValue)) { in SimpleValueCompare()
3200 static_cast<int>(fxv8::IsNumber(argOne) || fxv8::IsBoolean(argOne))); in HasValue()
3326 if (fxv8::IsBoolean(argOne) || fxv8::IsString(argOne) || in Ref()
/external/pdfium/fxjs/
Djs_define.cpp96 (value->IsString() || value->IsNumber() || value->IsBoolean() || in IsExpandedParamKnown()
Dfxv8.cpp27 bool IsBoolean(v8::Local<v8::Value> value) { in IsBoolean() function
28 return !value.IsEmpty() && value->IsBoolean(); in IsBoolean()
Dfxv8.h27 bool IsBoolean(v8::Local<v8::Value> value);
Dcjs_global.cpp218 if (vp->IsBoolean()) { in SetProperty()
382 if (v->IsBoolean()) { in ObjectToArray()
Dcjs_event.cpp284 if (vp->IsNullOrUndefined() || vp->IsBoolean()) in set_value()
Dcjs_document.cpp710 } else if (pValueObj->IsBoolean()) { in get_info()
/external/pdfium/core/fpdfapi/parser/
Dcpdf_object.h134 bool IsBoolean() const { return !!AsBoolean(); } in IsBoolean() function
Dcpdf_object_walker_unittest.cpp34 else if (obj->IsBoolean()) in Walk()
Dcpdf_object_unittest.cpp367 EXPECT_TRUE(m_DirectObjs[i]->IsBoolean()); in TEST_F()
370 EXPECT_FALSE(m_DirectObjs[i]->IsBoolean()); in TEST_F()
/external/python/cpython2/Lib/plat-mac/
Daetypes.py97 def IsBoolean(x): function
101 if IsBoolean(bool): return bool
/external/pdfium/fpdfsdk/
Dfpdf_structtree.cpp336 if (!obj || !obj->IsBoolean()) in FPDF_StructElement_Attr_GetBooleanValue()
Dfpdf_ppo_embeddertest.cpp428 EXPECT_TRUE(bool_obj->IsBoolean()); in TEST_F()
/external/clang/lib/AST/
DMicrosoftMangle.cpp353 void mangleIntegerLiteral(const llvm::APSInt &Number, bool IsBoolean);
1147 bool IsBoolean) { in mangleIntegerLiteral() argument
1151 if (IsBoolean && Value.getBoolValue()) in mangleIntegerLiteral()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_node.cpp2824 return {iRet, pTmpRetValue->IsBoolean(pContext->GetIsolate()) && in ExecuteBoolScript()