HomeSort by relevance Sort by last modified time
    Searched defs:is (Results 1 - 25 of 3001) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
debug-info-block.c 2 // 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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
ctype_inline.h 5 // This file is part of the GNU ISO C++ Library. This library is free
11 // This library is distributed in the hope that it will be useful,
26 * This is an internal header file, included by other library headers.
43 is(mask __m, char __c) const function in class:ctype
48 is(const char* __low, const char* __high, mask* __vec) const function in class:ctype
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
ctype_inline.h 5 // This file is part of the GNU ISO C++ Library. This library is free
11 // This library is distributed in the hope that it will be useful,
26 * This is an internal header file, included by other library headers.
43 is(mask __m, char __c) const function in class:ctype
48 is(const char* __low, const char* __high, mask* __vec) const function in class:ctype
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
ctype_inline.h 5 // This file is part of the GNU ISO C++ Library. This library is free
11 // This library is distributed in the hope that it will be useful,
26 * This is an internal header file, included by other library headers.
43 is(mask __m, char __c) const function in class:ctype
49 is(const char* __low, const char* __high, mask* __vec) const function in class:ctype
60 while (__low < __high && !this->is(__m, *__low))
69 while (__low < __high && this->is(__m, *__low) != 0)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
ctype_inline.h 5 // This file is part of the GNU ISO C++ Library. This library is free
11 // This library is distributed in the hope that it will be useful,
26 * This is an internal header file, included by other library headers.
43 is(mask __m, char __c) const function in class:ctype
49 is(const char* __low, const char* __high, mask* __vec) const function in class:ctype
60 while (__low < __high && !this->is(__m, *__low))
69 while (__low < __high && this->is(__m, *__low) != 0)
  /libcore/luni/src/test/java/libcore/java/io/
OldObjectInputOutputStreamTest.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
30 private ObjectInputStream is; field in class:OldObjectInputOutputStreamTest
42 is.readBoolean());
45 is.readBoolean();
51 is.close();
53 is.readBoolean();
66 (byte) 127, is.readByte());
69 is.readByte();
75 is.close()
    [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...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/
TestUtils.java 5 * This file is part of JavaParser.
16 * JavaParser is distributed in the hope that it will be useful,
29 InputStream is = TestUtils.class.getClassLoader().getResourceAsStream("com/github/javaparser/bdd/samples/" local
31 if (is == null) {
34 return is;
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.sample/
sample.fail.cpp 5 // 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/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
AliasEvent.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
29 public boolean is(Event.ID id) { method in class:AliasEvent
MappingEndEvent.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
32 public boolean is(Event.ID id) { method in class:MappingEndEvent
MappingStartEvent.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
23 * This event is followed by a number of key value pairs. <br>
41 public boolean is(Event.ID id) { method in class:MappingStartEvent
SequenceEndEvent.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
32 public boolean is(Event.ID id) { method in class:SequenceEndEvent
SequenceStartEvent.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
23 * This event is followed by the elements contained in the sequence, and a
36 public boolean is(Event.ID id) { method in class:SequenceStartEvent
StreamEndEvent.java 11 * 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
StreamStartEvent.java 11 * 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
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.modifying.operations/alg.random.sample/
sample.fail.cpp 5 // 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),
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/algorithms/alg.random.sample/
sample.fail.cpp 5 // 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),
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ReadAsset.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
20 // class is in a sub-package.
46 // text view. Note that the text we are loading is ASCII, so we
49 InputStream is = getAssets().open("read_asset.txt"); local
54 int size = is.available();
58 is.read(buffer);
59 is.close();
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUConfig.java 21 * ICUConfig is a class used for accessing ICU4J runtime configuration.
22 * @hide Only a subset of ICU is exposed in Android
31 InputStream is = ICUData.getStream(CONFIG_PROPS_FILE); external variable declarations
32 if (is != null) {
34 CONFIG_PROPS.load(is); external variable declarations
36 is.close();
60 * exist, <code>def</code> is returned.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUConfig.java 20 * ICUConfig is a class used for accessing ICU4J runtime configuration.
29 InputStream is = ICUData.getStream(CONFIG_PROPS_FILE); external variable declarations
30 if (is != null) {
32 CONFIG_PROPS.load(is); external variable declarations
34 is.close();
58 * exist, <code>def</code> is returned.
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
URLDumper.java 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
20 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
33 * This source code is provided to illustrate the usage of a given feature
69 InputStream is = url.openStream(); local
73 while ((read = is.read(bytes)) != -1) {
77 is.close();
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
URLDumper.java 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
20 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
33 * This source code is provided to illustrate the usage of a given feature
69 InputStream is = url.openStream(); local
73 while ((read = is.read(bytes)) != -1) {
77 is.close();
  /device/google/marlin/common/
utils.mk 43 # if the input word is not empty
84 # $(call is-board-platform,bp)
86 define is-board-platform
90 # $(call is-not-board-platform,bp)
92 define is-not-board-platform
96 # $(call is-board-platform-in-list,bpl)
98 define is-board-platform-in-list
102 # $(call is-vendor-board-platform,vendor)
104 define is-vendor-board-platform
112 # $(call is-chipset-in-board-platform,chipset
    [all...]
  /device/google/wahoo/
utils.mk 43 # if the input word is not empty
84 # $(call is-board-platform,bp)
86 define is-board-platform
90 # $(call is-not-board-platform,bp)
92 define is-not-board-platform
96 # $(call is-board-platform-in-list,bpl)
98 define is-board-platform-in-list
102 # $(call is-vendor-board-platform,vendor)
104 define is-vendor-board-platform
112 # $(call is-chipset-in-board-platform,chipset
    [all...]

Completed in 265 milliseconds

1 2 3 4 5 6 7 8 91011>>