Home | History | Annotate | Download | only in aidl

Lines Matching defs:ifst

789     IfStatement* ifst = new IfStatement;
790 ifst->expression = new Comparison(new FieldVariable(THIS_VALUE, "callback"), "!=", NULL_VALUE);
791 dispatchMethod->statements->Add(ifst);
792 ifst->statements->Add(realCall);
944 IfStatement* ifst = new IfStatement;
945 ifst->expression = new Comparison(_presenter, "!=", NULL_VALUE);
946 stopListeningMethod->statements->Add(ifst);
948 ifst->statements->Add(new MethodCall(_presenter, "stopListening"));
949 ifst->statements->Add(new Assignment(_presenter, NULL_VALUE));