Searched refs:is (Results 176 - 200 of 7284) sorted by relevance

1234567891011>>

/external/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
H A Dio.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
22 // operator>>(basic_istream<charT, traits>& is,
39 std::istringstream is(os.str());
41 is >> d2;
/external/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
H A Dio.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
22 // operator>>(basic_istream<charT, traits>& is,
39 std::istringstream is(os.str());
41 is >> d2;
/external/llvm/test/MC/AsmParser/
H A Ddirective_incbin.s4 .incbin "incbin\137abcd" # "\137" is underscore "_"
/external/valgrind/main/drd/tests/
H A Dtc17_sembar.stderr.exp3 done, result is 88, should be 88
/external/valgrind/main/gdbserver_tests/
H A Dmcvabits.stderrB.exp4 Address 0x........ is 0 bytes inside data symbol "undefined"
6 Address 0x........ is 0 bytes inside data symbol "undefined"
9 Address 0x........ is 0 bytes inside data symbol "undefined"
12 Address 0x........ is 0 bytes inside data symbol "undefined"
15 Address 0x........ is 0 bytes inside data symbol "undefined"
18 Address 0x........ is 0 bytes inside data symbol "undefined"
21 Address 0x........ is 0 bytes inside data symbol "undefined"
24 Address 0x........ is 0 bytes inside data symbol "undefined"
27 Address 0x........ is 0 bytes inside data symbol "undefined"
30 Address 0x........ is
[all...]
/external/valgrind/main/helgrind/tests/
H A Dtc17_sembar.stderr.exp3 done, result is 88, should be 88
/external/valgrind/main/none/tests/amd64/
H A Dtm1.stdout.exp3 xabort: outside transaction is nop.
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/
H A Dfont_factory.h11 * distributed under the License is distributed on an "AS IS" BASIS,
36 // If a font is fingerprinted then a SHA-1 hash is generated at load time and
37 // stored in the font. This is useful for uniquely identifying fonts. By
38 // default this is turned on.
48 // the data in the stream cannot be parsed or is invalid an array of size zero
50 void LoadFonts(InputStream* is, FontArray* output);
57 // the data in the stream cannot be parsed or is invalid an array of size zero
66 // cannot be parsed or is invalid an array of size zero will be returned.
67 void LoadFontsForBuilding(InputStream* is, FontBuilderArra
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/
H A Dmain.cpp58 intstr_map is; local
60 is[85] = "goofy";
61 is[1] = "is";
62 is[2] = "smart";
63 is[3] = "!!!";
66 is.clear();
76 ss["a Mac.."] = "..is always a Mac!";
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/
H A Dmain.cpp58 intstr_map is; local
60 is.emplace(85,"goofy");
61 is.emplace(1,"is");
62 is.emplace(2,"smart");
63 is.emplace(3,"!!!");
66 is.clear();
76 ss.emplace("a Mac..","..is always a Mac!");
/external/llvm/autoconf/m4/
H A Dfunc_isnan.m42 # This function determines if the isnan function is available on this
11 AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>])
18 AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>])
25 AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan function is found in <cmath>])
/external/llvm/unittests/ADT/
H A DPointerUnionTest.cpp5 // This file is distributed under the University of Illinois Open Source
58 EXPECT_FALSE(a.is<int *>());
59 EXPECT_TRUE(a.is<float *>());
60 EXPECT_TRUE(b.is<int *>());
61 EXPECT_FALSE(b.is<float *>());
62 EXPECT_TRUE(n.is<int *>());
63 EXPECT_FALSE(n.is<float *>());
/external/sfntly/cpp/src/sfntly/
H A Dfont_factory.h11 * distributed under the License is distributed on an "AS IS" BASIS,
36 // If a font is fingerprinted then a SHA-1 hash is generated at load time and
37 // stored in the font. This is useful for uniquely identifying fonts. By
38 // default this is turned on.
48 // the data in the stream cannot be parsed or is invalid an array of size zero
50 void LoadFonts(InputStream* is, FontArray* output);
57 // the data in the stream cannot be parsed or is invalid an array of size zero
66 // cannot be parsed or is invalid an array of size zero will be returned.
67 void LoadFontsForBuilding(InputStream* is, FontBuilderArra
[all...]
/external/tcpdump/
H A Dllc.h47 #define LLC_S_CMD(is) (((is) >> 2) & 0x03)
52 #define LLC_IS_NR(is) (((is) >> 9) & 0x7f)
53 #define LLC_I_NS(is) (((is) >> 1) & 0x7f)
/external/glide/library/src/main/java/com/bumptech/glide/volley/
H A DVolleyDiskCacheWrapper.java109 * @param is The InputStream to read from.
112 public CacheHeader readHeader(InputStream is) throws IOException { argument
114 int magic = readInt(is);
119 entry.key = readString(is);
120 entry.etag = readString(is);
124 entry.serverDate = readLong(is);
125 entry.ttl = readLong(is);
126 entry.softTtl = readLong(is);
127 entry.responseHeaders = readStringStringMap(is);
136 /** The size of the data identified by this CacheHeader. (This is no
223 read(InputStream is) argument
238 readInt(InputStream is) argument
258 readLong(InputStream is) argument
277 readString(InputStream is) argument
297 readStringStringMap(InputStream is) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLElement.h6 * This library is free software; you can redistribute it and/or
11 * This library is distributed in the hope that it will be useful,
166 // When the input element is an HTMLElement, we don't need to check the namespace URI, just the local name.
168 inline bool is##thisType(const thisType* element); \
169 inline bool is##thisType(const thisType& element); \
170 inline bool is##thisType(const HTMLElement* element) { return element && is##thisType(*element); } \
171 inline bool is##thisType(const Node& node) { return node.isHTMLElement() ? is##thisType(toHTMLElement(node)) : false; } \
172 inline bool is##thisTyp
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DDefaultSSLContextImpl.java12 * distributed under the License is distributed on an "AS IS" BASIS,
53 * since there is no way to put a synchronized around both the
76 InputStream is = null;
78 is = new BufferedInputStream(new FileInputStream(keystore));
79 ks.load(is, pwd);
81 if (is != null) {
82 is.close();
109 InputStream is = null;
111 is = new BufferedInputStream(new FileInputStream(keystore));
112 ks.load(is, pw
[all...]
/external/llvm/bindings/ocaml/analysis/
H A Dllvm_analysis.mli5 * This file is distributed under the University of Illinois Open Source
15 (** [verify_module m] returns [None] if the module [m] is valid, and
16 [Some reason] if it is invalid. [reason] is a string containing a
20 (** [verify_function f] returns [None] if the function [f] is valid, and
21 [Some reason] if it is invalid. [reason] is a string containing a
25 (** [verify_module m] returns if the module [m] is valid, but prints a
26 validation report to [stderr] and aborts the program if it is invalid. See
31 (** [verify_function f] returns if the function [f] is vali
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContentProviderOperationTest.java4 import static org.hamcrest.CoreMatchers.is;
29 assertThat(shadowOperation.isInsert(), is(true));
30 assertThat(shadowOperation.isUpdate(), is(false));
31 assertThat(shadowOperation.isDelete(), is(false));
32 assertThat(shadowOperation.getValues().size(), is(2));
34 assertThat(Integer.parseInt(shadowOperation.getValues().get("intValue").toString()), is(5));
45 assertThat(shadowBuilder.getWithValueBackReference("my_id"), is(0));
46 assertThat(shadowOperation.getWithValueBackReference("my_id"), is(0));
57 assertThat(shadowOperation.isInsert(), is(false));
58 assertThat(shadowOperation.isUpdate(), is(tru
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
H A DBitstreamReader.java4 Permission is hereby granted, free of charge, to any person obtaining a copy of this
8 permit persons to whom the Software is furnished to do so, subject to the following
34 private InputStream is; field in class:BitstreamReader
42 public BitstreamReader(InputStream is) throws IOException { argument
43 this.is = is;
44 curByte = is.read();
45 nextByte = is.read();
90 nextByte = is.read();
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c57 static ANTLR3_BOOLEAN mismatchIsUnwantedToken (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, ANTLR3_UINT32 ttype);
58 static ANTLR3_BOOLEAN mismatchIsMissingToken (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_BITSET_LIST follow);
130 // free it when the base recognizer is freed.
260 /* Now update it to indicate this is a Mismatched token exception
277 pANTLR3_INT_STREAM is; local
284 is = NULL;
295 is = ins->istream;
303 is = parser->tstream->istream;
311 is = tns->istream;
333 switch (is
420 pANTLR3_INT_STREAM is; local
493 pANTLR3_INT_STREAM is; local
529 mismatchIsUnwantedToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, ANTLR3_UINT32 ttype) argument
552 mismatchIsMissingToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_BITSET_LIST follow) argument
646 pANTLR3_INT_STREAM is; local
1012 pANTLR3_INT_STREAM is; local
1327 pANTLR3_INT_STREAM is; local
1436 pANTLR3_INT_STREAM is; local
1559 pANTLR3_INT_STREAM is; local
1625 pANTLR3_INT_STREAM is; local
1721 pANTLR3_INT_STREAM is; local
1771 pANTLR3_INT_STREAM is; local
1924 pANTLR3_INT_STREAM is; local
1999 pANTLR3_INT_STREAM is; local
2060 pANTLR3_INT_STREAM is; local
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
H A DTestHttpResponseTest.java11 import static org.hamcrest.core.Is.is;
51 assertThat(resp.containsHeader("X-Zombo-Com"), is(true));
52 assertThat(resp.containsHeader("Location"), is(false));
64 assertThat(it.hasNext(), is(true));
67 assertThat(it.hasNext(), is(false));
80 assertThat(it.hasNext(), is(true));
82 assertThat(it.hasNext(), is(true));
84 assertThat(it.hasNext(), is(false));
98 assertThat(headers.length, is(2));
106 assertThat(response.getAllHeaders().length, is(
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DDFA.pm9 is => 'rw',
14 is => 'rw',
19 is => 'rw',
24 is => 'rw',
29 is => 'rw',
34 is => 'rw',
39 is => 'rw',
44 is => 'rw',
51 is => 'rw',
95 # must check EOT, which is lik
[all...]
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_ycbcr_texture.spec28 OpenGL 1.0 or later is required
29 This extension is written against the OpenGL 1.4 Specification.
35 There is no support for converting YCbCr images to RGB or vice versa
41 A YCbCr pixel (texel) is a 16-bit unsigned short with two components.
42 The first component is luminance (Y). For pixels in even-numbered
43 image columns, the second component is Cb. For pixels in odd-numbered
44 image columns, the second component is Cr. If one were to convert the
46 (where N is even) to deduce the RGB color.
120 indicate that the image data is in YCbCr format. type must
124 If NV_texture_rectangle is supporte
[all...]
/external/mesa3d/docs/
H A DMESA_ycbcr_texture.spec28 OpenGL 1.0 or later is required
29 This extension is written against the OpenGL 1.4 Specification.
35 There is no support for converting YCbCr images to RGB or vice versa
41 A YCbCr pixel (texel) is a 16-bit unsigned short with two components.
42 The first component is luminance (Y). For pixels in even-numbered
43 image columns, the second component is Cb. For pixels in odd-numbered
44 image columns, the second component is Cr. If one were to convert the
46 (where N is even) to deduce the RGB color.
120 indicate that the image data is in YCbCr format. type must
124 If NV_texture_rectangle is supporte
[all...]

Completed in 8437 milliseconds

1234567891011>>