/prebuilts/go/linux-x86/src/go/types/ |
typestring_test.go | 5 package types_test 20 func makePkg(t *testing.T, src string) (*Package, error) { 26 // use the package name as package path 128 src := `package p; import "io"; type _ io.Writer; type T ` + test.src 142 p, _ := pkgFor("p.go", "package p; type T int", nil) 143 q, _ := pkgFor("q.go", "package q", nil) 148 this *Package 157 qualifier := func(pkg *Package) string {
|
/cts/tests/core/runner/src/com/android/cts/core/runner/ |
TestList.java | 16 package com.android.cts.core.runner; 115 Package testPackage = testClass.getPackage();
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/build/ |
CtsBuildProvider.java | 16 package com.android.cts.tradefed.build; 63 Package.getPackage(CTS_PACKAGE).getImplementationVersion(),
|
/external/opencv3/samples/winrt_universal/PhoneTutorial/ |
MainPage.xaml.cpp | 101 Concurrency::task<Windows::Storage::StorageFile^> getFileTask(Package::Current->InstalledLocation->GetFileAsync(L"Lena.png"));
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/ |
StartedServiceMatcher.java | 0 package com.xtremelabs.robolectric.matchers; 100 Package pack = serviceClass.getPackage();
|
/prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/ |
client.go | 5 // Package jsonrpc implements a JSON-RPC ClientCodec and ServerCodec 6 // for the rpc package. 7 package jsonrpc 28 // Package rpc expects both.
|
/prebuilts/go/linux-x86/src/net/rpc/jsonrpc/ |
client.go | 5 // Package jsonrpc implements a JSON-RPC ClientCodec and ServerCodec 6 // for the rpc package. 7 package jsonrpc 28 // Package rpc expects both.
|
/prebuilts/go/darwin-x86/src/go/internal/gcimporter/ |
gcimporter.go | 5 // Package gcimporter implements Import for gc-generated object files. 6 package gcimporter // import "go/internal/gcimporter" 31 // FindPkg returns the filename and unique package id for an import 32 // path based on package information provided by build.Import (using 77 // ImportData imports a package by reading the gc-generated export data, 78 // adds the corresponding package object to the packages map indexed by id, 85 // If packages[id] contains the completely imported package, that package 89 func ImportData(packages map[string]*types.Package, filename, id string, data io.Reader) (pkg *types.Package, err error) [all...] |
/prebuilts/go/linux-x86/src/go/internal/gcimporter/ |
gcimporter.go | 5 // Package gcimporter implements Import for gc-generated object files. 6 package gcimporter // import "go/internal/gcimporter" 31 // FindPkg returns the filename and unique package id for an import 32 // path based on package information provided by build.Import (using 77 // ImportData imports a package by reading the gc-generated export data, 78 // adds the corresponding package object to the packages map indexed by id, 85 // If packages[id] contains the completely imported package, that package 89 func ImportData(packages map[string]*types.Package, filename, id string, data io.Reader) (pkg *types.Package, err error) [all...] |
/frameworks/base/core/java/android/content/pm/ |
PackageParser.java | 17 package android.content.pm; 100 * Parser for package files (APKs) on disk. This supports apps packaged either 109 * <li>All APKs must have the exact same package name, version code, and signing 155 private static final String TAG_ORIGINAL_PACKAGE = "original-package"; 161 private static final String TAG_PACKAGE = "package"; 268 final Package owner; 280 ParsePackageItemArgs(Package _owner, String[] _outError, 301 ParseComponentArgs(Package _owner, String[] _outError, 316 * Lightweight parsed details about a single package. 328 * Path where this package was found on disk. For monolithic package [all...] |
/build/core/tasks/tools/ |
compatibility.mk | 15 # Package up a compatibility test suite in a zip file.
|
/build/tools/droiddoc/templates-pdk/ |
customizations.cs | 52 <a href="<?cs var:toroot ?>reference/packages.html" <?cs if:(page.title == "Package Index") ?>class="selected"<?cs /if ?> >Package Index</a> | 61 if:subcount(class.package) ?> 63 <?cs call:list("Interfaces", class.package.interfaces) ?> 64 <?cs call:list("Classes", class.package.classes) ?> 65 <?cs call:list("Enums", class.package.enums) ?> 66 <?cs call:list("Exceptions", class.package.exceptions) ?> 67 <?cs call:list("Errors", class.package.errors) ?> 69 elif:subcount(package) ?> 71 <?cs call:class_link_list("Interfaces", package.interfaces) ? [all...] |
/external/boringssl/src/ssl/test/runner/poly1305/ |
poly1305.go | 6 Package poly1305 implements Poly1305 one-time message authentication code as specified in http://cr.yp.to/mac/poly1305-20050329.pdf. 16 However, in this package AES isn't used and the one-time key is specified 19 package poly1305 // import "golang.org/x/crypto/poly1305"
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/ |
test_imports.py | 144 self.assertIsInstance(n, modulegraph.Package) 222 self.assertIsInstance(n, modulegraph.Package) 272 self.assertIsInstance(node, modulegraph.Package) 308 self.assertIsInstance(sub, modulegraph.Package) 315 self.assertIsInstance(sub, modulegraph.Package) 399 self.assertIsInstance(node, modulegraph.Package) 430 self.assertIsInstance(node, modulegraph.Package) 456 self.assertIsInstance(node, modulegraph.Package)
|
/external/regex-re2/doc/ |
mksyntaxgo | 25 Package syntax parses regular expressions into parse trees and compiles 27 facilities of package regexp (such as Compile and Match) instead of this package. 31 The regular expression syntax understood by this package when parsing with the Perl flag is as follows. 37 package syntax
|
/external/vogar/src/vogar/target/ |
ClassPathScanner.java | 17 package vogar.target; 32 * Inspects the classpath to return the classes in a requested package. This 58 * Returns a package describing the loadable classes whose package name is 61 public Package scan(String packageName) throws IOException { 73 return new Package(this, subpackageNames, topLevelClasses); 78 * add them to the respective sets. Searches the package on the whole class 100 * add them to the respective sets. Searches the package in a single jar file. 106 // check if the Jar contains the package. 114 // check if the class is in the package itself or in one of it [all...] |
/libcore/luni/src/test/java/libcore/java/net/ |
OldURLClassLoaderTest.java | 18 package libcore.java.net; 145 new URL("file://new/package/name/"), 148 String packageName = "new.package.name"; 151 Package pack = tucl.definePackage(packageName + i, manifest, urls[i]); 178 public Package definePackage(String name,
|
/prebuilts/go/darwin-x86/src/cmd/asm/internal/flags/ |
flags.go | 5 // Package flags implements top-level flags and the usage message for the assembler. 6 package flags
|
/prebuilts/go/darwin-x86/src/cmd/doc/ |
doc_test.go | 5 package main 40 // Package dump includes import, package statement. 42 "package clause", 44 []string{`package pkg.*cmd/doc/testdata`}, 49 // Package dump 51 "full package", 54 `Package comment`, 82 // Package dump -u 84 "full package with u" [all...] |
/prebuilts/go/darwin-x86/src/cmd/doc/testdata/ |
pkg.go | 5 // Package comment. 6 package pkg
|
/prebuilts/go/darwin-x86/src/cmd/go/ |
list.go | 5 package main 22 The default output shows the package import path: 30 syntax of package template. The default output is equivalent to -f 33 type Package struct { 34 Dir string // directory containing package sources 35 ImportPath string // import path of package in dir 36 ImportComment string // path in import comment on package statement 37 Name string // package name 38 Doc string // package documentation string 40 Shlib string // the shared library that contains this package (only set when -linkshared [all...] |
vet.go | 5 package main 36 // Vet expects to be given a set of files all from the same package. 37 // Run once for package p and once for package p_test. 47 func runVetFiles(p *Package, files []string) {
|
/prebuilts/go/darwin-x86/src/cmd/pprof/internal/svg/ |
svg.go | 5 // Package svg provides tools related to handling of SVG files 6 package svg
|
/prebuilts/go/darwin-x86/src/cmd/vet/whitelist/ |
whitelist.go | 5 // Package whitelist defines exceptions for the vet tool. 6 package whitelist // import "cmd/vet/whitelist" 10 // is a slice or a struct, so we whitelist all the standard package
|
/prebuilts/go/darwin-x86/src/crypto/des/ |
const.go | 5 // Package des implements the Data Encryption Standard (DES) and the 8 package des
|