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

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ImplicitResolverTest.java 66 String myval; field in class:ImplicitResolverTest.TestBean
69 return myval;
72 public void setMyval(String myval) {
73 this.myval = myval;
77 return "MyVal: " + myval;
88 TestBean bean = (TestBean) yaml.load("!testbean {myval: !cfg $(user.home)}");
91 bean = (TestBean) yaml.load("!testbean {myval: $(user.home)}");
  /external/toybox/toys/posix/
find.c 139 long myval; local
143 myval = atolx(str);
144 if (units && isdigit(str[strlen(str)-1])) myval *= units;
146 if (sign == '+') return val > myval;
147 if (sign == '-') return val < myval;
148 return val == myval;
  /external/python/cpython3/Lib/distutils/
cmd.py 97 myval = getattr(self, "_" + attr)
98 if myval is None:
101 return myval
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
cmd.py 99 myval = getattr(self, "_" + attr)
100 if myval is None:
103 return myval
  /external/python/cpython2/Lib/distutils/
cmd.py 99 myval = getattr(self, "_" + attr)
100 if myval is None:
103 return myval

Completed in 373 milliseconds