Lines Matching defs:Fun

880             new Fun(){void f() {
882 new Fun(){void f() {
884 new Fun(){void f() {
886 new Fun(){void f() {
891 new Fun(){void f() throws Throwable { pb.start(); }});
1027 new Fun() { void f() throws IOException {
1031 new Fun() { void f() throws IOException {
1035 new Fun() { void f() throws IOException {
1142 new Fun(){void f(){ getenv().put("FOO","BAR");}},
1143 new Fun(){void f(){ getenv().remove("PATH");}},
1144 new Fun(){void f(){ getenv().keySet().remove("PATH");}},
1145 new Fun(){void f(){ getenv().values().remove("someValue");}});
1170 new Fun(){void f(){ m.put("FOO=","BAR");}},
1171 new Fun(){void f(){ m.put("FOO\u0000","BAR");}},
1172 new Fun(){void f(){ m.put("FOO","BAR\u0000");}});
1179 new Fun(){void f(){
1181 new Fun(){void f(){
1207 new Fun() { void f() throws IOException {
1209 new Fun() { void f() throws IOException {
1211 new Fun() { void f() throws IOException {
1218 new Fun() { void f() throws IOException {
1220 new Fun() { void f() throws IOException {
1222 new Fun() { void f() throws IOException {
1224 new Fun() { void f() throws IOException {
1242 new Fun(){void f(){ env.put("foo",null);}},
1243 new Fun(){void f(){ env.put(null,"foo");}},
1244 new Fun(){void f(){ env.remove(null);}},
1245 new Fun(){void f(){
1248 new Fun() { void f() throws IOException {
1259 new Fun(){void f(){ env.remove(TRUE);}},
1260 new Fun(){void f(){ env.keySet().remove(TRUE);}},
1261 new Fun(){void f(){ env.values().remove(TRUE);}},
1262 new Fun(){void f(){ env.entrySet().remove(TRUE);}});
1278 new Fun(){void f(){ getenv(null);}},
1279 new Fun(){void f(){ env.get(null);}},
1280 new Fun(){void f(){ env.containsKey(null);}},
1281 new Fun(){void f(){ env.containsValue(null);}},
1282 new Fun(){void f(){ env.keySet().contains(null);}},
1283 new Fun(){void f(){ env.values().contains(null);}});
1289 new Fun(){void f(){ env.get(TRUE);}},
1290 new Fun(){void f(){ env.containsKey(TRUE);}},
1291 new Fun(){void f(){ env.containsValue(TRUE);}},
1292 new Fun(){void f(){ env.keySet().contains(TRUE);}},
1293 new Fun(){void f(){ env.values().contains(TRUE);}});
1311 new Fun(){void f(){ entrySet.contains(null);}});
1313 new Fun(){void f(){ entrySet.contains(TRUE);}},
1314 new Fun(){void f(){
1778 new Fun() {void f() throws Throwable {pb.start();}});
1851 new Fun(){void f() throws IOException {
1880 Fun[] ops = {
1881 new Fun(){void f() throws IOException {
1883 new Fun(){void f() throws IOException {
1885 new Fun(){void f() throws IOException {
1888 for (Fun op : ops) {
2069 new Fun() { void f() throws IOException {
2072 new Fun() { void f() throws IOException {
2075 new Fun() { void f() throws IOException {
2078 new Fun() { void f() throws IOException {
2081 new Fun() { void f() throws IOException {
2100 new Fun() { void f() throws IOException {
2106 new Fun() { void f() throws IOException {
2299 private static abstract class Fun {abstract void f() throws Throwable;}
2300 static void THROWS(Class<? extends Throwable> k, Fun... fs) {
2301 for (Fun f : fs)