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

1 2 3 4

  /libcore/ojluni/src/main/java/jdk/net/
package-info.java 31 @jdk.Exported
  /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 {
  /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 {}
  /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 {}
  /external/llvm/include/llvm/ExecutionEngine/
JITSymbolFlags.h 10 // Symbol flags for symbols in the JIT (e.g. weak, exported).
26 Exported = 1U << 1
63 return (Flags & JITSymbolFlags::Exported) == JITSymbolFlags::Exported;
71 Flags |= JITSymbolFlags::Exported;
81 Flags |= JITSymbolFlags::Exported;
RTDyldMemoryManager.h 95 /// a strong, exported symbol, consistent with historical treatment by
100 /// necessary for RuntimeDyld to correctly handle weak and non-exported symbols.
103 JITSymbolFlags::Exported);
118 /// getSymbolAddressInLogicalDylib is treated as a strong, exported symbol,
123 /// necessary for RuntimeDyld to correctly handle weak and non-exported symbols.
127 JITSymbolFlags::Exported);
  /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/issue15071.dir/
main.go 13 _ = exp.Exported(len(os.Args))
  /prebuilts/go/linux-x86/test/fixedbugs/issue15071.dir/
main.go 13 _ = exp.Exported(len(os.Args))
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug467.go 7 // Exported data for inlining could forget types of
  /prebuilts/go/darwin-x86/test/fixedbugs/issue15071.dir/exp/
exp.go 7 func Exported(x int) int {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug467.go 7 // Exported data for inlining could forget types of
  /prebuilts/go/linux-x86/test/fixedbugs/issue15071.dir/exp/
exp.go 7 func Exported(x int) int {
  /external/llvm/unittests/ExecutionEngine/Orc/
GlobalMappingLayerTest.cpp 24 return llvm::orc::JITSymbol(0x4567, JITSymbolFlags::Exported);
  /prebuilts/go/darwin-x86/src/bufio/
export_test.go 7 // Exported for testing only.

Completed in 1184 milliseconds

1 2 3 4