HomeSort by relevance Sort by last modified time
    Searched defs:is (Results 101 - 125 of 1563) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/
main.cpp 58 intstr_map is; local
60 is[85] = "goofy";
61 is[1] = "is";
62 is[2] = "smart";
63 is[3] = "!!!";
66 is.clear();
76 ss["a Mac.."] = "..is always a Mac!";
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/
main.cpp 58 intstr_map is; local
60 is.emplace(85,"goofy");
61 is.emplace(1,"is");
62 is.emplace(2,"smart");
63 is.emplace(3,"!!!");
66 is.clear();
76 ss.emplace("a Mac..","..is always a Mac!");
  /external/messageformat/java/com/ibm/icu/impl/
ICUConfig.java 18 * ICUConfig is a class used for accessing ICU4J runtime configuration.
27 InputStream is = ICUData.getStream(CONFIG_PROPS_FILE); typedefs
28 if (is != null) {
29 CONFIG_PROPS.load(is); typedefs
52 * exist, <code>def</code> is returned.
  /external/openfst/src/include/fst/
reverse.h 10 // distributed under the License is distributed on an "AS IS" BASIS,
33 // Reverses an FST. The reversed result is written to an output
60 StateId is = siter.Value(); local
61 StateId os = is + 1;
64 if (is == istart)
67 Weight final = ifst.Final(is);
73 for (ArcIterator< Fst<Arc> > aiter(ifst, is);
  /external/parameter-framework/parameter/
SelectionCriterion.cpp 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
97 bool CSelectionCriterion::is(int iState) const function in class:CSelectionCriterion
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ActivityGroupTest.java 10 import static org.hamcrest.CoreMatchers.is;
22 assertThat(activityGroup.getCurrentActivity(), is(activity)); method
ShapeDrawableTest.java 9 import static org.hamcrest.core.Is.is;
20 assertThat(shapeDrawable.getPaint(), is(paint)); method
  /external/sfntly/cpp/src/test/
file_io_test.cc 11 * 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)
106 FileInputStream is; local
133 FileInputStream is; local
    [all...]
test_font_utils.cc 11 * distributed under the License is distributed on an "AS IS" BASIS,
30 FileInputStream is; local
31 is.Open(font_path);
32 factory->LoadFontsForBuilding(&is, builders);
46 FileInputStream is; local
47 is.Open(font_path);
48 factory->LoadFonts(&is, fonts);
49 is.Close();
  /frameworks/base/core/tests/coretests/src/android/os/
MemoryFileTest.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
88 InputStream is = file.getInputStream(); local
89 is.mark(testString.length);
90 is.read(buffer);
95 is.reset();
96 is.read(buffer);
128 InputStream is = file.getInputStream(); local
131 is.read(buffer, offset, count);
134 // this is what should happe
173 InputStream is = file.getInputStream(); local
    [all...]
  /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);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
CANotifyOnBootActivity.java 58 InputStream is = null; local
62 is = getAssets().open(CERT_ASSET_NAME);
66 while ((length = is.read(buffer)) > 0) {
70 if (is != null) is.close();
  /cts/tests/tests/os/src/android/os/cts/
RecoverySystemTest.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
48 InputStream is = mAssets.open(name); local
51 while ((read = is.read(b)) != -1) {
54 is.close();
64 // This is the only package for which verification should succeed.
  /cts/tests/tests/util/src/android/util/cts/
PrintStreamPrinterTest.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
48 InputStream is = null; local
58 is = new FileInputStream(mFile);
59 BufferedReader reader = new BufferedReader(new InputStreamReader(is));
64 is.close();
  /development/samples/TtsEngine/src/com/example/android/ttsengine/
CheckVoiceData.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
32 * Checks if the voice data is present.
56 // This check is required because checkLanguages might contain
114 * Checks whether a given language is in the list of supported languages.
127 * Note that in our example, all data is packaged in our APK as
128 * assets (it could be a raw resource as well). This check is unnecessary
136 InputStream is = getAssets().open(lang + ".freq"); local
138 if (is != null) {
139 is.close()
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Target.java 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
41 * be generated vary enough that some X-specific functionality is required.
52 * If org.antlr.codegen.XTarget class exists, it is used else
53 * Target base class is used. I am using a superclass rather than an
69 * but your Target subclass is free to alter the translated chars or
70 * add more definitions. This is nonstatic so each target can have
117 /** Is scope in @scope::name {action} valid for this kind of grammar?
145 // If name is a literal, return the token type instead
198 * is the translation 'a\n"' -> "a\n\"". Expect single quote
212 StringBuffer is = new StringBuffer(literal); local
    [all...]
  /external/apache-http/src/org/apache/http/util/
VersionInfo.java 18 * software distributed under the License is distributed on an
19 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
49 * All available version information is provided in strings, where
50 * the string format is informal and subject to change without notice.
51 * Version information is provided for debugging output and interpretation
128 * This data is read from the version information for the package.
138 * This data is read from the version information for the package.
148 * This data is read from the version information for the package.
158 * This is just the <code>toString</code> output of the classloader,
183 // If version info is missing, a single "UNAVAILABLE" for the modul
253 InputStream is = clsldr.getResourceAsStream local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
ResourceBasedPeriodFormatterDataService.java 30 * data file for Hebrew as spoken in Israel. Data is in a JSON-like format.
57 InputStream is = ICUData.getRequiredStream(getClass(), PATH local
60 BufferedReader br = new BufferedReader(new InputStreamReader(is,
76 is.close();
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
IoUtil.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
31 public static void pipe(InputStream is, OutputStream out, byte[] buf) throws IOException {
33 int amt = is.read(buf);
119 final InputStream is = inputZip.getInputStream(inputEntry); local
120 IoUtil.pipe(is, baos, buf);
121 is.close();
  /external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
Decoder.java 3 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * sell copies of the Software, and to permit persons to whom the Software is
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29 InputStream is; field in class:Decoder
45 int i = is.read();
63 * The "main" element is returned in the
118 public Decoder(InputStream is, String _bound) throws IOException {
119 this(is, _bound, null);
122 public Decoder(InputStream is, String _bound, String characterEncoding) throws IOException
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
PropertyBoxParserImpl.java 11 * distributed under the License is distributed on an AS IS BASIS,
39 InputStream is = new BufferedInputStream(getClass().getResourceAsStream("/isoparser-default.properties")); local
43 mapping.load(is);
63 is.close();
  /external/okhttp/okio/okio/src/test/java/okio/
RealBufferedSourceTest.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
182 InputStream is = bufferedSource.inputStream(); local
184 is.read();
190 is.read(new byte[10]);
  /frameworks/base/core/java/com/android/internal/os/
KernelWakelockReader.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
69 FileInputStream is; local
71 is = new FileInputStream(sWakelockFile);
75 is = new FileInputStream(sWakeupSourceFile);
84 len = is.read(buffer);
85 is.close();
129 endIndex++; // endIndex is an exclusive upper bound.
138 // Stomp out any bad characters since this is from a circular buffer
139 // A corruption is seen sometimes that results in the vm crashin
    [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...]

Completed in 868 milliseconds

1 2 3 45 6 7 8 91011>>