HomeSort by relevance Sort by last modified time
    Searched refs:have (Results 451 - 475 of 2719) sorted by null

<<11121314151617181920>>

  /external/libmicrohttpd/src/testcurl/
test_put_chunked.c 15 You should have received a copy of the GNU General Public License
94 int have; local
100 have = *upload_data_size;
101 if (have + *done > 8)
106 if (0 == memcmp (upload_data, &"Hello123"[*done], have))
108 *done += have;
  /external/zlib/src/
zlib.h 51 but other algorithms will be added later and will have the same stream
150 returned by zalloc for objects of exactly 65536 bytes *must* have their
456 operation to complete. (The size of the uncompressed data may have been
553 compressed data instead of a zlib wrapper. The gzip header will have no
1671 unsigned have; member in struct:gzFile_s
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/httputil/
persist.go 34 // We should have deleted it before Go 1.
51 // We should have deleted it before Go 1.
62 // as the read-side bufio which may have some left over data. Hijack may be
165 // that have been received on the connection.
227 // We should have deleted it before Go 1.
245 // We should have deleted it before Go 1.
262 // We should have deleted it before Go 1.
272 // as the read-side bufio which may have some left over data. Hijack may be
273 // called before the user or Read have signaled the end of the keep-alive
352 // that have been sent on the connection
    [all...]
  /prebuilts/go/linux-x86/src/net/http/httputil/
persist.go 34 // We should have deleted it before Go 1.
51 // We should have deleted it before Go 1.
62 // as the read-side bufio which may have some left over data. Hijack may be
165 // that have been received on the connection.
227 // We should have deleted it before Go 1.
245 // We should have deleted it before Go 1.
262 // We should have deleted it before Go 1.
272 // as the read-side bufio which may have some left over data. Hijack may be
273 // called before the user or Read have signaled the end of the keep-alive
352 // that have been sent on the connection
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
gobencdec_test.go 161 X int // guarantee we have something in common with GobTest*
166 X int // guarantee we have something in common with GobTest*
171 X int // guarantee we have something in common with GobTest*
176 X int // guarantee we have something in common with GobTest*
183 X int // guarantee we have something in common with GobTest*
190 X int // guarantee we have something in common with GobTest*
197 X int // guarantee we have something in common with GobTest*
207 X int // guarantee we have something in common with GobTest*
217 X int // guarantee we have something in common with GobTest*
221 X int // guarantee we have something in common with GobTest
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/
exec_test.go 123 t.Fatalf("%s:%d: out of sync: have %d strings left before %#q", file, lineno, len(input), q)
166 t.Fatalf("%s:%d: have %d test results, want %d", file, lineno, len(res), len(run))
169 have, suffix := run[i](re, refull, text)
171 if !same(have, want) {
172 t.Errorf("%s:%d: %#q%s.FindSubmatchIndex(%#q) = %v, want %v", file, lineno, re, suffix, text, have, want)
196 t.Fatalf("%s:%d: out of sync: have %d strings left at EOF", file, lineno, len(input))
547 have := re.FindStringSubmatchIndex(text)
548 if (len(have) > 0) != match {
549 t.Errorf("%s:%d: %#q.Match(%#q) = %v, but %#q.FindSubmatchIndex(%#q) = %v", file, lineno, pattern, text, match, pattern, text, have)
552 if len(have) > len(pos)
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
gobencdec_test.go 161 X int // guarantee we have something in common with GobTest*
166 X int // guarantee we have something in common with GobTest*
171 X int // guarantee we have something in common with GobTest*
176 X int // guarantee we have something in common with GobTest*
183 X int // guarantee we have something in common with GobTest*
190 X int // guarantee we have something in common with GobTest*
197 X int // guarantee we have something in common with GobTest*
207 X int // guarantee we have something in common with GobTest*
217 X int // guarantee we have something in common with GobTest*
221 X int // guarantee we have something in common with GobTest
    [all...]
  /prebuilts/go/linux-x86/src/regexp/
exec_test.go 123 t.Fatalf("%s:%d: out of sync: have %d strings left before %#q", file, lineno, len(input), q)
166 t.Fatalf("%s:%d: have %d test results, want %d", file, lineno, len(res), len(run))
169 have, suffix := run[i](re, refull, text)
171 if !same(have, want) {
172 t.Errorf("%s:%d: %#q%s.FindSubmatchIndex(%#q) = %v, want %v", file, lineno, re, suffix, text, have, want)
196 t.Fatalf("%s:%d: out of sync: have %d strings left at EOF", file, lineno, len(input))
547 have := re.FindStringSubmatchIndex(text)
548 if (len(have) > 0) != match {
549 t.Errorf("%s:%d: %#q.Match(%#q) = %v, but %#q.FindSubmatchIndex(%#q) = %v", file, lineno, pattern, text, match, pattern, text, have)
552 if len(have) > len(pos)
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/binary/
binary_test.go 113 func checkResult(t *testing.T, dir string, order ByteOrder, err error, have, want interface{}) {
118 if !reflect.DeepEqual(have, want) {
119 t.Errorf("%v %v:\n\thave %+v\n\twant %+v", dir, order, have, want)
224 t.Errorf("WriteT: have err == nil, want non-nil")
234 t.Errorf("WriteT.%v: have err == nil, want non-nil", tv.Field(i).Type())
236 t.Errorf("WriteT: have err == %q, want it to mention %s", err, typ)
272 // zero values must have been written for blank fields
  /prebuilts/go/linux-x86/src/encoding/binary/
binary_test.go 113 func checkResult(t *testing.T, dir string, order ByteOrder, err error, have, want interface{}) {
118 if !reflect.DeepEqual(have, want) {
119 t.Errorf("%v %v:\n\thave %+v\n\twant %+v", dir, order, have, want)
224 t.Errorf("WriteT: have err == nil, want non-nil")
234 t.Errorf("WriteT.%v: have err == nil, want non-nil", tv.Field(i).Type())
236 t.Errorf("WriteT: have err == %q, want it to mention %s", err, typ)
272 // zero values must have been written for blank fields
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 21 * have one grammar import others and share same error variables
29 if ( state == null ) { // don't ever let us have a null state
58 * recovery, override mismatchRecover() and have it call
94 // we have no information about the follow; we can only consume
155 // if we've already reported an error and have not matched a token
181 * handling because the exception classes do not have to have pointers back
184 * would have to subclassing exception, but then somehow get ANTLR
279 * recognizer tracks its own number. So parser and lexer each have
296 * want to have a lot of information spit out. Override in that cas
    [all...]
  /external/libmicrohttpd/src/microspdy/
compression.c 15 You should have received a copy of the GNU General Public License
259 unsigned int have; local
295 have = SPDYF_ZLIB_CHUNK - strm->avail_out;
298 *dest_size += have;
306 memcpy((*dest) + ((*dest_size) - have), out, have);
310 * have been used. */
357 uint32_t have; local
424 have = SPDYF_ZLIB_CHUNK - strm->avail_out;
425 *dest_size += have;
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
sparsetree.go 189 // Property (1) means that blocks sorted by domorder always have a maximal dominant block first.
206 // But by supposition, x does not dominate y. So we have x-then-y.
213 // y-dom-z requires entry(y) < entry(z), but we have entry(z) < entry(y).
214 // y-then-z requires exit(y) < entry(z), but we have entry(z) < exit(y).
215 // We have a contradiction, so x does not dominate z, as required.
value.go 66 v.Fatalf("op %s doesn't have an int8 aux field", v.Op)
73 v.Fatalf("op %s doesn't have an int16 aux field", v.Op)
80 v.Fatalf("op %s doesn't have an int32 aux field", v.Op)
87 v.Fatalf("op %s doesn't have a float aux field", v.Op)
93 v.Fatalf("op %s doesn't have a ValAndOff aux field", v.Op)
  /prebuilts/go/darwin-x86/src/cmd/go/
testflag.go 26 multiOK bool // OK to have multiple instances
81 // to have "test" before them, and reading the command line for the 6.out.
117 // make non-nil: we have seen the empty package list
233 // Booleans are special because they have modes -x, -x=true, -x=false.
241 } else { // Non-booleans must have a value.
  /prebuilts/go/darwin-x86/src/encoding/pem/
pem.go 160 // the -1 is because we might have only matched pemEnd without the
168 // If we get here then we have rejected a likely looking, but
170 // position. We have consumed the preamble line and will have consumed
172 // line is not a valid header line, therefore we cannot have consumed
  /prebuilts/go/darwin-x86/src/html/template/
doc.go 40 err = t.ExecuteTemplate(out, "T", "<script>alert('you have been pwned')</script>")
44 Hello, <script>alert('you have been pwned')</script>!
51 err = t.ExecuteTemplate(out, "T", "<script>alert('you have been pwned')</script>")
55 Hello, &lt;script&gt;alert(&#39;you have been pwned&#39;)&lt;/script&gt;!
164 that would have been produced if {{.}} was a regular string.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
sparsetree.go 189 // Property (1) means that blocks sorted by domorder always have a maximal dominant block first.
206 // But by supposition, x does not dominate y. So we have x-then-y.
213 // y-dom-z requires entry(y) < entry(z), but we have entry(z) < entry(y).
214 // y-then-z requires exit(y) < entry(z), but we have entry(z) < exit(y).
215 // We have a contradiction, so x does not dominate z, as required.
value.go 66 v.Fatalf("op %s doesn't have an int8 aux field", v.Op)
73 v.Fatalf("op %s doesn't have an int16 aux field", v.Op)
80 v.Fatalf("op %s doesn't have an int32 aux field", v.Op)
87 v.Fatalf("op %s doesn't have a float aux field", v.Op)
93 v.Fatalf("op %s doesn't have a ValAndOff aux field", v.Op)
  /prebuilts/go/linux-x86/src/cmd/go/
testflag.go 26 multiOK bool // OK to have multiple instances
81 // to have "test" before them, and reading the command line for the 6.out.
117 // make non-nil: we have seen the empty package list
233 // Booleans are special because they have modes -x, -x=true, -x=false.
241 } else { // Non-booleans must have a value.
  /prebuilts/go/linux-x86/src/encoding/pem/
pem.go 160 // the -1 is because we might have only matched pemEnd without the
168 // If we get here then we have rejected a likely looking, but
170 // position. We have consumed the preamble line and will have consumed
172 // line is not a valid header line, therefore we cannot have consumed
  /prebuilts/go/linux-x86/src/html/template/
doc.go 40 err = t.ExecuteTemplate(out, "T", "<script>alert('you have been pwned')</script>")
44 Hello, <script>alert('you have been pwned')</script>!
51 err = t.ExecuteTemplate(out, "T", "<script>alert('you have been pwned')</script>")
55 Hello, &lt;script&gt;alert(&#39;you have been pwned&#39;)&lt;/script&gt;!
164 that would have been produced if {{.}} was a regular string.
  /external/dtc/Documentation/
dtc-paper.tex 65 Historically, ``everyday'' \ppc machines have booted with the help of
83 Embedded systems, by contrast, usually have a minimal firmware that
86 meant that the various 32-bit \ppc embedded ports have required a
97 only have virtual IO devices, which makes it quite simple to work
119 When OF isn't available, either because the machine doesn't have it at
238 stored. Because it's common for many nodes to have properties with
283 generally have an \texttt{interrupt-parent} property giving the
294 only nodes that are actually referred to by phandle need to have this
297 Another complication arises because nodes in an OF tree have two
298 names. First they have the ``unit name'', which is how the node i
    [all...]
  /build/make/core/
dex_preopt_odex_install.mk 14 # If we have product-specific config for this module?
67 # Append the odex for the 2nd arch if we have one.
125 $(call pretty-error,Must have specified class listing (LOCAL_DEX_PREOPT_PROFILE_CLASS_LISTING))
  /build/soong/androidmk/parser/
make_strings.go 12 // will have an empty first raw string, and a MakeString that ends with a
13 // variable will have an empty last raw string. Two sequential Variables
14 // will have an empty raw string between them.

Completed in 1251 milliseconds

<<11121314151617181920>>