HomeSort by relevance Sort by last modified time
    Searched defs:Implementation (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /prebuilts/go/darwin-x86/test/fixedbugs/bug324.dir/
prog.go 15 type Implementation struct{}
17 func (p *Implementation) private() {}
23 x = new(Implementation)
24 x.private() // main.Implementation.private()
35 // *Implementation does not implement p.Exported (missing p.private method)
36 // px = new(Implementation)
52 x.private() // p.Implementation.private()
p.go 11 type Implementation struct{}
13 func (p *Implementation) private() { println("p.Implementation.private()") }
15 var X = new(Implementation)
  /prebuilts/go/darwin-x86/test/interface/private.dir/
prog.go 16 type Implementation struct{}
18 func (p *Implementation) private() {}
22 x = new(Implementation)
30 px = new(Implementation) // ERROR "private"
private1.go 13 type Implementation struct{}
15 func (p *Implementation) private() {}
17 var X = new(Implementation)
  /prebuilts/go/linux-x86/test/fixedbugs/bug324.dir/
prog.go 15 type Implementation struct{}
17 func (p *Implementation) private() {}
23 x = new(Implementation)
24 x.private() // main.Implementation.private()
35 // *Implementation does not implement p.Exported (missing p.private method)
36 // px = new(Implementation)
52 x.private() // p.Implementation.private()
p.go 11 type Implementation struct{}
13 func (p *Implementation) private() { println("p.Implementation.private()") }
15 var X = new(Implementation)
  /prebuilts/go/linux-x86/test/interface/private.dir/
prog.go 16 type Implementation struct{}
18 func (p *Implementation) private() {}
22 x = new(Implementation)
30 px = new(Implementation) // ERROR "private"
private1.go 13 type Implementation struct{}
15 func (p *Implementation) private() {}
17 var X = new(Implementation)
  /external/compiler-rt/lib/builtins/
Makefile.mk 22 Implementation := Generic
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/internal/
Implementation.java 12 public @interface Implementation {
  /external/compiler-rt/lib/builtins/arm/
Makefile.mk 17 Implementation := Optimized
  /external/compiler-rt/lib/builtins/arm64/
Makefile.mk 17 Implementation := Optimized
  /external/compiler-rt/lib/builtins/armv6m/
Makefile.mk 17 Implementation := Optimized
  /external/compiler-rt/lib/builtins/i386/
Makefile.mk 17 Implementation := Optimized
  /external/compiler-rt/lib/builtins/ppc/
Makefile.mk 17 Implementation := Optimized
  /external/compiler-rt/lib/builtins/x86_64/
Makefile.mk 17 Implementation := Optimized
  /external/v8/src/regexp/x64/
regexp-macro-assembler-x64.cc 653 // No custom implementation (yet): s(UC16), S(UC16).
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
KeyPairGeneratorBenchmark.java 33 @Param private Implementation implementation; field in class:KeyPairGeneratorBenchmark
35 public enum Implementation { OpenSSL, BouncyCastle };
46 if (implementation == Implementation.BouncyCastle) {
DigestBenchmark.java 37 @Param private Implementation implementation; field in class:DigestBenchmark
39 public enum Implementation { OPENSSL, BOUNCYCASTLE };
46 switch (implementation) {
54 throw new RuntimeException(implementation.toString());
  /external/clang/lib/Index/
CodegenNameGenerator.cpp 28 struct CodegenNameGenerator::Implementation {
32 Implementation(ASTContext &Ctx)
179 : Impl(new Implementation(Ctx)) {
  /external/iproute2/doc/
api-ip6-flowlabels.tex 133 \paragraph{Implementation.}
134 \addcontentsline{toc}{subsection}{Implementation}
224 storage, so that the full implementation necessarily includes user space flow
261 \paragraph{Implementation.}
262 \addcontentsline{toc}{subsection}{Implementation}
323 still can be shared by another sockets. Current implementation does not allow
328 or closed all the sockets using it. Current implementation does not allow
  /external/v8/src/regexp/arm/
regexp-macro-assembler-arm.cc 607 // No custom implementation (yet): s(UC16), S(UC16).
931 RegExpMacroAssemblerARM::Implementation() {
    [all...]
  /external/v8/src/regexp/ppc/
regexp-macro-assembler-ppc.cc 625 // No custom implementation (yet): s(UC16), S(UC16).
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509Util.java 296 static class Implementation
301 Implementation(
324 static Implementation getImplementation(
357 return new Implementation(cls.newInstance(), prov);
371 throw new NoSuchAlgorithmException("cannot find implementation " + algorithm + " for provider " + prov.getName());
375 * return an implementation for a given algorithm/provider.
378 static Implementation getImplementation(
393 Implementation imp = getImplementation(baseName, Strings.toUpperCase(algorithm), prov[i]);
409 throw new NoSuchAlgorithmException("cannot find implementation " + algorithm);
  /external/v8/src/regexp/ia32/
regexp-macro-assembler-ia32.cc 633 // No custom implementation (yet): s(UC16), S(UC16).
974 RegExpMacroAssemblerIA32::Implementation() {
    [all...]

Completed in 572 milliseconds

1 2 3 4 5 6 7 8