HomeSort by relevance Sort by last modified time
    Searched full:uninitialized (Results 201 - 225 of 2350) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
diagnostic.def 22 kind specified. I.e. they're uninitialized. Within the diagnostic
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
diagnostic.def 22 kind specified. I.e. they're uninitialized. Within the diagnostic
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
diagnostic.def 22 kind specified. I.e. they're uninitialized. Within the diagnostic
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
diagnostic.def 22 kind specified. I.e. they're uninitialized. Within the diagnostic
  /system/security/keystore/include/keystore/
keystore.h 32 UNINITIALIZED = STATE_UNINITIALIZED, // 3
  /external/chromium_org/third_party/tcmalloc/chromium/src/
linux_shadow_stacks.cc 23 enum Status {UNINITIALIZED = -1, DISABLED, ENABLED};
24 Status status = UNINITIALIZED;
36 if (status == UNINITIALIZED) {
  /external/clang/test/Misc/
serialized-diags-single-issue.c 13 // CHECK: {{.*}}serialized-diags-single-issue.c:3:12: warning: variable 'voodoo' is uninitialized when used here [-Wuninitialized] [Semantic Issue]
24 // CHECK-MULT: {{.*}}serialized-diags-single-issue.c:3:12: warning: variable 'voodoo' is uninitialized when used here [-Wuninitialized]
30 // CHECK-MULT: {{.*}}serialized-diags-single-issue.c:3:12: warning: variable 'voodoo' is uninitialized when used here [-Wuninitialized]
  /external/compiler-rt/include/sanitizer/
msan_interface.h 44 /* Make memory region fully uninitialized (without changing its contents). */
47 /* Make memory region partially uninitialized (without changing its contents).
83 Memory will be marked uninitialized, with origin at the call site. */
  /external/compiler-rt/lib/msan/
msan_report.cc 98 Report(" WARNING: MemorySanitizer: use-of-uninitialized-value\n");
104 ReportSummary("use-of-uninitialized-value", stack);
110 Printf(" WARNING: Expected use of uninitialized value not found\n");
  /packages/apps/Mms/src/com/android/mms/model/
LayoutModel.java 84 throw new IllegalStateException("Root-Layout uninitialized.");
93 throw new IllegalStateException("Root-Layout uninitialized.");
191 throw new IllegalStateException("Root-Layout uninitialized.");
  /external/clang/docs/
MemorySanitizer.rst 11 MemorySanitizer is a detector of uninitialized reads. It consists of a
61 ==30106== WARNING: MemorySanitizer: UMR (uninitialized-memory-read)
89 to disable uninitialized checks in a particular function.
101 checks for certain source files and functions. All "Use of uninitialized value"
118 ==14425== WARNING: MemorySanitizer: UMR (uninitialized-memory-read)
  /external/llvm/cmake/
config-ix.cmake 316 # Disable gcc's potentially uninitialized use analysis as it presents lots of
319 check_cxx_compiler_flag("-Wmaybe-uninitialized" HAS_MAYBE_UNINITIALIZED)
324 # and -Wmaybe-uninitialized. If -Wmaybe-uninitialized isn't supported, just
325 # turn off all uninitialized use warnings.
  /external/v8/src/
type-info.cc 85 return code->is_inline_cache_stub() && code->ic_state() == UNINITIALIZED;
311 case CompareIC::UNINITIALIZED:
312 // Uninitialized means never executed.
313 return TypeInfo::Uninitialized();
390 case BinaryOpIC::UNINITIALIZED:
391 // Uninitialized means never executed.
392 return TypeInfo::Uninitialized();
395 case BinaryOpIC::UNINITIALIZED:
439 case CompareIC::UNINITIALIZED:
440 // Uninitialized means never executed
    [all...]
ic.cc 45 case UNINITIALIZED: return '0';
257 // JavaScript builtins, we return uninitialized as the state to
260 return UNINITIALIZED;
301 old_state == UNINITIALIZED || old_state == PREMONOMORPHIC;
303 new_state == UNINITIALIZED || new_state == PREMONOMORPHIC;
370 if (state == UNINITIALIZED) return;
381 if (target->ic_state() == UNINITIALIZED) return;
390 if (target->ic_state() == UNINITIALIZED) return;
396 if (target->ic_state() == UNINITIALIZED) return;
405 if (target->ic_state() == UNINITIALIZED) return
    [all...]
type-info.h 53 // Uninitialized.
77 static TypeInfo Uninitialized() { return TypeInfo(kUninitialized); }
188 case kUninitialized: return "Uninitialized";
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
suggest_apps_dialog.js 85 this.state_ = SuggestAppsDialog.State.UNINITIALIZED;
101 UNINITIALIZED: 'SuggestAppsDialog.State.UNINITIALIZED',
230 if (this.state_ != SuggestAppsDialog.State.UNINITIALIZED) {
259 this.state_ = SuggestAppsDialog.State.UNINITIALIZED;
348 if (this.state_ !== SuggestAppsDialog.State.UNINITIALIZED &&
490 this.state_ = SuggestAppsDialog.State.UNINITIALIZED;
  /frameworks/base/core/java/android/app/
ApplicationErrorReport.java 41 * <li> {@link #TYPE_NONE} uninitialized instance of {@link ApplicationErrorReport}.
62 * Uninitialized error report.
146 * Create an uninitialized instance of {@link ApplicationErrorReport}.
321 * Create an uninitialized instance of CrashInfo.
425 * Create an uninitialized instance of AnrInfo.
484 * Create an uninitialized instance of BatteryInfo.
535 * Create an uninitialized instance of RunningServiceInfo.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/optional/
optional.hpp 212 // Creates an optional<T> uninitialized.
218 // Creates an optional<T> uninitialized.
311 // Assigns from "none", destroying the current value, if any, leaving this UNINITIALIZED
327 // Destroys the current value, if any, leaving this UNINITIALIZED
426 // It it happens, THIS will be left uninitialized.
516 // Creates an optional<T> uninitialized.
520 // Creates an optional<T> uninitialized.
528 // Creates an optional<T> initialized with 'val' IFF cond is true, otherwise creates an uninitialized optional.
571 // Basic Guarantee: If the resolved T ctor throws, this is left UNINITIALIZED
584 // Basic Guarantee: If T::T( U const& ) throws, this is left UNINITIALIZED
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStore4Test.java 32 KeyStore uninitialized; field in class:KeyStore4Test
50 uninitialized = KeyStore.getInstance(KEY_STORE_TYPE);
213 uninitialized.getKey("keyalias", null);
258 uninitialized.getCertificateAlias(TestKeyStoreSpi.CERT);
337 uninitialized.store(null, null);
436 uninitialized.store(null);
  /dalvik/vm/analysis/
CodeVerify.h 112 * pointer to the ClassObject, and for uninitialized references it holds
145 * Table that maps uninitialized instances to classes, based on the
186 * Uninitialized instance map, used for tracking the movement of
  /external/chromium_org/v8/src/
type-info.h 53 // Uninitialized.
77 static TypeInfo Uninitialized() { return TypeInfo(kUninitialized); }
188 case kUninitialized: return "Uninitialized";
  /external/ceres-solver/internal/ceres/
array_utils.h 35 // 1. Uninitialized memory - where the user for some reason did not
  /external/chromium/base/threading/
thread_local_storage.h 34 // It returns an uninitialized Slot.
  /external/chromium/chrome/browser/
browser_shutdown.h 18 // an uninitialized value
gpu_data_manager.h 38 // uninitialized. Caller is responsible for deleting the returned value.

Completed in 325 milliseconds

1 2 3 4 5 6 7 891011>>