HomeSort by relevance Sort by last modified time
    Searched refs:is (Results 176 - 200 of 10574) sorted by null

1 2 3 4 5 6 78 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/std.manip/
setprecision.pass.cpp 5 // 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);
setw.pass.cpp 5 // 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);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
RootInputStream.java 13 * software distributed under the License is distributed on an *
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
29 * reached end of file. This is used by the parser's
36 private InputStream is = null; field in class:RootInputStream
46 public RootInputStream(InputStream is) {
47 this.is = is;
78 int b = is.read();
95 int n = is.read(b, off, len);
  /packages/services/Telephony/src/org/apache/james/mime4j/
RootInputStream.java 13 * software distributed under the License is distributed on an *
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
29 * reached end of file. This is used by the parser's
36 private InputStream is = null; field in class:RootInputStream
46 public RootInputStream(InputStream is) {
47 this.is = is;
78 int b = is.read();
95 int n = is.read(b, off, len);
  /external/mesa3d/src/gallium/drivers/i915/
i915_screen.c 6 * 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
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
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
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...]
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
BitmapHelper.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
40 public static Bitmap scaleBitmap(int scaleFactor, InputStream is) {
48 return BitmapFactory.decodeStream(is, null, bmOptions);
51 public static int findScaleFactor(int targetW, int targetH, InputStream is) {
55 BitmapFactory.decodeStream(is, null, bmOptions);
67 BufferedInputStream is = null; local
70 is = new BufferedInputStream(urlConnection.getInputStream());
71 is.mark(MAX_READ_LIMIT_PER_IMG);
72 int scaleFactor = findScaleFactor(width, height, is);
    [all...]
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
BitmapHelper.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
40 public static Bitmap scaleBitmap(int scaleFactor, InputStream is) {
48 return BitmapFactory.decodeStream(is, null, bmOptions);
51 public static int findScaleFactor(int targetW, int targetH, InputStream is) {
55 BitmapFactory.decodeStream(is, null, bmOptions);
67 BufferedInputStream is = null; local
70 is = new BufferedInputStream(urlConnection.getInputStream());
71 is.mark(MAX_READ_LIMIT_PER_IMG);
72 int scaleFactor = findScaleFactor(width, height, is);
    [all...]
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
BitmapHelper.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
40 public static Bitmap scaleBitmap(int scaleFactor, InputStream is) {
48 return BitmapFactory.decodeStream(is, null, bmOptions);
51 public static int findScaleFactor(int targetW, int targetH, InputStream is) {
55 BitmapFactory.decodeStream(is, null, bmOptions);
67 BufferedInputStream is = null; local
70 is = new BufferedInputStream(urlConnection.getInputStream());
71 is.mark(MAX_READ_LIMIT_PER_IMG);
72 int scaleFactor = findScaleFactor(width, height, is);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
IntentSenderTest.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
33 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0, local
35 is.send();
37 is.cancel();
54 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0, intent, 0); local
55 is.send(Activity.RESULT_CANCELED, finish, null);
57 is.cancel();
62 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0, local
64 is.send()
81 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0, intent, 0); local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Movie.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
51 public static Movie decodeStream(InputStream is) {
52 if (is == null) {
55 if (is instanceof AssetManager.AssetInputStream) {
56 final long asset = ((AssetManager.AssetInputStream) is).getNativeAsset();
60 return nativeDecodeStream(is);
64 private static native Movie nativeDecodeStream(InputStream is);
71 InputStream is; local
73 is = new FileInputStream(pathName)
    [all...]
  /build/core/combo/arch/mips64/
mips64r2.mk 3 # This target is for temporary use only, until mips64r6 is supported by Android's qemu.
  /external/chromium-trace/trace-viewer/third_party/Paste/tests/
test_import_string.py 7 assert func('sys') is sys
8 assert func('sys.version') is sys.version
9 assert func('os.path.join') is os.path.join
12 assert eval_import('sys:version') is sys.version
  /external/clang/test/Preprocessor/
cxx_oper_keyword.cpp 5 //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/std/numerics/rand/rand.adapt/rand.adapt.disc/
io.pass.cpp 5 // 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/std/numerics/rand/rand.eng/rand.eng.mers/
io.pass.cpp 5 // 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/std/numerics/rand/rand.eng/rand.eng.sub/
io.pass.cpp 5 // 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/drd/tests/
sigaltstack.stderr.exp 1 calling sigaltstack, stack base is 0x........
5 caught signal, local var is on 0x........
  /external/valgrind/memcheck/tests/
sigaltstack.stderr.exp 1 calling sigaltstack, stack base is 0x........
5 caught signal, local var is on 0x........
  /external/valgrind/none/tests/s390x/
trot.stdout.exp 2 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
trto.stdout.exp 2 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
  /ndk/sources/android/support/include/
errno.h 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 #error ENOTRECOVERABLE is not defined
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.disc/
io.pass.cpp 5 // 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;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.mers/
io.pass.cpp 5 // 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;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.sub/
io.pass.cpp 5 // 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;
  /ndk/tests/build/test-inet-defs/jni/
test-in.c 11 * distributed under the License is distributed on an "AS IS" BASIS,
19 #error INET_ADDRSTRLEN is not defined by <inet/in.h>

Completed in 4799 milliseconds

1 2 3 4 5 6 78 91011>>