Home | History | Annotate | Download | only in StackWalk2

Lines Matching full:for

13  * See the License for the specific language governing permissions and
18 // use v1 for this
20 String str = new String(); // use v0 for str in <init>
23 g(1); // use v0 for 1, v1 for this
24 g(2); // use v0 for 2, v1 for this
25 strTest(); // use v1 for this
30 if (num_calls == 1) { // use v0 for 1, v3 for num_calls
31 System.logI("1st call"); // use v0 for PrintStream, v1 for "1st call"
32 refmap2(24); // use v0 for 24, v2 for this
33 } else if (num_calls == 2) { // use v0 for 2, v3 for num_calls
34 System.logI("2nd call"); // use v0 for PrintStream, v1 for "2nd call"
35 refmap2(25); // use v0 for 24, v2 for this
37 throw new RuntimeException(); // use v0 for new RuntimeException
41 System.logI(str); // use v1 for PrintStream, v2, v3 for str
42 str = null; // use v1 for null, v3 for str
43 str = new String("ya"); // use v2 for "ya", v1 for new String
45 System.logI(str); // use v1 for PrintStream, v2, v3 for str
46 System.logI(s); // use v1 for PrintStream, v0 for s
48 System.logI(s); // use v1 for PrintStream, v0 for s