Home | History | Annotate | Download | only in spdy

Lines Matching refs:expected_

110     expected_.AppendPrefix(kIndexedOpcode);
111 expected_.AppendUint32(index);
114 expected_.AppendPrefix(kLiteralIncrementalIndexOpcode);
115 expected_.AppendUint32(IndexOf(key_entry));
116 expected_.AppendPrefix(kStringLiteralIdentityEncoded);
117 expected_.AppendUint32(value.size());
118 expected_.AppendBytes(value);
121 expected_.AppendPrefix(kLiteralIncrementalIndexOpcode);
122 expected_.AppendUint32(0);
123 expected_.AppendPrefix(kStringLiteralIdentityEncoded);
124 expected_.AppendUint32(name.size());
125 expected_.AppendBytes(name);
126 expected_.AppendPrefix(kStringLiteralIdentityEncoded);
127 expected_.AppendUint32(value.size());
128 expected_.AppendBytes(value);
131 expected_.AppendPrefix(kLiteralNoIndexOpcode);
132 expected_.AppendUint32(0);
133 expected_.AppendPrefix(kStringLiteralIdentityEncoded);
134 expected_.AppendUint32(name.size());
135 expected_.AppendBytes(name);
136 expected_.AppendPrefix(kStringLiteralIdentityEncoded);
137 expected_.AppendUint32(value.size());
138 expected_.AppendBytes(value);
142 expected_.TakeString(&expected_out);
159 HpackOutputStream expected_;
321 expected_.AppendPrefix(kStringLiteralHuffmanEncoded);
322 expected_.AppendUint32(6);
323 expected_.AppendBytes("\xE0\xB5\xD3\xBDk\xE1");
327 expected_.AppendPrefix(kStringLiteralIdentityEncoded);
328 expected_.AppendUint32(6);
329 expected_.AppendBytes("@@@@@@");
332 expected_.TakeString(&expected_out);
351 expected_.TakeString(&expected_out);