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

1 2 3 4 5 6 7 891011>>

  /frameworks/base/wifi/java/android/net/wifi/
SupplicantState.java 155 UNINITIALIZED,
170 return state != UNINITIALIZED && state != INVALID;
189 case UNINITIALIZED:
212 case UNINITIALIZED:
235 case UNINITIALIZED:
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 265 * {@code >= -1;} for an uninitialized type, bytecode index that this
267 * was an incoming uninitialized instance; {@code -1} if this
293 * this type, if this instance is in fact an uninitialized type
486 * Constructs an instance corresponding to an "uninitialized type."
801 * Gets whether this type represents an uninitialized instance. An
802 * uninitialized instance is what one gets back from the {@code new}
803 * opcode, and remains uninitialized until a valid constructor is
806 * @return whether this type is "uninitialized"
813 * Gets the bytecode index at which this uninitialized type was
815 * type is an uninitialized incoming parameter (i.e., th
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 249 * {@code >= -1;} for an uninitialized type, bytecode index that this
251 * was an incoming uninitialized instance; {@code -1} if this
277 * this type, if this instance is in fact an uninitialized type
419 * Constructs an instance corresponding to an "uninitialized type."
734 * Gets whether this type represents an uninitialized instance. An
735 * uninitialized instance is what one gets back from the {@code new}
736 * opcode, and remains uninitialized until a valid constructor is
739 * @return whether this type is "uninitialized"
746 * Gets the bytecode index at which this uninitialized type was
748 * type is an uninitialized incoming parameter (i.e., th
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 250 * {@code >= -1;} for an uninitialized type, bytecode index that this
252 * was an incoming uninitialized instance; {@code -1} if this
278 * this type, if this instance is in fact an uninitialized type
420 * Constructs an instance corresponding to an "uninitialized type."
735 * Gets whether this type represents an uninitialized instance. An
736 * uninitialized instance is what one gets back from the {@code new}
737 * opcode, and remains uninitialized until a valid constructor is
740 * @return whether this type is "uninitialized"
747 * Gets the bytecode index at which this uninitialized type was
749 * type is an uninitialized incoming parameter (i.e., th
    [all...]
  /external/clang/test/Analysis/
NewDelete-checker-test.cpp 230 //============== Test Uninitialized delete delete[]========================
235 delete x; // expected-warning{{Argument to 'delete' is uninitialized}}
242 delete[] x; // expected-warning{{Argument to 'delete[]' is uninitialized}}
247 free(x); // expected-warning{{Function call argument is an uninitialized value}}
252 delete x; // expected-warning{{Argument to 'delete' is uninitialized}}
258 delete[] x; // expected-warning{{Argument to 'delete[]' is uninitialized}}
uninit-msg-expr.m 44 return [aString length]; // expected-warning {{Receiver in message expression is an uninitialized value}}
55 [aArray addObject:aString]; // expected-warning {{Argument in message expression is an uninitialized value}}
uninit-vals-ps.c 17 return bar(x)+1; // expected-warning{{Function call argument is an uninitialized value}}
87 // flag a "return of uninitialized value" warning in the first branch due to
blocks.m 79 // test2 - Test that captured variables that are uninitialized are flagged
84 ^{ y = x + 1; }(); // expected-warning{{Variable 'x' is uninitialized when captured by block}}
95 myblock f = ^() { f(); }; // expected-warning{{Variable 'f' is uninitialized when captured by block}}
120 // uninitialized when captured by the exterior block (when it is only
  /art/runtime/verifier/
reg_type_test.cc 396 // Tests creating types uninitialized types from unresolved types.
405 // Create an uninitialized type of this unresolved type
406 const RegType& unresolved_unintialised = cache.Uninitialized(ref_type, 1101ull);
410 // Create an uninitialized type of this unresolved type with different PC
411 const RegType& ref_type_unresolved_unintialised_1 = cache.Uninitialized(ref_type, 1102ull);
414 // Create an uninitialized type of this unresolved type with the same PC
415 const RegType& unresolved_unintialised_2 = cache.Uninitialized(ref_type, 1101ull);
428 const RegType& resolved_unintialiesd = cache.Uninitialized(resolved_ref, 10);
429 const RegType& unresolved_unintialized = cache.Uninitialized(unresolved_ref, 12);
436 expected ="Uninitialized Reference: java.lang.String Allocation PC: 10"
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCAtSyncChecker.cpp 44 // Uninitialized value used for the mutex?
48 BT_undef.reset(new BuiltinBug(this, "Uninitialized value used as mutex "
UndefResultChecker.cpp 44 // Do not report assignments of uninitialized values inside swap functions.
45 // This should allow to swap partially uninitialized structs
  /external/clang/test/CodeGen/
tls-model.c 19 // Note that unlike normal C uninitialized global variables,
20 // uninitialized TLS variables do NOT have COMMON linkage.
  /external/clang/test/CodeGenCXX/
static-data-member.cpp 71 // CHECK-NEXT: [[UNINITIALIZED:%.*]] = icmp eq i8 [[GUARDBYTE]], 0
72 // CHECK-NEXT: br i1 [[UNINITIALIZED]]
  /external/clang/test/SemaCXX/
dcl_init_aggr.cpp 79 int &j; // expected-note{{uninitialized reference member is here}}
83 HasReference r2 = { 1 } ; // expected-error{{reference member of type 'int &' uninitialized}}
  /external/compiler-rt/test/msan/
check_mem_is_initialized.cc 26 // CHECK: WARNING: MemorySanitizer: use-of-uninitialized-value
29 // CHECK-ORIGINS: Uninitialized value was created by a heap allocation
use-after-free.cc 27 // CHECK: WARNING: MemorySanitizer: use-of-uninitialized-value
30 // CHECK-ORIGINS: Uninitialized value was created by a heap deallocation
  /external/dhcpcd-6.8.2/
Android.mk 77 # Compiler complains about possibly uninitialized variables in rpc-dbus.c.
78 LOCAL_CFLAGS += -Wno-maybe-uninitialized
  /external/protobuf/src/google/protobuf/stubs/
once.cc 73 // - UNINITIALIZED: We are the first thread calling this function.
76 // First, try to change the state from UNINITIALIZED to EXECUTING_CLOSURE
  /prebuilts/go/darwin-x86/src/time/
sleep.go 59 panic("time: Stop called on uninitialized Timer")
85 panic("time: Reset called on uninitialized Timer")
  /prebuilts/go/linux-x86/src/time/
sleep.go 59 panic("time: Stop called on uninitialized Timer")
85 panic("time: Reset called on uninitialized Timer")
  /toolchain/binutils/binutils-2.25/include/nlm/
i386-ext.h 60 /* The size of the uninitialized data region that the loader is to be
61 allocated at load time. Uninitialized data follows the initialized
sparc32-ext.h 64 /* The size of the uninitialized data region that the loader is to be
65 allocated at load time. Uninitialized data follows the initialized
  /art/compiler/dex/quick/
dex_file_to_method_inliner_map.cc 53 // from using the uninitialized inliner. This requires explicit calls to
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArray.java 60 * Replaces all the occurrences of the given uninitialized type in
106 * if the given local is uninitialized / invalid.
116 * be an uninitialized instance).
133 * contains an uninitialized instance; (c) the local contains a
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/
Signature_Impl1Test.java 64 assertEquals("toString() failed", "SIGNATURE ABC state: UNINITIALIZED",

Completed in 1042 milliseconds

1 2 3 4 5 6 7 891011>>