HomeSort by relevance Sort by last modified time
    Searched refs:asBoolean (Results 1 - 14 of 14) sorted by null

  /external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
AndFunction.java 31 return literalConstant(left.asBoolean() && right.asBoolean(), left, right);
OrFunction.java 31 return literalConstant(left.asBoolean() || right.asBoolean(), left, right);
NotFunction.java 30 return literalConstant(!value.asBoolean(), value);
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
VariantValue.java 39 public boolean asBoolean() {
40 return TypeConverter.asBoolean(value());
NumberValue.java 36 public boolean asBoolean() {
Value.java 91 public abstract boolean asBoolean();
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
BaseCompiledTemplate.java 201 public static boolean asBoolean(boolean value) {
205 public static boolean asBoolean(String value) {
206 return TypeConverter.asBoolean(value);
209 public static boolean asBoolean(int value) {
213 public static boolean asBoolean(Value value) {
214 return value.asBoolean();
217 public static boolean asBoolean(Data data) {
218 return TypeConverter.asBoolean(data);
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
TypeConverter.java 119 public static boolean asBoolean(String value) {
149 public static boolean asBoolean(Data data) {
AbstractData.java 41 return TypeConverter.asBoolean(getValue());
102 return TypeConverter.asBoolean(getChild(path));
  /external/webkit/Source/WebCore/inspector/
InspectorState.cpp 82 it->second->asBoolean(&value);
InspectorValues.h 72 virtual bool asBoolean(bool* output) const;
115 virtual bool asBoolean(bool* output) const;
InspectorValues.cpp 479 bool InspectorValue::asBoolean(bool*) const
565 bool InspectorBasicValue::asBoolean(bool* output) const
660 return value->asBoolean(output);
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
TemplateInterpreter.java 245 if (value.asBoolean()) {
394 if (value.asBoolean()) {
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 230 milliseconds