Home
last modified time | relevance | path

Searched refs:dereferenced (Results 1 – 25 of 37) sorted by relevance

12

/external/guava/guava/src/com/google/common/util/concurrent/
DAsyncSettableFuture.java45 private final ListenableFuture<V> dereferenced = Futures.dereference(nested); field in AsyncSettableFuture
50 return dereferenced; in delegate()
/external/clang/docs/analyzer/
Dnullability.rst16 - 'p' gets dereferenced
27 …ion body is being inlined, the will be no warning, when the symbol is dereferenced. In case I have…
73 …Nullable is inlined the analyzer will not warn when the obj symbol is dereferenced. One solution f…
78 …symbol. This is not a big caveat, since once the top level pointer is dereferenced, the symvol for…
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DFuturesTest.java744 ListenableFuture<?> dereferenced = Futures.dereference(outer);
745 assertNull(dereferenced.get());
752 ListenableFuture<Foo> dereferenced = Futures.<Foo>dereference(outer);
753 assertSame(fooChild, dereferenced.get());
758 ListenableFuture<Foo> dereferenced = Futures.dereference(outer);
759 dereferenced.cancel(true);
766 ListenableFuture<Foo> dereferenced = Futures.dereference(outer);
767 dereferenced.cancel(true);
773 ListenableFuture<Foo> dereferenced = Futures.dereference(outer);
775 assertTrue(dereferenced.isCancelled());
[all …]
/external/clang/test/Analysis/
Dnullability.mm43 Dummy &r = *p; // expected-warning {{Nullable pointer is dereferenced}}
46 int b = p->val; // expected-warning {{Nullable pointer is dereferenced}}
49 int stuff = *ptr; // expected-warning {{Nullable pointer is dereferenced}}
61 default: { Dummy d = *p; } break; // expected-warning {{Nullable pointer is dereferenced}}
/external/llvm/docs/
DCMakePrimer.rst122 In this code sample MSVC will be implicitly dereferenced, which will result in
123 the if command comparing the value of the dereferenced variables ``SOME_VAR``
183 You'll notice that the inner foreach loop's list is doubly dereferenced. This is
271 The variable argument portion of the ``foreach`` block can contain dereferenced
425 non-dereferenced variables with names that overlap in the parent scope, but it
DGetElementPtr.rst58 won't be dereferenced?*
172 What is dereferenced by GEP?
191 pointer in the structure *must* be dereferenced in order to index into the
DPasses.rst522 that the pointer is only dereferenced, and not returned from the function or
/external/deqp-deps/glslang/Test/
DspecExamples.frag175 b[++x].a.length(); // b is never dereferenced, but �++x� is evaluated
178 s[x].a.length(); // s is dereferenced; x needs to be a valid index
/external/clang/include/clang/Basic/
DDiagnosticASTKinds.td66 "dereferenced pointer past the end of %select{|subobject of }0"
125 "dereferenced null pointer is not allowed in a constant expression">;
128 "dereferenced one-past-the-end pointer is not allowed in a constant expression">;
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DCMakePrimer.rst156 You'll notice that the inner foreach loop's list is doubly dereferenced. This is
243 The variable argument portion of the ``foreach`` block can contain dereferenced
399 non-dereferenced variables with names that overlap in the parent scope, but it
DGetElementPtr.rst59 won't be dereferenced?*
173 What is dereferenced by GEP?
192 pointer in the structure *must* be dereferenced in order to index into the
DPasses.rst524 that the pointer is only dereferenced, and not returned from the function or
/external/llvm/test/Analysis/GlobalsModRef/
Dnonescaping-noalias.ll103 ; a parameter that has been dereferenced when the global is non-escaping.
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/GlobalsModRef/
Dnonescaping-noalias.ll103 ; a parameter that has been dereferenced when the global is non-escaping.
/external/python/cpython2/Doc/library/
Dgc.rst118 Note that objects which have already been dereferenced, but which live in cycles
/external/python/cpython3/Doc/library/
Dgc.rst130 Note that objects which have already been dereferenced, but which live in cycles
/external/libaom/libaom/third_party/libyuv/source/
Dx86inc.asm742 ; other copies of m# that have already been dereferenced and don't get updated correctly.
/external/clang/docs/
DBlockLanguageSpec.rst70 versa. [cast.c] A Block reference may not be dereferenced via the
/external/clang/include/clang/StaticAnalyzer/Checkers/
DCheckers.td179 HelpText<"Warns when a nullable pointer is dereferenced.">,
/external/deqp-deps/glslang/hlsl/
DhlslParseHelper.cpp1012 TType dereferenced(dereferencedCol, 0); in handleDotDereference() local
1013 result->setType(dereferenced); in handleDotDereference()
1024 TType dereferenced(base->getType(), 0); in handleDotDereference() local
1025 result->setType(dereferenced); in handleDotDereference()
8170 TType dereferenced(type, 0); in addConstructor() local
8171 elementType.shallowCopy(dereferenced); in addConstructor()
/external/llvm/include/llvm/IR/
DIntrinsics.td75 // ReadNone - The specified argument pointer is not dereferenced by the
/external/vboot_reference/scripts/image_signing/lib/shflags/
Dshflags388 # string: value of dereferenced flag variable
/external/shflags/lib/
Dshflags427 # string: value of dereferenced flag variable
/external/shflags/src/
Dshflags426 # string: value of dereferenced flag variable
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DIntrinsics.td85 // ReadNone - The specified argument pointer is not dereferenced by the

12