Home | History | Annotate | Download | only in unittest

Lines Matching defs:length_

24     FileStreamTest() : filename_(), json_(), length_() {}

45 length_ = (size_t)ftell(fp);
47 json_ = (char*)malloc(length_ + 1);
48 size_t readLength = fread(json_, 1, length_, fp);
65 size_t length_;
74 for (size_t i = 0; i < length_; i++) {
80 EXPECT_EQ(length_, s.Tell());
92 for (size_t i = 0; i < length_; i++)
101 for (size_t i = 0; i < length_; i++)
104 EXPECT_EQ(length_, is.Tell());