Home
last modified time | relevance | path

Searched refs:asBool (Results 1 – 3 of 3) sorted by relevance

/frameworks/compile/slang/
Dslang_rs_reflection_base.cpp157 string RSReflectionBase::genInitValue(const clang::APValue &Val, bool asBool) { in genInitValue() argument
162 if(asBool) { in genInitValue()
Dslang_rs_reflection_base.h82 static std::string genInitValue(const clang::APValue &Val, bool asBool=false);
/frameworks/base/core/java/android/hardware/camera2/impl/
DCameraMetadataNative.java210 boolean asBool = (Boolean) value; in packSingleNative()
211 byte asByte = (byte) (asBool ? 1 : 0); in packSingleNative()
328 boolean asBool = asByte != 0; in unpackSingleNative()
329 val = (T) (Boolean) asBool; in unpackSingleNative()