Home | History | Annotate | Download | only in test

Lines Matching defs:is

11  * distributed under the License is distributed on an "AS IS" BASIS,
46 FileInputStream is;
47 is.Open(SAMPLE_TTF_FILE);
48 EXPECT_EQ(length, (size_t)is.Available());
50 is.Read(&b2, 0, length);
51 is.Close();
56 is.Open(SAMPLE_TTF_FILE);
57 is.Skip(89);
58 is.Read(&b2, 0, 100);
63 is.Skip(-89);
64 is.Read(&b2, 0, 100);
67 is.Skip(100);
68 is.Read(&b2, 0, 100);
70 is.Skip(-400);
74 is.Read(&b2, 0, 100);
75 is.Read(&b2, 100, 100);
81 is.Unread(&b3);
106 FileInputStream is;
107 is.Open(SAMPLE_TTF_FILE);
108 FontInputStream font_is1(&is);
117 is.Open(SAMPLE_TTF_FILE);
118 is.Skip(89);
119 FontInputStream font_is2(&is, 200);
133 FileInputStream is;
134 is.Open(SAMPLE_TTF_FILE);
135 FontInputStream font_is(&is);