Searched defs:is (Results 1 - 25 of 315) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Ddebug-info-block.c2 // Verify that the desired debugging type is generated for a structure
3 // member that is a pointer to a block.
29 } is; variable in typeref:struct:inStruct
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
H A Dbasic_ios.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
25 f(std::basic_ios<CharT>& is) argument
28 return is;
34 std::istream is((std::streambuf*)0);
35 is >> f;
H A Dios_base.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
23 f(std::ios_base& is) argument
26 return is;
32 std::istream is((std::streambuf*)0);
33 is >> f;
H A Distream.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
25 f(std::basic_istream<CharT>& is) argument
28 return is;
34 std::istream is((std::streambuf*)0);
35 is >> f;
/external/jdiff/src/jdiff/
H A DStreamReader.java17 StreamReader(InputStream is) { argument
18 is_ = is;
21 /** Method which is called when this thread is started. */
33 // Ignore read errors which indicate that the process is complete
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.sample/
H A Dsample.fail.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
28 const unsigned is = sizeof(ia) / sizeof(ia[0]); local
32 std::sample(PopulationIterator(ia), PopulationIterator(ia + is),
/external/libcxx/test/std/experimental/algorithms/alg.random.sample/
H A Dsample.fail.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
28 const unsigned is = sizeof(ia) / sizeof(ia[0]); local
32 std::experimental::sample(PopulationIterator(ia), PopulationIterator(ia + is),
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLBIOInputStream.java11 * distributed under the License is distributed on an "AS IS" BASIS,
31 OpenSSLBIOInputStream(InputStream is, boolean isFinite) { argument
32 super(is);
/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
H A Darrow.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
28 std::istream& operator>>(std::istream& is, A& a) argument
30 return is >> a.d_ >> a.i_;
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_resource.c47 i915_init_screen_resource_functions(struct i915_screen *is) argument
49 is->base.resource_create = i915_resource_create;
50 is->base.resource_from_handle = i915_resource_from_handle;
51 is->base.resource_get_handle = u_resource_get_handle_vtbl;
52 is->base.resource_destroy = u_resource_destroy_vtbl;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/
H A DSrtParser.java11 * distributed under the License is distributed on an AS IS BASIS,
29 public static TextTrackImpl parse(InputStream is) throws IOException { argument
30 LineNumberReader r = new LineNumberReader(new InputStreamReader(is, "UTF-8"));
/external/python/cpython2/Lib/idlelib/
H A Didle.py12 from idlelib.PyShell import main # This is subject to change namespace
/external/sfntly/cpp/src/test/
H A Dmemory_io_test.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
41 MemoryInputStream is; local
42 is.Attach(&(test_buffer[0]), kTestBufferLen);
43 EXPECT_EQ(is.Available(), (int32_t)kTestBufferLen);
46 EXPECT_EQ(is.Read(), '0'); // position 1
47 EXPECT_EQ(is.Read(), '1'); // position 2
48 EXPECT_EQ(is.Read(), '2'); // position 3
53 EXPECT_EQ(is.Read(&b), 7); // position 10
57 EXPECT_EQ(is.Read(&b, 7, 10), 10); // position 20
63 EXPECT_EQ(is
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
H A DAliasEvent.java11 * distributed under the License is distributed on an "AS IS" BASIS,
29 public boolean is(Event.ID id) { method in class:AliasEvent
H A DMappingEndEvent.java11 * distributed under the License is distributed on an "AS IS" BASIS,
32 public boolean is(Event.ID id) { method in class:MappingEndEvent
H A DSequenceEndEvent.java11 * distributed under the License is distributed on an "AS IS" BASIS,
32 public boolean is(Event.ID id) { method in class:SequenceEndEvent
H A DStreamEndEvent.java11 * distributed under the License is distributed on an "AS IS" BASIS,
23 * This event is the last event that a parser emits. Together with
24 * {@link StreamStartEvent} (which is the first event a parser emits) they mark
37 public boolean is(Event.ID id) { method in class:StreamEndEvent
H A DStreamStartEvent.java11 * distributed under the License is distributed on an "AS IS" BASIS,
23 * This event is the first event that a parser emits. Together with
24 * {@link StreamEndEvent} (which is the last event a parser emits) they mark the
38 public boolean is(Event.ID id) { method in class:StreamStartEvent
/external/testng/src/main/java/org/testng/internal/
H A DYamlParser.java13 public XmlSuite parse(String filePath, InputStream is, boolean loadClasses) argument
16 return Yaml.parse(filePath, is);
/external/testng/src/main/java/org/testng/xml/
H A DIFileParser.java9 T parse(String filePath, InputStream is, boolean loadClasses) throws TestNGException; argument
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3cyclicdfa.c6 * Any state that has a semantic predicate edge is special; those states
8 * which is generated by cyclicDFA template.
79 antlr3dfapredict (void * ctx, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA cdfa) argument
86 mark = is->mark(is); /* Store where we are right now */
99 s = cdfa->specialStateTransition(ctx, rec, is, cdfa, specialState);
112 is->rewind(is, mark);
115 is->consume(is);
193 antlr3dfaspecialStateTransition(void * ctx, pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA dfa, ANTLR3_INT32 s) argument
201 antlr3dfaspecialTransition(void * ctx, pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA dfa, ANTLR3_INT32 s) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DStreamRedirector.java12 * distributed under the License is distributed on an "AS IS" BASIS,
46 * @param is stream to be redirected
50 public StreamRedirector(InputStream is, LogWriter logWriter, String name) { argument
54 InputStreamReader isr = new InputStreamReader(is);
/external/clang/test/Sema/
H A Dno-documentation-warn-tagdecl-specifier.c17 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
24 struct s4 { int is; }; member in struct:s4
26 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
28 struct s5 { int is; }; member in struct:s5
31 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
36 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
59 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
68 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
73 // expected-warning@+1 {{'@return' command used in a comment that is not attached to a function or method declaration}}
78 // expected-warning@+1 {{'@return' command used in a comment that is no
[all...]
/external/glide/testutil/src/main/java/com/bumptech/glide/testutil/
H A DTestUtil.java19 public static byte[] isToBytes(InputStream is) throws IOException { argument
24 while ((read = is.read(buffer)) != -1) {
28 is.close();
33 public static String isToString(InputStream is) throws IOException { argument
34 return new String(isToBytes(is));
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DIs.java15 * vs. assertThat(cheese, is(equalTo(smelly)))
31 description.appendText("is ").appendDescriptionOf(matcher);
43 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
48 public static <T> Matcher<T> is(Matcher<T> matcher) { method in class:Is
53 * A shortcut to the frequently used <code>is(equalTo(x))</code>.
55 * <pre>assertThat(cheese, is(smelly))</pre>
57 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
60 public static <T> Matcher<T> is(T value) { method in class:Is
61 return is(equalTo(value));
65 * A shortcut to the frequently used <code>is(instanceO
[all...]

Completed in 1650 milliseconds

1234567891011>>