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

<<11121314151617181920>>

  /external/conscrypt/src/platform/java/org/conscrypt/
TrustedCertificateStore.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
68 * CAs is performed by placing an exact copy of that CA in the deleted
71 * but is otherwise reissued in a system update. Reinstalling a
75 * <p>Note that the default mutable directory is created by init via
79 * gid and that it is world readable but only writable by the system
177 InputStream is = null; local
179 is = new BufferedInputStream(new FileInputStream(file));
180 return (X509Certificate) CERT_FACTORY.generateCertificate(is);
188 IoUtils.closeQuietly(is);
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
ImageHeaderParser.java 76 public ImageHeaderParser(InputStream is) {
77 streamReader = new StreamReader(is);
114 * Parse the orientation from the image header. If it doesn't handle this image type (or this is not an image)
230 // 12 is max format code.
320 private final InputStream is; field in class:ImageHeaderParser.StreamReader
323 public StreamReader(InputStream is) {
324 this.is = is;
328 return (is.read() << 8 & 0xFF00) | (is.read() & 0xFF)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
utf8tst.c 29 * This is not conformant with UTF-8.
107 log_err("ERROR: 0x%02x is a single byte but results in single: %c lead: %c trail: %c\n",
112 log_err("ERROR: 0x%02x is a lead byte but results in single: %c lead: %c trail: %c\n",
117 log_err("ERROR: 0x%02x is a trail byte but results in single: %c lead: %c trail: %c\n",
150 log_verbose("The no: of code units for %lx is %d\n",c, UTF8_CHAR_LENGTH(c));
440 * U8_FWD_N() stops at the end of the string, that is, at the NUL if necessary.
504 * The behavior of _UNSAFE macros for ill-formed strings is undefined.
646 * The behavior of _UNSAFE macros for ill-formed strings is undefined.
1049 int32_t i, j, k, iu, is, il, length; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
CompatibilityTest.java 43 public void add(String className, InputStream is)
45 HandlerTarget newTarget = new HandlerTarget(className, is);
74 public HandlerTarget(String name, InputStream is)
77 inputStream = is;
108 // and the default method is the same as the "==" operator...
144 // GeneralMeasureFormat was in technical preview, but is going away after ICU 52.1.
150 // ICU 4.8+ MessageFormat is not serialization-compatible with previous versions.
191 InputStream is = new FileInputStream(file); local
192 target.add(className, is);
  /external/iproute2/doc/
ip-cref.tex 25 from the \verb|iproute2| package. It is not a tutorial or user's guide.
26 It is a {\em dictionary\/}, not explaining terms,
28 However, the document is self-contained and the reader, provided they have a
33 This document is split into sections explaining \verb|ip| commands
43 The generic form of an \verb|ip| command is:
47 where \verb|OPTIONS| is a set of optional modifiers affecting the
62 As a rule, the information is statistics or some time values.
68 --- enforce the protocol family to use. If the option is not present,
69 the protocol family is guessed from other arguments. If the rest of the command
71 one, usually \verb|inet| or \verb|any|. \verb|link| is a special famil
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 5 // This file is distributed under the University of Illinois Open Source
58 /// A reference to the entire token contents; this is always a pointer into
72 bool is(TokenKind K) const { return Kind == K; } function in class:llvm::AsmToken
99 /// is safe to store across calls to Lex().
102 // FIXME: Don't compute this in advance, it makes every token larger, and is
103 // also not generally what we want (it is nicer for recovery etc. to lex 123br
181 bool is(AsmToken::TokenKind K) const { return CurTok.is(K); } function in class:llvm::MCAsmLexer
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource_texture.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
162 /* for the first image and level make sure offset is zero */
176 i915_texture_tiling(struct i915_screen *is, struct i915_texture *tex)
178 if (!is->debug.tiling)
187 if (is->debug.use_blitter)
280 * XXX: need a better name than shared for this if it is to be part
688 struct i915_screen *is = i915_screen(screen) local
945 struct i915_screen *is = i915_screen(screen); local
1003 struct i915_screen *is = i915_screen(screen); local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AbstractCursorTest.java 4 import static org.hamcrest.CoreMatchers.is;
217 assertThat(shadow.getNotificationUri_Compatibility(), is(nullValue()));
219 assertThat(shadow.getNotificationUri_Compatibility(), is(uri)); method
ContextTest.java 36 assertThat(files.length, is(0));
40 assertThat(cachedFiles.length, is(0));
65 assertThat(dataDir.mkdir(), is(true)); method
69 assertThat(dataDir.exists(), is(true)); method
76 assertThat(dataDir.exists(), is(false)); method
80 assertThat(dataDir.exists(), is(true)); method
228 assertThat(successfully, is(true));
230 assertThat(successfully, is(true));
238 assertThat(successfully, is(false));
  /frameworks/base/services/core/java/com/android/server/display/
PersistentDataStore.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
189 final InputStream is; local
191 is = mAtomicFile.openRead();
199 parser.setInput(new BufferedInputStream(is), StandardCharsets.UTF_8.name());
208 IoUtils.closeQuietly(is);
  /frameworks/base/services/core/java/com/android/server/tv/
PersistentDataStore.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
53 * Manages persistent state recorded by the TV input manager service as an XML file. This class is
161 final InputStream is; local
163 is = mAtomicFile.openRead();
171 parser.setInput(new BufferedInputStream(is), StandardCharsets.UTF_8.name());
177 IoUtils.closeQuietly(is);
187 * Runnable posted when the state needs to be saved. This is used to prevent unnecessary file
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MountServiceTests.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
123 InputStream is = null; local
125 is = res.openRawResource(rawResId);
131 assertTrue(FileUtils.copyToFile(is, outFile));
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
ImageUtils.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
50 * Normally, this test will fail when there is a missing thumbnail. However, when
67 InputStream is = ImageUtils.class.getResourceAsStream(relativePath); local
68 if (is == null) {
78 BufferedImage goldenImage = ImageIO.read(is);
247 // then 340, and finally 680. (The next one, 1360, is larger than 1000).
252 // divide-in-half resizing operation at the end so there is less distortion.
255 int nearestWidth = destWidth; // Width closest to source width that = 2^x, x is integer
328 // The above has been commented out, since the destination path returned is in out di
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
ManifestTest.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
50 private static final String MANIFEST_CONTENTS_2 = "Manifest-Version: 1.0\nName: value\n \n"; // Note penultimate line is single space
132 InputStream is = new ByteArrayInputStream(baos.toByteArray()); local
133 Manifest mCopy = new Manifest(is);
248 // maximum allowed length is 72 for a header, colon and a following
271 new Manifest(new ByteArrayInputStream(bytes)); // the last NUL is ok
274 new Manifest(new ByteArrayInputStream(bytes)); // the last EOF is ok
436 InputStream is = new InputStreamImpl(); local
438 new Manifest().read(is);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipInputStreamTest.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
47 InputStream is = Support_Resources.getStream("hyts_ZipFile.zip"); local
48 if (is == null) {
51 zis = new ZipInputStream(is);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Identity2Test.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
151 IdentitySubclass is; local
154 is = new IdentitySubclass(str[i]);
155 assertNotNull(is);
156 assertTrue(is instanceof Identity);
172 IdentitySubclass is; local
176 is = new IdentitySubclass(str[i], new IdentityScopeSubclass());
177 assertNotNull(is);
178 assertTrue(is instanceof Identity)
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory1Test.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
78 NotSupportMsg = defaultType.concat(" is not supported"); }
105 * Assertion: returns CertificateFactory if type is X.509
122 * throws NullPointerException when type is null
123 * throws CertificateException when type is not available
128 fail("NullPointerException or CertificateException must be thrown when type is null");
144 * Assertion: throws IllegalArgumentException when provider is null or empty
156 fail("IllegalArgumentException must be thrown when provider is null");
161 fail("IllegalArgumentException must be thrown when provider is empty")
350 InputStream is = new ByteArrayInputStream(bb); local
441 ByteArrayInputStream is; local
547 ByteArrayInputStream is = new ByteArrayInputStream(arr); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/
Utils.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
169 public static void copyStream(InputStream is, OutputStream os, int bufferSize)
171 if (is != null && os != null) {
174 while ((bytesRead = is.read(buffer)) >= 0) {
180 public static void safeCloseStream(InputStream is) {
181 if (is != null) {
183 is.close();
209 // With calling identity cleared the current user is the foreground user.
242 // With calling identity cleared the current user is the foreground user
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasLoadAttachment.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
79 // The account is loaded before performOperation but it is not guaranteed to be available
93 // loadAttachmentStatus is mart of IEmailService interface.
102 * Helper class that is passed to other objects to perform callbacks for us.
199 LogUtils.wtf(LOG_TAG, "Error, mAttachment is null");
204 // The operation is different in EAS 14.0 than in earlier versions
223 LogUtils.wtf(LOG_TAG, "Error, mAttachment is null");
273 * @return A status code, 0 is a success, anything negative is an error outlined by constant
307 final InputStream is = response.getInputStream(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
UriImage.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
100 InputStream is = mApplication.getContentResolver() local
102 mRotation = Exif.getOrientation(is);
103 Utils.closeSilently(is);
123 InputStream is = new FileInputStream(mCacheEntry.cacheFile); local
124 mRotation = Exif.getOrientation(is);
125 Utils.closeSilently(is);
166 // This is only reached for STATE_INIT->STATE_DOWNLOADING
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sundry.py 31 import distutils.command.bdist_msi # if msi module is not build namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sundry.py 31 import distutils.command.bdist_msi # if msi module is not build namespace
  /system/core/libpixelflinger/codeflinger/tinyutils/
VectorImpl.cpp 11 * distributed under the License is distributed on an "AS IS" BASIS,
67 // We can't call _do_destroy() here because the vtable is already gone.
502 const size_t is = itemSize(); local
505 ssize_t err = add( reinterpret_cast<const char*>(buffer) + i*is );
  /ndk/build/core/
definitions.mk 10 # distributed under the License is distributed on an "AS IS" BASIS,
50 $(call __ndk_error, Assertion failure: $(__varname) is not defined)\
65 $(call __ndk_info, Required variable $(__varname) is not defined by $2)\
87 # ':' if ndk-build is called inside jni/ directory when path is expanded
105 # This is used to enforce a call to host-mkdir.
129 # Rationale: When there is a very large number of objects and/or libraries at
132 # @<listfile> syntax, where <listfile> is the path of a file
135 # This function is used to generate such a list file from a lon
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/commons/commons-exec/1.2/
commons-exec-1.2.jar 

Completed in 624 milliseconds

<<11121314151617181920>>