HomeSort by relevance Sort by last modified time
    Searched defs:is (Results 1 - 25 of 834) 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
  /external/grpc-grpc-java/testing/src/test/java/io/grpc/testing/
TlsTestingTest.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
31 InputStream is = null; local
33 is = TlsTesting.loadCert("ca.key");
34 assertNotNull(is);
36 if (is != null) {
37 is.close();
  /external/antlr/runtime/ObjC/Framework/
ANTLRReaderStream.h 13 NSInputStream *is; variable
20 @property (retain) NSInputStream *is; variable
  /external/cldr/tools/java/org/unicode/cldr/util/
Predicate.java 4 public boolean is(T item); method in interface:Predicate
  /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
  /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/apache-commons-compress/src/test/java/org/apache/commons/compress/
ChainingTestCase.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
38 final TarArchiveInputStream is = new TarArchiveInputStream(new GzipCompressorInputStream(new FileInputStream(file))); local
39 final TarArchiveEntry entry = (TarArchiveEntry)is.getNextEntry();
42 is.close();
48 final TarArchiveInputStream is = new TarArchiveInputStream(new BZip2CompressorInputStream(new FileInputStream(file))); local
49 final TarArchiveEntry entry = (TarArchiveEntry)is.getNextEntry();
52 is.close();
  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/memory/
MemoryArchiveTestCase.java 13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
34 final MemoryArchiveInputStream is = new MemoryArchiveInputStream(new String[][] { local
39 final ArchiveEntry entry1 = is.getNextEntry();
42 final String content1 = is.readString();
45 final ArchiveEntry entry2 = is.getNextEntry();
48 final String content2 = is.readString();
51 final ArchiveEntry entry3 = is.getNextEntry();
54 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.
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTimeZoneFinder.java 46 InputStream is = null; local
49 is = ShadowTimeZoneFinder.class.getResourceAsStream(TZLOOKUP_PATH);
50 BufferedReader reader = new BufferedReader(new InputStreamReader(is, UTF_8));
55 if (is != null) {
56 is.close();
ShadowTimeZoneFinderQ.java 37 InputStream is = null; local
40 is = ShadowTimeZoneFinder.class.getResourceAsStream(TZLOOKUP_PATH);
41 BufferedReader reader = new BufferedReader(new InputStreamReader(is, UTF_8));
46 if (is != null) {
47 is.close();
  /device/google/bonito/
utils.mk 41 # if the input word is not empty
82 # $(call is-board-platform,bp)
84 define is-board-platform
88 # $(call is-not-board-platform,bp)
90 define is-not-board-platform
94 # $(call is-board-platform-in-list,bpl)
96 define is-board-platform-in-list
100 # $(call is-vendor-board-platform,vendor)
102 define is-vendor-board-platform
110 # $(call is-chipset-in-board-platform,chipset
    [all...]
  /device/google/crosshatch/
utils.mk 41 # if the input word is not empty
82 # $(call is-board-platform,bp)
84 define is-board-platform
88 # $(call is-not-board-platform,bp)
90 define is-not-board-platform
94 # $(call is-board-platform-in-list,bpl)
96 define is-board-platform-in-list
100 # $(call is-vendor-board-platform,vendor)
102 define is-vendor-board-platform
110 # $(call is-chipset-in-board-platform,chipset
    [all...]
  /device/google/marlin/common/
utils.mk 41 # if the input word is not empty
82 # $(call is-board-platform,bp)
84 define is-board-platform
88 # $(call is-not-board-platform,bp)
90 define is-not-board-platform
94 # $(call is-board-platform-in-list,bpl)
96 define is-board-platform-in-list
100 # $(call is-vendor-board-platform,vendor)
102 define is-vendor-board-platform
110 # $(call is-chipset-in-board-platform,chipset
    [all...]
  /device/google/wahoo/
utils.mk 41 # if the input word is not empty
82 # $(call is-board-platform,bp)
84 define is-board-platform
88 # $(call is-not-board-platform,bp)
90 define is-not-board-platform
94 # $(call is-board-platform-in-list,bpl)
96 define is-board-platform-in-list
100 # $(call is-vendor-board-platform,vendor)
102 define is-vendor-board-platform
110 # $(call is-chipset-in-board-platform,chipset
    [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...]

Completed in 1487 milliseconds

1 2 3 4 5 6 7 8 91011>>