HomeSort by relevance Sort by last modified time
    Searched full:stored (Results 851 - 875 of 8246) sorted by null

<<31323334353637383940>>

  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 63 * Zip entry state: Stored.
65 public static final int STORED = 0;
124 * @return the compression method, either {@code DEFLATED}, {@code STORED}
234 * Sets the compression method for this entry to either {@code DEFLATED} or {@code STORED}.
236 * set automatically, and the entry's data to be compressed. If you switch to {@code STORED}
241 * when value is not {@code DEFLATED} or {@code STORED}.
244 if (value != STORED && value != DEFLATED) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 251 * if it is a subset of the bitmap stored at uri. Otherwise returns
299 * Returns the bounds of the bitmap stored at a given Url.
341 * smaller than maxSideLength. The Bitmap's original dimensions are stored
347 * @param originalBounds If not null, set to the actual bounds of the stored bitmap.
356 // Get width and height of stored bitmap
392 * smaller than maxSideLength. The Bitmap's original dimensions are stored
400 * @param originalBounds set to the actual bounds of the stored bitmap.
  /external/clang/test/Analysis/
objc-arc.m 119 id x = [NSObject alloc]; // expected-warning {{Value stored to 'x' during its initialization is never read}}
523 // CHECK-NEXT: <string>Object leaked: object allocated and stored into &apos;date&apos; is not referenced later in this execution path and has a retain count of +1</string>
525 // CHECK-NEXT: <string>Object leaked: object allocated and stored into &apos;date&apos; is not referenced later in this execution path and has a retain count of +1</string>
528 // CHECK-NEXT: <key>description</key><string>Potential leak of an object stored into &apos;date&apos;</string>
581 // CHECK-NEXT: <string>Value stored to &apos;x&apos; during its initialization is never read</string>
583 // CHECK-NEXT: <string>Value stored to &apos;x&apos; during its initialization is never read</string>
586 // CHECK-NEXT: <key>description</key><string>Value stored to &apos;x&apos; during its initialization is never read</string>
639 // CHECK-NEXT: <string>Value stored to &apos;obj1&apos; during its initialization is never read</string>
641 // CHECK-NEXT: <string>Value stored to &apos;obj1&apos; during its initialization is never read</string>
644 // CHECK-NEXT: <key>description</key><string>Value stored to &apos;obj1&apos; during its initialization is never read</string
    [all...]
  /external/ceres-solver/examples/
libmv_bundle_adjuster.cc 29 // order bytes of float values are stored in. This information is provided
32 // - V, which means values in the file are stored with big endian type
33 // - v, which means values in the file are stored with little endian type
36 // - Space in which markers' coordinates are stored in
80 // stored in image space and camera intrinsics will not be refined if markers
87 // There're existing problem files dumped from blender stored in folder
291 LOG(FATAL) << "Problem file is stored in unknown endian type.";
384 LOG(FATAL) << "Problem file contains markers stored in unknown space.";
811 // Namely, if problem has got markers stored in image (pixel)
813 // stored in normalized space, and refine_intrinsics is no
    [all...]
  /external/chromium_org/third_party/zlib/
