OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:indirection
(Results
1 - 25
of
698
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaTemplate/
instantiate-case.cpp
6
return *c; // expected-error{{
indirection
requires pointer operand}}
instantiate-decl-dtor.cpp
6
~A() { *x = 10; } // expected-error {{
indirection
requires pointer operand}}
/external/syslinux/gpxe/src/include/gpxe/efi/
ProcessorBind.h
4
* use this header file as a quick
indirection
layer.
/prebuilts/go/darwin-x86/test/fixedbugs/
issue4909a.go
30
const N1 = unsafe.Offsetof(t.X) // ERROR "
indirection
"
31
const N2 = unsafe.Offsetof(p.X) // ERROR "
indirection
"
issue4909b.go
61
// Does it involve an
indirection
?
76
fmt.Print(` // ERROR "
indirection
"`)
/prebuilts/go/linux-x86/test/fixedbugs/
issue4909a.go
30
const N1 = unsafe.Offsetof(t.X) // ERROR "
indirection
"
31
const N2 = unsafe.Offsetof(p.X) // ERROR "
indirection
"
issue4909b.go
61
// Does it involve an
indirection
?
76
fmt.Print(` // ERROR "
indirection
"`)
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1inst.cpp
11
*t = u; // expected-warning{{
indirection
on operand of type 'void *'}} expected-error{{not assignable}}
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/
dereference.runtime.fail.cpp
22
TEST_IGNORE_NODISCARD (*p); // expected-error {{
indirection
requires pointer operand ('std::unique_ptr<int []>' invalid)}}
23
TEST_IGNORE_NODISCARD (*cp); // expected-error {{
indirection
requires pointer operand ('const std::unique_ptr<int []>' invalid)}}
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/
dereference.runtime.fail.cpp
22
(void)(*p); // expected-error {{
indirection
requires pointer operand ('std::unique_ptr<int []>' invalid)}}
23
(void)(*cp); // expected-error {{
indirection
requires pointer operand ('const std::unique_ptr<int []>' invalid)}}
/art/test/065-mismatched-implements/src/
Indirect.java
18
* Error
indirection
class.
/external/libchrome/base/
sequenced_task_runner_helpers.h
12
// Template helpers which use function
indirection
to erase T from the
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
AbstractWell.java
48
/** Index
indirection
table giving for each index its predecessor taking table size into account. */
51
/** Index
indirection
table giving for each index its second predecessor taking table size into account. */
54
/** Index
indirection
table giving for each index the value index + m1 taking table size into account. */
57
/** Index
indirection
table giving for each index the value index + m2 taking table size into account. */
60
/** Index
indirection
table giving for each index the value index + m3 taking table size into account. */
104
// precompute
indirection
index tables. These tables are used for optimizing access
/external/mesa3d/docs/
opengles.html
51
<p>OpenGL ES has an additional
indirection
when dispatching functions</p>
58
<p>The
indirection
serves several purposes</p>
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
unsafe.go
58
//
indirection
via embedded pointer types.
60
yyerror("invalid expression %v: selector implies
indirection
of embedded %v", n, r.Left)
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
unsafe.go
58
//
indirection
via embedded pointer types.
60
yyerror("invalid expression %v: selector implies
indirection
of embedded %v", n, r.Left)
/external/clang/test/CodeGenObjC/
debug-info-ivars-indirect.m
24
// another layer of
indirection
/external/dagger2/core/src/main/java/dagger/internal/
DelegateFactory.java
21
* A DelegateFactory that is used to stitch Provider/Lazy
indirection
based dependency cycles.
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/
ReflectIntermediateClass.java
23
* Offer an
indirection
to some Big0xx classes and have their initialization
/system/chre/apps/chqts/src/shared/
abort.cc
32
// we need to fool them via
indirection
.
/external/libtextclassifier/
textclassifier_jni.h
26
//
indirection
is needed, if the macro argument is used with # or ##.
51
// The
indirection
is needed to correctly expand the TC_PACKAGE_NAME macro.
/art/runtime/arch/x86_64/
thread_x86_64.cc
47
// Allow easy
indirection
back to Thread*.
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
AndroidDigestFactory.java
25
* Level of
indirection
to let us select OpenSSLDigest implementations
/external/clang/test/Parser/
expressions.c
42
__extension__ (*(char*)0) = 1; // expected-warning {{
indirection
of non-volatile null pointer}} \
/external/turbine/java/com/google/turbine/binder/env/
Env.java
29
* <p>The
indirection
through env makes it possible to represent a graph with cycles using immutable
Completed in 7197 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>