HomeSort by relevance Sort by last modified time
    Searched refs:valid (Results 1 - 25 of 3361) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2006-09-11-BitfieldRefCrash.c 6 unsigned valid : 2; member in struct:state_struct
10 return p->valid;
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractSelectionKey.java 50 private volatile boolean valid = true; field in class:AbstractSelectionKey
53 return valid;
57 valid = false;
71 if (valid) {
72 valid = false;
  /external/linux-kselftest/tools/testing/selftests/sync/
sync_alloc.c 34 int timeline, valid; local
37 valid = sw_sync_timeline_is_valid(timeline);
38 ASSERT(valid, "Failure allocating timeline\n");
46 int timeline, fence, valid; local
49 valid = sw_sync_timeline_is_valid(timeline);
50 ASSERT(valid, "Failure allocating timeline\n");
53 valid = sw_sync_fence_is_valid(fence);
54 ASSERT(valid, "Failure allocating fence\n");
sync_merge.c 34 int fence, valid, merged; local
37 valid = sw_sync_timeline_is_valid(timeline);
38 ASSERT(valid, "Failure allocating timeline\n");
41 valid = sw_sync_fence_is_valid(fence);
42 ASSERT(valid, "Failure allocating fence\n");
45 valid = sw_sync_fence_is_valid(fence);
46 ASSERT(valid, "Failure merging fence\n");
  /external/google-breakpad/src/google_breakpad/processor/
dump_object.h 42 bool valid() const { return valid_; } function in class:google_breakpad::DumpObject
45 // DumpObjects are not valid when created. When a subclass populates its own
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
AbstractFsObject.java 37 * Remembers if this object still valid.
39 private boolean valid; field in class:AbstractFsObject
42 * Creates a new instance of {@code AbstractFsObject} which will be valid
48 this.valid = true;
61 return this.valid;
71 this.valid = false;
75 * Convience method to check if this object is still valid and throw an
85 this + " is not valid");
90 * writable if it is both, valid and not read-only.
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/utils/
CachedSupplier.java 55 * Is the current data in {@link #cached} valid?
57 private boolean valid; field in class:CachedSupplier
69 valid = false;
80 if (!valid) {
82 valid = true;
93 valid = false;
107 valid = true;
111 * Checks if the contents of the cache are valid.
113 * @return are there valid contents in the cache?
116 return valid;
    [all...]
CachedFileContents.java 30 * some related information). It can then be used to check if the contents are still valid at some
108 * Are the cached contents still valid? If this method determines that the file has been
111 * @return are the cached contents still valid? If this method returns {@code false}, the
115 boolean valid = true;
118 valid = false;
121 if (valid && file.lastModified() != lastClosed) {
122 valid = false;
125 if (valid && file.length() != size) {
126 valid = false;
129 if (valid && !Objects.equal(hash, hashFile()))
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
OldAlgorithmParameterGeneratorTest.java 29 int[] valid = {512, 576, 640, 960, 1024}; local
33 for (int i = 0; i < valid.length; i++) {
35 gen.init(valid[i]);
37 fail("Exception should not be thrown for valid parameter" + valid[i]);
47 int[] valid = {512, 576, 640, 960, 1024}; local
51 for (int i = 0; i < valid.length; i++) {
53 gen.init(valid[i], new SecureRandom());
54 gen.init(valid[i], null);
56 fail("Exception should not be thrown for valid parameter" + valid[i])
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
cr-err.l 2 .*:[0-9]+: Error: .\(%cr0\). is not a valid base/index expression
3 .*:[0-9]+: Error: .\(%cr7\). is not a valid base/index expression
4 .*:[0-9]+: Error: .\(%cr8\). is not a valid base/index expression
5 .*:[0-9]+: Error: .\(%cr15\). is not a valid base/index expression
6 .*:[0-9]+: Error: .\(%db0\). is not a valid base/index expression
7 .*:[0-9]+: Error: .\(%db7\). is not a valid base/index expression
8 .*:[0-9]+: Error: .\(%dr0\). is not a valid base/index expression
9 .*:[0-9]+: Error: .\(%dr7\). is not a valid base/index expression
10 .*:[0-9]+: Error: .\(%tr0\). is not a valid base/index expression
11 .*:[0-9]+: Error: .\(%tr7\). is not a valid base/index expressio
    [all...]
iamcu-inval-2.l 2 .*:2: Fatal error: `.sse4.1' isn't valid for Intel MCU
iamcu-inval-3.l 2 Fatal error: `sse4' isn't valid for Intel MCU
  /external/freetype/src/otvalid/
otvgpos.h 28 OTV_Validator valid );
  /external/syslinux/com32/hdt/
hdt-dump-acpi.c 85 char valid[8]={0}; local
86 snprintf(valid,sizeof(valid),"%s","false");
87 if (acpi->rsdt.valid) {
88 snprintf(valid,sizeof(valid),"%s","true");
92 add_as("acpi.rsdt.is_valid",valid)
95 if (acpi->rsdt.valid==false) {
105 char valid[8]={0}; local
106 snprintf(valid,sizeof(valid),"%s","false")
125 char valid[8]={0}; local
145 char valid[8]={0}; local
165 char valid[8]={0}; local
185 char valid[8]={0}; local
205 char valid[8]={0}; local
225 char valid[8]={0}; local
245 char valid[8]={0}; local
265 char valid[8]={0}; local
286 char valid[8]={0}; local
306 char valid[8]={0}; local
326 char valid[8]={0}; local
346 char valid[8]={0}; local
380 char valid[8]={0}; local
    [all...]
  /external/libcxx/test/std/thread/futures/futures.shared_future/
copy_assign.pass.cpp 36 assert(f0.valid());
37 assert(f.valid());
44 assert(!f0.valid());
45 assert(!f.valid());
53 assert(f0.valid());
54 assert(f.valid());
61 assert(!f0.valid());
62 assert(!f.valid());
70 assert(f0.valid());
71 assert(f.valid());
    [all...]
copy_ctor.pass.cpp 35 assert(f0.valid());
36 assert(f.valid());
42 assert(!f0.valid());
43 assert(!f.valid());
50 assert(f0.valid());
51 assert(f.valid());
57 assert(!f0.valid());
58 assert(!f.valid());
65 assert(f0.valid());
66 assert(f.valid());
    [all...]
default.pass.cpp 25 assert(!f.valid());
29 assert(!f.valid());
33 assert(!f.valid());
  /external/libcxx/test/std/thread/futures/futures.unique_future/
default.pass.cpp 25 assert(!f.valid());
29 assert(!f.valid());
33 assert(!f.valid());
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
v4l2_validator.c 29 int valid = 0; local
57 valid = 1;
59 valid = 0;
61 return valid;
66 int valid = 0; local
74 valid = 1;
76 valid = 0;
78 return valid;
88 int valid = 1; local
97 valid = 0
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.shared_future/
copy_assign.pass.cpp 36 assert(f0.valid());
37 assert(f.valid());
44 assert(!f0.valid());
45 assert(!f.valid());
53 assert(f0.valid());
54 assert(f.valid());
61 assert(!f0.valid());
62 assert(!f.valid());
70 assert(f0.valid());
71 assert(f.valid());
    [all...]
copy_ctor.pass.cpp 35 assert(f0.valid());
36 assert(f.valid());
42 assert(!f0.valid());
43 assert(!f.valid());
50 assert(f0.valid());
51 assert(f.valid());
57 assert(!f0.valid());
58 assert(!f.valid());
65 assert(f0.valid());
66 assert(f.valid());
    [all...]
default.pass.cpp 25 assert(!f.valid());
29 assert(!f.valid());
33 assert(!f.valid());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.unique_future/
default.pass.cpp 25 assert(!f.valid());
29 assert(!f.valid());
33 assert(!f.valid());
  /external/freetype/src/gxvalid/
gxvalid.h 46 FT_Validator valid );
52 FT_Validator valid );
58 FT_Validator valid );
63 FT_Validator valid );
68 FT_Validator valid );
73 FT_Validator valid );
78 FT_Validator valid );
84 FT_Validator valid );
89 FT_Validator valid );
94 FT_Validator valid );
    [all...]
  /system/chre/apps/chqts/src/general_test/
cell_info_tdscdma.cc 22 bool valid = false; local
40 valid = true;
43 return valid;
48 bool valid = false; local
54 valid = true;
57 return valid;

Completed in 438 milliseconds

1 2 3 4 5 6 7 8 91011>>