infback.c 254 unsigned copy; /* number of stored or match bytes to copy */
294 case 0: /* stored block */
295 Tracev((stderr, "inflate: stored block%s\n",
297 state->mode = STORED;
317 case STORED:
318 /* get and verify stored block length */
322 strm->msg = (char *)"invalid stored block lengths";
327 Tracev((stderr, "inflate: stored length %u\n",
331 /* copy stored block from input to output */
345 Tracev((stderr, "inflate: stored end\n"))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
BuildResults.java 121 * or <code>null</code> if no comment was stored for it.
128 * Return the number of stored values for the default dimension
130 * @return the number of stored values for the default dimension
140 * Return the number of stored values for the given dimension.
143 * @return the number of stored values for the given dimension
230 * Returns whether the current build had several values stored in database.
258 * @return the error of the measures stored for the default dimension
270 * @return the error of the measures stored for the given dimension
289 * Return the value of the performance result stored
302 * Return the value of the performance result stored
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
infback.c 254 unsigned copy; /* number of stored or match bytes to copy */
294 case 0: /* stored block */
295 Tracev((stderr, "inflate: stored block%s\n",
297 state->mode = STORED;
317 case STORED:
318 /* get and verify stored block length */
322 strm->msg = (char *)"invalid stored block lengths";
327 Tracev((stderr, "inflate: stored length %u\n",
331 /* copy stored block from input to output */
345 Tracev((stderr, "inflate: stored end\n"))
    [all...]
  /external/zlib/src/contrib/infback9/
infback9.c 238 unsigned long copy; /* number of stored or match bytes to copy */
286 case 0: /* stored block */
287 Tracev((stderr, "inflate: stored block%s\n",
289 mode = STORED;
312 case STORED:
313 /* get and verify stored block length */
317 strm->msg = (char *)"invalid stored block lengths";
322 Tracev((stderr, "inflate: stored length %lu\n",
326 /* copy stored block from input to output */
340 Tracev((stderr, "inflate: stored end\n"))
    [all...]
  /external/zlib/src/
infback.c 263 unsigned copy; /* number of stored or match bytes to copy */
303 case 0: /* stored block */
304 Tracev((stderr, "inflate: stored block%s\n",
306 state->mode = STORED;
326 case STORED:
327 /* get and verify stored block length */
331 strm->msg = (char *)"invalid stored block lengths";
336 Tracev((stderr, "inflate: stored length %u\n",
340 /* copy stored block from input to output */
354 Tracev((stderr, "inflate: stored end\n"))
    [all...]
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 21 * matrices and vectors stored in float arrays.
23 * Matrices are 4 x 4 column-vector matrices stored in column-major
31 * Vectors are 4 x 1 column vectors stored in order:
62 * stored.
64 * @param lhsOffset The offset into the lhs array where the lhs is stored
66 * @param rhsOffset The offset into the rhs array where the rhs is stored.
85 * vector is stored.
87 * @param lhsMatOffset The offset into the lhs array where the lhs is stored
90 * is stored.
108 * stored
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
Preferences.java 30 * specific to the user. {@code Preferences} hierarchy trees and data are stored
229 * case, if there is no value mapped to the given key, the stored default
256 * case, if there is no value mapped to the given key, the stored default
285 * case, if there is no value mapped to the given key, the stored default
313 * case, if there is no value mapped to the given key, the stored default
342 * case, if there is no value mapped to the given key, the stored default
371 * case, if there is no value mapped to the given key, the stored default
399 * case, if there is no value mapped to the given key, the stored default
456 * Returns all preference keys stored in this node or an empty array if no
601 * The value is stored in its string form, which is the result of invokin
    [all...]
  /external/aac/libFDK/include/
fixpoint_math.h 261 * \param result_e pointer to an INT where the exponent of the result is stored into
294 * \param result_e pointer to an INT where the exponent of the result is stored into
321 * \param result_e pointer to a INT where the exponent of the result will be stored into
341 * \param result_e pointer to a INT where the exponent of the result will be stored into
372 * \param result_e pointer to a INT where the exponent of the result will be stored into.
382 * \param result_e pointer to a INT where the exponent of the result will be stored into
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_codec_unittest.cc 128 // Computed and stored checksums should be empty.
136 // Computed and stored checksums should not be empty and should be equal.
165 // Computed and stored checksums should be empty.
175 // Computed and stored checksums should not be empty.
179 // Stored checksum should be as expected.
417 // way meta info is stored.
  /external/chromium_org/sandbox/win/src/
policy_engine_opcodes.h 123 // arguments but one are stored in objects of this class. Use OpcodeFactory
152 // Retrieves a stored argument by index. Valid index values are
160 // Sets a stored argument by index. Valid index values are
171 // index: the stored string index. Valid values are from 0
191 // Returns the stored options such as kPolNegateEval and others.
196 // Sets the stored options such as kPolNegateEval.
  /external/chromium_org/third_party/mesa/src/docs/
dispatch.html 22 object, every enable, and much, much more is stored in the context. Since
114 The pointer is also stored in a per-thread location via
116 become multithreaded, <tt>NULL</tt> is stored in <tt>_glapi_Dispatch</tt>.</p>
142 <p>The dispatch table pointer is stored in a new variable called
252 stored in <tt>src/mesa/glapi/glprocs.h</tt>. For different reasons on
258 stored for every function. The location of the function can instead be
  /external/clang/include/clang/Sema/
Template.h 46 /// \brief The template argument lists, stored from the innermost template
208 /// set of instantiated parameters. This is stored as a DeclArgumentPack
291 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored =
294 Stored = I->second.get<Decl *>();
298 Stored = NewPack;
431 // will be stored in LA.
  /external/eigen/Eigen/src/Core/util/
Constants.h 17 * stored in some runtime variable.
35 * an expression type, implemented as enum's. They are not stored in memory at runtime, and they do not incur any
380 * Enum used to specify how a particular transformation is stored in a matrix.
385 /** Transformation is an affine transformation stored as a (Dim+1)^2 matrix whose last row is
388 /** Transformation is an affine transformation stored as a (Dim) x (Dim+1) matrix. */
390 /** Transformation is a general projective transformation stored as a (Dim+1)^2 matrix. */
  /external/mesa3d/docs/
dispatch.html 22 object, every enable, and much, much more is stored in the context. Since
114 The pointer is also stored in a per-thread location via
116 become multithreaded, <tt>NULL</tt> is stored in <tt>_glapi_Dispatch</tt>.</p>
142 <p>The dispatch table pointer is stored in a new variable called
252 stored in <tt>src/mesa/glapi/glprocs.h</tt>. For different reasons on
258 stored for every function. The location of the function can instead be
  /frameworks/base/services/java/com/android/server/
PackageManagerBackupAgent.java 58 // is stored using the package name as a key)
129 // If the stored version string differs, we need to re-backup all
146 * String incremental -- the incremental release name of the OS stored in
155 if (DEBUG) Slog.v(TAG, "Global metadata key already stored");
369 // The state file is just the list of app names we have stored signatures for
410 // by the time we get here we know we've stored the global metadata record
  /libcore/luni/src/main/java/java/security/
KeyStoreSpi.java 160 * Returns an {@code Enumeration} over all alias names stored in this
163 * @return an {@code Enumeration} over all alias names stored in this
178 * Returns the number of entries stored in this {@code KeyStoreSpi}.
180 * @return the number of entries stored in this {@code KeyStoreSpi}.
261 * Utilizes the given password to verify the stored data.
267 * the password to verify the stored data, maybe {@code null}.
  /packages/apps/Camera2/src/com/android/camera/crop/
ImageLoader.java 224 * Returns the bounds of the bitmap stored at a given Url.
264 * smaller than maxSideLength. The Bitmap's original dimensions are stored
270 * @param originalBounds If not null, set to the actual bounds of the stored bitmap.
279 // Get width and height of stored bitmap
315 * smaller than maxSideLength. The Bitmap's original dimensions are stored
323 * @param originalBounds set to the actual bounds of the stored bitmap.
  /external/bluetooth/bluedroid/bta/fs/
bta_fs_ci.c 170 ** Parameters p_sess_info - the stored session ID and related information.
172 ** ssn - the stored session sequence number.
173 ** info - the stored BTA specific information (like last active operation).
  /external/chromium/chrome/browser/password_manager/
password_form_manager_unittest.cc 88 // are going to match the stored entry in the db.
134 // stored, but a new password. Note that the observed form may have different
151 // are going to match the stored entry in the db. (This verifies correct
  /external/chromium/chrome/browser/resources/options/
autofill_options_list.js 34 // The stored label.
67 // The stored label.
107 // The stored value.
  /external/chromium_org/base/
cancelable_callback.h 122 // The stored closure that may be cancelled.
192 // The stored closure that may be cancelled.
262 // The stored closure that may be cancelled.

Completed in 1836 milliseconds

<<31323334353637383940>>