Searched defs:is (Results 1 - 25 of 258) 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.
9 } is; variable in typeref:struct:inStruct
/external/libcxx/test/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/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
26 std::istream& operator>>(std::istream& is, A& a) argument
28 return is >> a.d_ >> a.i_;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_resource.c43 i915_init_screen_resource_functions(struct i915_screen *is) argument
45 is->base.resource_create = i915_resource_create;
46 is->base.resource_from_handle = i915_resource_from_handle;
47 is->base.resource_get_handle = u_resource_get_handle_vtbl;
48 is->base.resource_destroy = u_resource_destroy_vtbl;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_resource.c4 * Permission is hereby granted, free of charge, to any person
9 * of the Software, and to permit persons to whom the Software is
70 svga_init_screen_resource_functions(struct svga_screen *is) argument
72 is->screen.resource_create = svga_resource_create;
73 is->screen.resource_from_handle = svga_resource_from_handle;
74 is->screen.resource_get_handle = u_resource_get_handle_vtbl;
75 is->screen.resource_destroy = u_resource_destroy_vtbl;
/external/chromium_org/third_party/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...]
H A Dfile_io_test.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
46 FileInputStream is; local
47 is.Open(SAMPLE_TTF_FILE);
48 EXPECT_EQ(length, (size_t)is.Available());
50 is.Read(&b2, 0, length);
51 is.Close();
56 is.Open(SAMPLE_TTF_FILE);
57 is.Skip(89);
58 is.Read(&b2, 0, 100);
63 is
106 FileInputStream is; local
133 FileInputStream is; local
[all...]
/external/chromium_org/third_party/tlslite/tlslite/
H A D__init__.py4 """TLS Lite is a free python library that implements SSL and TLS. TLS Lite
5 supports RSA and SRP ciphersuites. TLS Lite is pure python, however it can use
9 API documentation is available in the 'docs' directory.
17 If you want to import the most useful objects, the cleanest way is:
28 from tlslite.api import __version__ # Unsure why this is needed, but it is namespace
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLBIOInputStream.java11 * distributed under the License is distributed on an "AS IS" BASIS,
31 public OpenSSLBIOInputStream(InputStream is) { argument
32 super(is);
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/
H A Dmain.cpp36 intstr_map is; local
38 is[85] = "goofy";// Set break point at this line.
39 is[1] = "is";
40 is[2] = "smart";
41 is[3] = "!!!";
43 is.clear();// Set break point at this line.
50 ss["a Mac.."] = "..is always a Mac!";
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_resource.c43 i915_init_screen_resource_functions(struct i915_screen *is) argument
45 is->base.resource_create = i915_resource_create;
46 is->base.resource_from_handle = i915_resource_from_handle;
47 is->base.resource_get_handle = u_resource_get_handle_vtbl;
48 is->base.resource_destroy = u_resource_destroy_vtbl;
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_resource.c4 * Permission is hereby granted, free of charge, to any person
9 * of the Software, and to permit persons to whom the Software is
70 svga_init_screen_resource_functions(struct svga_screen *is) argument
72 is->screen.resource_create = svga_resource_create;
73 is->screen.resource_from_handle = svga_resource_from_handle;
74 is->screen.resource_get_handle = u_resource_get_handle_vtbl;
75 is->screen.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/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/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/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DIdentityScopeTest.java12 * distributed under the License is distributed on an "AS IS" BASIS,
36 IdentityScope is; field in class:IdentityScopeTest
65 is = new IdentityScopeStub("Aleksei Semenov");
66 assertNotNull(is);
67 assertEquals("Aleksei Semenov", is.getName());
75 is = new IdentityScopeStub("Aleksei Semenov", scope);
76 assertNotNull(is);
77 assertEquals("Aleksei Semenov", is.getName());
78 assertEquals(scope.getName(), is.getScope().getName());
96 is
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dmodule.cpp4 // Permission is hereby granted, free of charge, to any person obtaining a
9 // Software is furnished to do so, subject to the following conditions:
44 __proc(compat::istream &is, T &x) { argument
45 __serializer<T>::proc(is, x);
50 __proc(compat::istream &is) { argument
52 __serializer<T>::proc(is, x);
66 proc(compat::istream &is, T &x) { argument
67 is.read(reinterpret_cast<char *>(&x), sizeof(x));
83 proc(compat::istream &is, compat::vector<T> &v) { argument
84 v.reserve(__proc<uint32_t>(is));
145 deserialize(compat::istream &is) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dsimple_lpc_analysis.c4 * Use of this source code is governed by a BSD-style license
37 int16_t is; local
45 is=LPC_LOOKBACK+BLOCKL_MAX-iLBCenc_inst->blockl;
46 WEBRTC_SPL_MEMCPY_W16(iLBCenc_inst->lpc_buffer+is,data,iLBCenc_inst->blockl);
48 /* No lookahead, last window is asymmetric */
52 is = LPC_LOOKBACK;
56 /* Hanning table WebRtcIlbcfix_kLpcWin[] is in Q15-domain so the output is right-shifted 15 */
60 /* Hanning table WebRtcIlbcfix_kLpcAsymWin[] is in Q15-domain so the output is righ
[all...]
/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/hamcrest/src/org/hamcrest/core/
H A DIs.java15 * vs assertThat(cheese, is(equalTo(smelly)))
30 description.appendText("is ").appendDescriptionOf(matcher);
38 * vs assertThat(cheese, is(equalTo(smelly)))
41 public static <T> Matcher<T> is(Matcher<T> matcher) { method in class:Is
46 * This is a shortcut to the frequently used is(equalTo(x)).
48 * eg. assertThat(cheese, is(equalTo(smelly)))
49 * vs assertThat(cheese, is(smelly))
52 public static <T> Matcher<T> is(T value) { method in class:Is
53 return is(equalT
63 public static Matcher<Object> is(Class<?> type) { method in class:Is
[all...]
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DIoUtil.java11 * distributed under the License is distributed on an "AS IS" BASIS,
31 public static void pipe(InputStream is, OutputStream out, byte[] buf) throws IOException { argument
33 int amt = is.read(buf);
119 final InputStream is = inputZip.getInputStream(inputEntry);
120 IoUtil.pipe(is, baos, buf);
121 is.close();

Completed in 2300 milliseconds

1234567891011