Searched refs:is (Results 101 - 125 of 7284) sorted by relevance

1234567891011>>

/external/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
H A Dseekg_off.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
56 std::istream is(&sb);
57 is.seekg(5, std::ios_base::cur);
58 assert(is.good());
60 is.seekg(-1, std::ios_base::beg);
61 assert(is.fail());
66 std::wistream is(&sb);
67 is.seekg(5, std::ios_base::cur);
68 assert(is.good());
70 is
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DRectTest.java9 import static org.hamcrest.CoreMatchers.is;
21 assertThat(r.left, is(1));
22 assertThat(r.top, is(2));
23 assertThat(r.right, is(3));
24 assertThat(r.bottom, is(4));
31 assertThat(r.left, is(1));
32 assertThat(r.top, is(2));
33 assertThat(r.right, is(3));
34 assertThat(r.bottom, is(4));
41 assertThat(r.width(), is(1
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/test/
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/sfntly/cpp/src/test/
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/libcxx/test/input.output/iostream.format/std.manip/
H A Dsetprecision.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
28 std::istream is(&sb);
29 is >> std::setprecision(10);
30 assert(is.precision() == 10);
40 std::wistream is(&sb);
41 is >> std::setprecision(10);
42 assert(is.precision() == 10);
H A Dsetw.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
28 std::istream is(&sb);
29 is >> std::setw(10);
30 assert(is.width() == 10);
40 std::wistream is(&sb);
41 is >> std::setw(10);
42 assert(is.width() == 10);
H A Dresetiosflags.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
28 std::istream is(&sb);
29 assert(is.flags() & std::ios_base::skipws);
30 is >> std::resetiosflags(std::ios_base::skipws);
31 assert(!(is.flags() & std::ios_base::skipws));
42 std::wistream is(&sb);
43 assert(is.flags() & std::ios_base::skipws);
44 is >> std::resetiosflags(std::ios_base::skipws);
45 assert(!(is.flags() & std::ios_base::skipws));
H A Dsetiosflags.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
28 std::istream is(&sb);
29 assert(!(is.flags() & std::ios_base::oct));
30 is >> std::setiosflags(std::ios_base::oct);
31 assert(is.flags() & std::ios_base::oct);
42 std::wistream is(&sb);
43 assert(!(is.flags() & std::ios_base::oct));
44 is >> std::setiosflags(std::ios_base::oct);
45 assert(is.flags() & std::ios_base::oct);
/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/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_screen.c6 * Permission is hereby granted, free of charge, to any person obtaining a
11 * permit persons to whom the Software is furnished to do so, subject to
168 struct i915_screen *is = i915_screen(screen); local
218 return is->debug.lie ? 1 : 0;
372 struct i915_screen *is = i915_screen(screen); local
374 is->iws->fence_reference(is->iws, ptr, fence);
381 struct i915_screen *is = i915_screen(screen); local
383 return is->iws->fence_signalled(is
391 struct i915_screen *is = i915_screen(screen); local
419 struct i915_screen *is = i915_screen(screen); local
433 struct i915_screen *is = CALLOC_STRUCT(i915_screen); local
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_screen.c6 * Permission is hereby granted, free of charge, to any person obtaining a
11 * permit persons to whom the Software is furnished to do so, subject to
168 struct i915_screen *is = i915_screen(screen); local
218 return is->debug.lie ? 1 : 0;
372 struct i915_screen *is = i915_screen(screen); local
374 is->iws->fence_reference(is->iws, ptr, fence);
381 struct i915_screen *is = i915_screen(screen); local
383 return is->iws->fence_signalled(is
391 struct i915_screen *is = i915_screen(screen); local
419 struct i915_screen *is = i915_screen(screen); local
433 struct i915_screen *is = CALLOC_STRUCT(i915_screen); local
[all...]
/external/chromium_org/tools/gyp/test/dependencies/sharedlib-linksettings/
H A Dprogram.c3 * Use of this source code is governed by a BSD-style license that can be
14 #error TEST_DEFINE is already defined!
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword.cpp5 //expected-error@+3 {{token is not a valid binary operator in a preprocessor subexpression}}
7 // Valid because 'and' is a spelling of '&&'
11 // Not valid in C++ unless -fno-operator-names is passed:
28 //expected-warning@+2 {{and is defined}}
30 #warning and is defined
/external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.disc/
H A Dio.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
24 // operator>>(basic_istream<charT, traits>& is,
39 std::istringstream is(os.str());
41 is >> e2;
53 std::istringstream is(os.str());
55 is >> e2;
/external/libcxx/test/numerics/rand/rand.eng/rand.eng.mers/
H A Dio.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
30 // operator>>(basic_istream<charT, traits>& is,
45 std::istringstream is(os.str());
47 is >> e2;
59 std::istringstream is(os.str());
61 is >> e2;
/external/libcxx/test/numerics/rand/rand.eng/rand.eng.sub/
H A Dio.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
24 // operator>>(basic_istream<charT, traits>& is,
39 std::istringstream is(os.str());
41 is >> e2;
53 std::istringstream is(os.str());
55 is >> e2;
/external/valgrind/main/drd/tests/
H A Dsigaltstack.stderr.exp1 calling sigaltstack, stack base is 0x........
5 caught signal, local var is on 0x........
/external/valgrind/main/memcheck/tests/
H A Dsigaltstack.stderr.exp1 calling sigaltstack, stack base is 0x........
5 caught signal, local var is on 0x........
/external/valgrind/main/none/tests/s390x/
H A Dtrot.stdout.exp2 the translated values is
4 the translated values is
6 the translated values is
8 the translated values is bbbb ccdd ffff
10 the translated values is bbbb ccdd ffff cccc abab caca bcbc cccc dada eaea
12 the translated values is bbbb ccdd 0 0 0
14 the translated values is bbbb ccdd ffff 0 0
16 the translated values is bbbb ccdd ffff cccc abab caca bcbc cccc dada eaea
H A Dtrto.stdout.exp2 the translated values is
4 the translated values is
6 the translated values is
8 the translated values is cc dd ff cc ab ca
10 the translated values is cc dd ff cc ab ca bc cc dd ea
12 the translated values is cc dd 0 0 0 0
14 the translated values is cc dd 0 0 0 0
16 the translated values is cc dd ff cc ab ca bc cc dd 0
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DParserRuleReturnScope.pm8 is => 'rw',
13 is => 'rw',
/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/Modules/
H A Dsubmodules-preprocess.cpp8 # error HAVE_VECTOR macro is not available (but should be)
12 # error HAVE_TYPE_TRAITS_MAP macro is available (but shouldn't be)
16 # error HAVE_HASH_MAP macro is available (but shouldn't be)
22 # error HAVE_VECTOR macro is not available (but should be)
26 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
30 # error HAVE_HASH_MAP macro is available (but shouldn't be)
38 # error HAVE_VECTOR macro is not available (but should be)
42 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
46 # error HAVE_HASH_MAP macro is available (but shouldn't be)
52 # error HAVE_VECTOR macro is no
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A Dmessages.properties5 # which accompanies this distribution, and is available at
14 standardError = Standard error on this test is {0} (should be less than {1} to become reliable!)
/external/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
H A Dio.pass.cpp5 // This file is dual licensed under the MIT and the University of Illinois Open
24 // operator>>(basic_istream<charT, traits>& is,
39 std::istringstream is(os.str());
41 is >> e2;

Completed in 7680 milliseconds

1234567891011>>