HomeSort by relevance Sort by last modified time
    Searched defs:asBool (Results 1 - 11 of 11) sorted by null

  /prebuilts/go/darwin-x86/test/
named1.go 23 func asBool(Bool) {}
36 asBool(b)
37 asBool(!b)
38 asBool(true)
39 asBool(*&b)
40 asBool(Bool(true))
41 asBool(1 != 2) // ok now
42 asBool(i < j) // ok now
57 asBool(bb) // ERROR "cannot use.*type bool.*as type Bool"
named.go 24 func asBool(Bool) {}
66 asBool(b)
68 asBool(!b)
70 asBool(true)
71 asBool(*&b)
73 asBool(Bool(true))
  /prebuilts/go/linux-x86/test/
named1.go 23 func asBool(Bool) {}
36 asBool(b)
37 asBool(!b)
38 asBool(true)
39 asBool(*&b)
40 asBool(Bool(true))
41 asBool(1 != 2) // ok now
42 asBool(i < j) // ok now
57 asBool(bb) // ERROR "cannot use.*type bool.*as type Bool"
named.go 24 func asBool(Bool) {}
66 asBool(b)
68 asBool(!b)
70 asBool(true)
71 asBool(*&b)
73 asBool(Bool(true))
  /external/deqp/framework/common/
tcuVector.hpp 152 Vector<bool, Size> asBool (void) const { return cast<bool>(); }
  /external/deqp/framework/randomshaders/
rsgVariableValue.hpp 103 bool asBool (void) const { DE_STATIC_ASSERT(Stride == 1); return m_value->boolVal; }
108 bool asBool (int ndx) const { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return m_value[ndx].boolVal; }
136 bool& asBool (void) { DE_STATIC_ASSERT(Stride == 1); return this->m_value->boolVal; }
141 bool& asBool (int ndx) { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return this->m_value[ndx].boolVal; }
155 StridedValueAccess& operator= (bool boolVal) { asBool() = boolVal; return *this; }
  /external/xmlrpcpp/src/
XmlRpcValue.h 47 XmlRpcValue(bool value) : _type(TypeBoolean) { _value.asBool = value; }
88 operator bool&() { assertTypeOrInvalid(TypeBoolean); return _value.asBool; }
177 bool asBool;
  /packages/apps/DocumentsUI/src/com/android/documentsui/queries/
CommandInterceptor.java 104 boolean enabled = asBool(tokens[1]);
117 boolean enabled = asBool(tokens[1]);
130 boolean enabled = asBool(tokens[1]);
143 boolean enabled = asBool(tokens[1]);
156 boolean enabled = asBool(tokens[1]);
191 private final boolean asBool(String val) {
  /tools/tradefederation/core/src/com/android/tradefed/device/
WifiHelper.java 168 return asBool(runWifiUtil("enableWifi"));
176 return asBool(runWifiUtil("disableWifi"));
225 if (!asBool(runWifiUtil("removeNetwork", "id", Integer.toString(networkId)))) {
228 if (!asBool(runWifiUtil("saveConfiguration"))) {
253 if (!asBool(runWifiUtil("associateNetwork", "id", Integer.toString(id)))) {
256 if (!asBool(runWifiUtil("saveConfiguration"))) {
281 if (!asBool(runWifiUtil("associateNetwork", "id", Integer.toString(id)))) {
284 if (!asBool(runWifiUtil("saveConfiguration"))) {
344 if (!asBool(runWifiUtil("removeAllNetworks"))) {
347 if (!asBool(runWifiUtil("saveConfiguration")))
    [all...]
  /external/jsoncpp/src/lib_json/
json_value.cpp 702 bool Value::asBool() const {
    [all...]
  /external/protobuf/conformance/third_party/jsoncpp/
jsoncpp.cpp     [all...]

Completed in 638 milliseconds