OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Exported
(Results
1 - 25
of
69
) sorted by null
1
2
3
/prebuilts/go/darwin-x86/test/fixedbugs/bug324.dir/
prog.go
11
type
Exported
interface {
22
var x
Exported
27
var px p.
Exported
35
// *Implementation does not implement p.
Exported
(missing p.private method)
39
// p.
Exported
does not implement
Exported
(missing private method)
46
x = px.(
Exported
)
p.go
7
type
Exported
interface {
/prebuilts/go/linux-x86/test/fixedbugs/bug324.dir/
prog.go
11
type
Exported
interface {
22
var x
Exported
27
var px p.
Exported
35
// *Implementation does not implement p.
Exported
(missing p.private method)
39
// p.
Exported
does not implement
Exported
(missing private method)
46
x = px.(
Exported
)
p.go
7
type
Exported
interface {
/prebuilts/go/darwin-x86/test/interface/private.dir/
prog.go
12
type
Exported
interface {
21
var x
Exported
25
var px p.
Exported
private1.go
9
type
Exported
interface {
/prebuilts/go/linux-x86/test/interface/private.dir/
prog.go
12
type
Exported
interface {
21
var x
Exported
25
var px p.
Exported
private1.go
9
type
Exported
interface {
/external/llvm/include/llvm/ExecutionEngine/
JITSymbolFlags.h
10
// Symbol flags for symbols in the JIT (e.g. weak,
exported
).
25
Exported
= 1U << 1
62
return (Flags & JITSymbolFlags::
Exported
) == JITSymbolFlags::
Exported
;
70
Flags |= JITSymbolFlags::
Exported
;
RTDyldMemoryManager.h
81
/// a strong,
exported
symbol, consistent with historical treatment by
86
/// necessary for RuntimeDyld to correctly handle weak and non-
exported
symbols.
89
JITSymbolFlags::
Exported
);
104
/// getSymbolAddressInLogicalDylib is treated as a strong,
exported
symbol,
109
/// necessary for RuntimeDyld to correctly handle weak and non-
exported
symbols.
113
JITSymbolFlags::
Exported
);
/prebuilts/go/darwin-x86/src/go/doc/testdata/
f.go
9
// Factory functions for non-
exported
types must not get lost.
13
//
Exported
must always be visible. Was issue 2824.
14
func
Exported
() private {}
b.go
34
//
Exported
declarations associated with non-
exported
types must always be shown.
/prebuilts/go/linux-x86/src/go/doc/testdata/
f.go
9
// Factory functions for non-
exported
types must not get lost.
13
//
Exported
must always be visible. Was issue 2824.
14
func
Exported
() private {}
/prebuilts/go/darwin-x86/test/fixedbugs/issue10700.dir/
test.go
23
func InMyCode(x *Imported, y *HasAMethod, z *other.
Exported
) {
37
z.Do() // ERROR "z\.Do undefined \(type \*other\.
Exported
is pointer to interface, not interface\)"
38
z.do() // ERROR "z\.do undefined \(type \*other\.
Exported
is pointer to interface, not interface\)"
40
(*z).do() // ERROR "\(\*z\)\.do undefined \(type other.
Exported
has no field or method do, but does have Do\)"
41
z.Dont() // ERROR "z\.Dont undefined \(type \*other\.
Exported
is pointer to interface, not interface\)"
42
(*z).Dont() // ERROR "\(\*z\)\.Dont undefined \(type other\.
Exported
has no field or method Dont\)"
43
z.secret() // ERROR "z\.secret undefined \(type \*other\.
Exported
is pointer to interface, not interface\)"
other.go
7
type
Exported
interface {
/prebuilts/go/linux-x86/test/fixedbugs/issue10700.dir/
test.go
23
func InMyCode(x *Imported, y *HasAMethod, z *other.
Exported
) {
37
z.Do() // ERROR "z\.Do undefined \(type \*other\.
Exported
is pointer to interface, not interface\)"
38
z.do() // ERROR "z\.do undefined \(type \*other\.
Exported
is pointer to interface, not interface\)"
40
(*z).do() // ERROR "\(\*z\)\.do undefined \(type other.
Exported
has no field or method do, but does have Do\)"
41
z.Dont() // ERROR "z\.Dont undefined \(type \*other\.
Exported
is pointer to interface, not interface\)"
42
(*z).Dont() // ERROR "\(\*z\)\.Dont undefined \(type other\.
Exported
has no field or method Dont\)"
43
z.secret() // ERROR "z\.secret undefined \(type \*other\.
Exported
is pointer to interface, not interface\)"
other.go
7
type
Exported
interface {
/prebuilts/go/darwin-x86/test/fixedbugs/
bug467.go
7
//
Exported
data for inlining could forget types of
/prebuilts/go/linux-x86/test/fixedbugs/
bug467.go
7
//
Exported
data for inlining could forget types of
/external/llvm/unittests/ExecutionEngine/Orc/
GlobalMappingLayerTest.cpp
24
return llvm::orc::JITSymbol(0x4567, JITSymbolFlags::
Exported
);
CompileOnDemandLayerTest.cpp
57
return JITSymbol(1, JITSymbolFlags::
Exported
);
/prebuilts/go/darwin-x86/src/bufio/
export_test.go
7
//
Exported
for testing only.
/prebuilts/go/linux-x86/src/bufio/
export_test.go
7
//
Exported
for testing only.
/external/v8/test/cctest/wasm/
test-run-wasm-module.cc
44
0, // no name, not
exported
66
f->
Exported
(1);
88
f->
Exported
(1);
103
f->
Exported
(1);
132
f->
Exported
(1);
158
f->
Exported
(1);
191
f->
Exported
(1);
/external/llvm/include/llvm/ExecutionEngine/Orc/
GlobalMappingLayer.h
71
/// @param ExportedSymbolsOnly If true, search only for
exported
symbols.
76
return JITSymbol(I->second, JITSymbolFlags::
Exported
);
85
/// @param ExportedSymbolsOnly If true, search only for
exported
symbols.
Completed in 267 milliseconds
1
2
3