| /external/Microsoft-GSL/include/gsl/ |
| gsl | 59 // not_null 73 class not_null 79 constexpr not_null(U&& u) : ptr_(std::forward<U>(u)) 85 constexpr not_null(const not_null<U>& other) : not_null(other.get()) 89 not_null(const not_null& other) = default; 90 not_null& operator=(const not_null& other) = default [all...] |
| /external/llvm/test/CodeGen/X86/ |
| implicit-null-check-negative.ll | 11 ; It isn't legal to move the load from %x from "not_null" to here -- 13 br i1 %c, label %is_null, label %not_null, !make.implicit !0 18 not_null: 27 br i1 %c, label %is_null, label %not_null, !make.implicit !0 32 not_null: 44 br i1 %c, label %is_null, label %not_null 49 not_null: 58 br i1 %c, label %is_null, label %not_null, !make.implicit !0 63 not_null: 84 br i1 %c, label %is_null, label %not_null, !make.implicit ! [all...] |
| implicit-null-checks.mir | 10 br i1 undef, label %is_null, label %not_null, !make.implicit !0 15 not_null: 29 br i1 undef, label %is_null, label %not_null, !make.implicit !0 34 not_null: 48 br i1 undef, label %is_null, label %not_null, !make.implicit !0 53 not_null: 67 br i1 undef, label %is_null, label %not_null, !make.implicit !0 72 not_null: 97 # CHECK-NEXT: JMP_1 %bb.1.not_null 101 successors: %bb.3.is_null, %bb.1.not_null [all...] |
| implicit-null-check.ll | 24 br i1 %c, label %is_null, label %not_null, !make.implicit !0 29 not_null: 45 br i1 %c, label %is_null, label %not_null, !make.implicit !0 50 not_null: 68 br i1 %c, label %is_null, label %not_null, !make.implicit !0 73 not_null: 92 br i1 %c, label %is_null, label %not_null, !make.implicit !0 97 not_null: 120 br i1 %c, label %is_null, label %not_null, !make.implicit !0 125 not_null [all...] |
| /external/Microsoft-GSL/tests/ |
| notnull_tests.cpp | 107 bool helper(not_null<int*> p) { return *p == 12; } 112 not_null<int*> p = nullptr; // yay...does not compile! 113 not_null<std::vector<char>*> p = 0; // yay...does not compile! 114 not_null<int*> p; // yay...does not compile! 116 not_null<int*> p = up; 119 not_null<std::vector<int>> f(std::vector<int>{1}); 120 not_null<int> z(10); 121 not_null<std::vector<int>> y({1, 2}); 125 not_null<int*> p(rp); 128 not_null<std::shared_ptr<int>> x [all...] |
| /external/llvm/test/Transforms/JumpThreading/ |
| thread-cmp.ll | 12 br i1 %cmp, label %is_null, label %not_null 16 not_null: 39 br i1 %cmp, label %is_null, label %not_null 42 not_null: 60 br i1 %cmp, label %is_null, label %not_null 63 not_null:
|
| /external/llvm/test/Transforms/InstCombine/ |
| call_nonnull_arg.ll | 11 br i1 %cond1, label %dead, label %not_null 12 not_null:
|
| /external/mockito/src/main/java/org/mockito/internal/matchers/ |
| NotNull.java | 14 public static final NotNull NOT_NULL = new NotNull();
|
| /frameworks/base/core/java/android/util/ |
| BackupUtils.java | 30 public static final int NOT_NULL = 1; 43 return (in.readByte() == NOT_NULL) ? in.readUTF() : null; 48 out.writeByte(NOT_NULL);
|
| /external/easymock/src/org/easymock/internal/matchers/ |
| NotNull.java | 26 public static final NotNull NOT_NULL = new NotNull();
|
| /cts/tools/dasm/src/java_cup/ |
| terminal_set.java | 31 not_null(other); 57 protected void not_null(Object obj) throws internal_error method in class:terminal_set 79 not_null(sym); 101 not_null(other); 121 not_null(other); 136 not_null(sym); 156 not_null(sym); 169 not_null(other); 189 not_null(other);
|
| symbol_set.java | 28 not_null(other); 54 protected void not_null(Object obj) throws internal_error method in class:symbol_set 74 not_null(other); 92 not_null(other); 106 not_null(sym); 122 not_null(sym); 136 not_null(other); 152 not_null(other);
|
| lalr_item_set.java | 38 not_null(other); 88 not_null(other); 106 not_null(other); 121 not_null(itm); 150 not_null(itm); 167 not_null(other); 181 not_null(other); 215 protected void not_null(Object obj) throws internal_error method in class:lalr_item_set
|
| /external/mockito/src/test/java/org/mockito/internal/matchers/ |
| MatchersPrinterTest.java | 61 String line = printer.getArgumentsLine((List) Arrays.asList(new Equals(1L), NotNull.NOT_NULL), PrintSettings.verboseMatchers(0));
|
| MatchersToStringTest.java | 29 assertEquals("notNull()", NotNull.NOT_NULL.toString());
|
| /external/v8/src/ |
| fast-accessor-assembler.cc | 139 CodeAssemblerLabel not_null(assembler_.get()); 142 &is_null, ¬_null); 145 assembler_->Bind(¬_null);
|
| /external/llvm/docs/ |
| FaultMaps.rst | 67 br i1 %ptr_is_null, label %is_null, label %not_null, !make.implicit !0 69 not_null:
|
| /external/llvm/test/Transforms/LICM/ |
| hoist-deref-load.ll | 185 %not_null = icmp ne i32* %c, null 186 br i1 %not_null, label %not.null, label %for.end 229 %not_null = icmp ne i32* %c, null 255 ret i1 %not_null 322 %not_null = icmp ne i32* %c, null 323 br i1 %not_null, label %not.null, label %for.end 480 %not_null = icmp ne i32* %c, null 481 call void(i1, ...) @llvm.experimental.guard(i1 %not_null) [ "deopt"() ] 521 %not_null = icmp ne i32* %c, null 554 call void(i1, ...) @llvm.experimental.guard(i1 %not_null) [ "deopt"() [all...] |
| /external/Microsoft-GSL/ |
| GSL.natvis | 94 <Type Name="gsl::not_null<*>">
|
| /tools/tradefederation/core/tests/src/com/android/tradefed/config/ |
| OptionCopierTest.java | 249 setter.setOptionValue("string_collection", "not_null"); 253 assertEquals("not_null", dest.mStringCollection.iterator().next());
|
| /external/protobuf/src/google/protobuf/ |
| generated_message_reflection_unittest.cc | 506 &to_message, TestUtil::ReflectionTester::NOT_NULL); 512 &to_message, TestUtil::ReflectionTester::NOT_NULL); 539 &to_message, TestUtil::ReflectionTester::NOT_NULL); 545 &to_message, TestUtil::ReflectionTester::NOT_NULL); 738 &message, TestUtil::ReflectionTester::NOT_NULL); 764 &message, TestUtil::ReflectionTester::NOT_NULL); [all...] |
| test_util.h | 167 NOT_NULL,
|
| /external/mockito/src/test/java/org/mockito/internal/invocation/ |
| InvocationMatcherTest.java | 66 ArgumentMatcher m = NotNull.NOT_NULL;
|
| /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
| Predicates.java | 82 return ObjectPredicate.NOT_NULL.withNarrowedType(); 241 NOT_NULL {
|
| /external/guava/guava/src/com/google/common/base/ |
| Predicates.java | 85 return ObjectPredicate.NOT_NULL.withNarrowedType(); 304 NOT_NULL {
|