/external/skia/third_party/lua/src/ |
ldump.c | 93 DumpChar(bvalue(o),D);
|
lobject.h | 165 #define bvalue(o) check_exp(ttisboolean(o), val_(o).b) macro 170 #define l_isfalse(o) (ttisnil(o) || (ttisboolean(o) && bvalue(o) == 0))
|
luac.c | 260 printf(bvalue(o) ? "true" : "false");
|
lvm.c | 266 case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */
|
ltable.c | 112 return hashboolean(t, bvalue(key));
|
/external/syslinux/com32/lua/src/ |
ldump.c | 93 DumpChar(bvalue(o),D);
|
lobject.h | 165 #define bvalue(o) check_exp(ttisboolean(o), val_(o).b) macro 170 #define l_isfalse(o) (ttisnil(o) || (ttisboolean(o) && bvalue(o) == 0))
|
luac.c | 260 printf(bvalue(o) ? "true" : "false");
|
lvm.c | 289 case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */
|
ltable.c | 113 return hashboolean(t, bvalue(key));
|
/external/pdfium/fpdfsdk/javascript/ |
JS_Value.cpp | 44 CJS_Value::CJS_Value(CJS_Runtime* pRuntime, const bool& bValue) 45 : m_pValue(pRuntime->NewBoolean(bValue)) {} 210 void CJS_PropValue::operator<<(bool bValue) { 212 m_Value = CJS_Value(m_pJSRuntime, bValue); 215 void CJS_PropValue::operator>>(bool& bValue) const { 217 bValue = m_Value.ToBool(m_pJSRuntime);
|
JS_Value.h | 39 CJS_Value(CJS_Runtime* pRuntime, const bool& bValue);
|
/external/pdfium/xfa/fxfa/parser/ |
xfa_object.h | 218 bool SetBoolean(XFA_ATTRIBUTE eAttr, bool bValue, bool bNotify = false) { 219 return SetValue(eAttr, XFA_ATTRIBUTETYPE_Boolean, (void*)(uintptr_t)bValue, 222 bool TryBoolean(XFA_ATTRIBUTE eAttr, bool& bValue, bool bUseDefault = true); 224 bool bValue; 225 return TryBoolean(eAttr, bValue, true) ? bValue : false; [all...] |
cxfa_node.cpp | [all...] |
/hardware/intel/img/hwcomposer/merrifield/common/base/ |
DisplayAnalyzer.cpp | 320 e.bValue = connected; 357 e.bValue = blank; 366 e.bValue = active; 407 handleHotplugEvent(e.bValue); 410 handleBlankEvent(e.bValue); 419 handleInputEvent(e.bValue);
|
/external/aac/libSBRenc/src/ |
env_bit.cpp | 113 ULONG bValue, 122 flag ^= (bValue & (1<<i)) ? (1) : (0) ;
|
/libcore/luni/src/test/java/libcore/java/math/ |
OldBigDecimalConvertTest.java | 304 byte bValue = -12; 307 assertTrue("incorrect byteValue", bNumber == bValue);
|
/external/javassist/src/main/javassist/bytecode/ |
SignatureAttribute.java | 48 byte[] bvalue = new byte[2]; 49 bvalue[0] = (byte)(index >>> 8); 50 bvalue[1] = (byte)index; 51 set(bvalue);
|
/external/swiftshader/third_party/PowerVR_SDK/Builds/Include/ |
PVRScopeComms.h | 103 bool bValue; ///< Boolean value
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
lobject.h | 165 #define bvalue(o) check_exp(ttisboolean(o), val_(o).b) macro 170 #define l_isfalse(o) (ttisnil(o) || (ttisboolean(o) && bvalue(o) == 0))
|
luac.c | 260 printf(bvalue(o) ? "true" : "false");
|
lvm.c | 266 case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */
|
ltable.c | 112 return hashboolean(t, bvalue(key));
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
vktApiImageClearingTests.cpp | 106 const deUint32 bvalue = (Float32(b).bits() & ((0x1u << 31u) - 1u)); local 109 return avalue + bvalue + 1u; 110 else if (avalue < bvalue) 111 return bvalue - avalue; 113 return avalue - bvalue; [all...] |
/external/v8/src/arm/ |
constants-arm.h | 606 inline int BValue() const { return Bit(22); } 649 inline bool HasB() const { return BValue() == 1; }
|