Home
last modified time | relevance | path

Searched refs:that (Results 1 – 25 of 84) sorted by relevance

1234

/tools/external/fat32lib/
DNOTICE19that you have the freedom to distribute copies of free software (and charge for this service if yo…
21 To protect your rights, we need to make restrictions that forbid distributors to deny you these rig…
23that we gave you. You must make sure that they, too, receive or can get the source code. If you li…
27that there is no warranty for the free library. Also, if the library is modified by someone else a…
29that a company cannot effectively restrict the users of a free program by obtaining a restrictive …
37 …ary, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to…
41 …reedom, it does ensure that the user of a program that is linked with the Library has the freedom …
43 …ntion to the difference between a "work based on the library" and a "work that uses the library". …
51 …ary" means either the Library or any derivative work under copyright law: that is to say, a work c…
55 …brary in a tool for writing it). Whether that is true depends on what the Library does and what th…
[all …]
/tools/apkzlib/src/test/resources/testData/packaging/text-files/
Drfc2460.txt134 node - a device that implements IPv6.
136 router - a node that forwards IPv6 packets not explicitly
139 host - any node that is not a router. [See Note below].
165 size in octets, that can be conveyed over a link.
220 this IPv6 header, in octets. (Note that any
241 each node that forwards the packet. The packet
290 headers that may be placed between the IPv6 header and the upper-
331 particular kind of extension header and process that header prior to
344 Hop Options header, which carries information that must be examined
384 recommended that those headers appear in the following order:
[all …]
/tools/security/sanitizer-status/
DNOTICE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/proto/
Dplugin.proto6 // modification, are permitted provided that the following conditions are
37 // just a program that reads a CodeGeneratorRequest from stdin and writes a
56 // The .proto files that were explicitly listed on the command-line. The
66 // appears before any file that imports it.
68 // protoc guarantees that all proto_files will be written after
99 // and allows the generated text to be streamed back to protoc so that large
100 // files need not reside completely in memory at one time. Note that as of
105 // If non-empty, indicates that the named file should already exist, and the
106 // content here is to be inserted into that file at a defined insertion
109 // insertion points by placing special annotations in the file that look
[all …]
/tools/trebuchet/
DLICENSE14 the copyright owner that is granting the License.
17 other entities that control, are controlled by, or are under common
18 control with that entity. For the purposes of this definition,
38 copyright notice that is included in or attached to the work
42 form, that is based on (or derived from) the Work and for which the
45 of this License, Derivative Works shall not include works that remain
51 to that Work or Derivative Works thereof, that is intentionally
58 and issue tracking systems that are managed by, or on behalf of, the
60 excluding communication that is conspicuously marked or otherwise
80 by such Contributor that are necessarily infringed by their
[all …]
/tools/apksig/
DLICENSE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]
/tools/acloud/
DLICENSE14 the copyright owner that is granting the License.
17 other entities that control, are controlled by, or are under common
18 control with that entity. For the purposes of this definition,
38 copyright notice that is included in or attached to the work
42 form, that is based on (or derived from) the Work and for which the
45 of this License, Derivative Works shall not include works that remain
51 to that Work or Derivative Works thereof, that is intentionally
58 and issue tracking systems that are managed by, or on behalf of, the
60 excluding communication that is conspicuously marked or otherwise
80 by such Contributor that are necessarily infringed by their
[all …]
/tools/tradefederation/core/tests/res/testtype/
Dpython_output1.txt8 Ensure that an already-connected device stays connected. ... ok
10 Ensure that `adb connect localhost:1234` will try both IPv4 and IPv6. ... ok
12 Ensure that a disconnected device reconnects. ... ok
14 Ensure that `adb disconnect` takes effect immediately. ... FAIL
16 Ensure that adb emu kill works. ... ok
18 Ensure that the emulator can connect. ... ERROR
22 Test that launch_server() does not inherit handles. ... /usr/lib/python3.4/unittest/case.py:577: Re…
32 Ensure that the emulator can connect.
41 Ensure that `adb disconnect` takes effect immediately.
Dpython_output3.txt8 Ensure that an already-connected device stays connected. ... ok
10 Ensure that `adb connect localhost:1234` will try both IPv4 and IPv6. ... ok
12 Ensure that a disconnected device reconnects. ... error: device offline
15 Ensure that `adb disconnect` takes effect immediately. ... ok
17 Ensure that adb emu kill works. ... ok
19 Ensure that the emulator can connect. ... ok
23 Test that launch_server() does not inherit handles. ... ok
27 Ensure that a disconnected device reconnects.
/tools/metalava/src/main/java/com/android/tools/metalava/doclava1/
DSourcePositionInfo.java37 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index) { in add() argument
38 if (that == null) { in add()
41 int line = that.line; in add()
50 return new SourcePositionInfo(that.file, line, 0); in add()
59 SourcePositionInfo that = (SourcePositionInfo) o; in compareTo() local
60 int r = this.file.compareTo(that.file); in compareTo()
62 return this.line - that.line; in compareTo()
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/metric/
DLoopSummary.java175 LoopSummary that = (LoopSummary) o; in equals()
176 return count == that.count && in equals()
177 totalTimeNs == that.totalTimeNs && in equals()
178 Double.compare(that.jankRate, jankRate) == 0 && in equals()
179 minFrameTime == that.minFrameTime && in equals()
180 maxFrameTime == that.maxFrameTime && in equals()
181 Double.compare(that.avgFrameTime, avgFrameTime) == 0 && in equals()
182 percentile90 == that.percentile90 && in equals()
183 percentile95 == that.percentile95 && in equals()
184 percentile99 == that.percentile99 && in equals()
[all …]
/tools/test/graphicsbenchmark/functional_tests/hostside/src/com/android/game/qualification/test/
DVkJsonTests.java108 .that(apiVersion) in checkRequiredVersion()
128 .that(extensions) in checkRequiredExtensions()
145 .that(mVkJson.devices.get(0).VK_KHR_driver_properties) in checkKHRDriverProperties()
152 .that(properties).named("driverPropertiesKHR").isNotNull(); in checkKHRDriverProperties()
158 assertWithMessage(msg).that(version.major).named("major version").isAtLeast(MAJOR); in checkKHRDriverProperties()
160 assertWithMessage(msg).that(version.minor).named("minor version").isAtLeast(MINOR); in checkKHRDriverProperties()
162 assertWithMessage(msg).that(version.subminor).named("subminor version") in checkKHRDriverProperties()
/tools/tradefederation/core/atest/docs/
Datest_structure.md29 it). That is a critical piece that atest depends on. Module-info.json contains a
31 compatibility_suite, auto_gen_config, etc) that is used during the test finding
36 transform the user input into a ```TestInfo``` object that contains all of the
55 Here is a list of major files and dirs that are important to point out:
59 * ```test_finder_handler.py``` - Module that collects all test finders,
64 * ```test_finders/test_info.py``` - Module that defines ```TestInfo``` class.
65 * ```test_runner_handler.py``` - Module that collects all test runners and
75 Test finders are classes that host find methods. The find methods are called by
78 dependencies for the supplied test, translating it into a form that a test
86 Test Runners are classes that execute the tests. They consume a ```TestInfo```
[all …]
Ddevelop_test_runners.md17 the atest CLI and your test runner's CLI. The reason for this is so that atest
20 determine its specific dependencies that need to be built prior to any test
35 To create a new test runner, create a new class that inherits
43 * ```get_test_runner_build_reqs()```: Return a set of build targets that need
52 There is a parent helper method (```run```) that should be used to execute the
56 ```test_runner_handler``` so that atest is aware of it. Try-except import the
/tools/metalava/
DREADME.md56 flags and translates them on the fly. Flags that are ignored are listed on the
82 load time such that it can be part of the API analysis.
89 * Improve the signature format such that it for example labels enums "enum"
98 files. This is vital now that some of these annotations become part of the
121 names such that you have
134 * Misc documentation handling; for example, it attempts to fix sentences that
135 javadoc will mistreat, such as sentences that "end" with "e.g. ". It also
150 of the source code). This means that the documentation tool itself does not
153 stub sources that include documentation.
171 (This turned out to be incredibly important; this revealed for example that
[all …]
DFORMAT.md9 through Android P. Note that this isn't actually a single format; it evolved
38 that we can not just record explicitly what the API contract is, but also
39 enforce that changes are not only deliberate changes but also compatible
86 (Notice how the annotations are not using fully qualified name; that's discussed
89 The annotations to be included are annotations for annotation types that are not
100 explicit nullness, use Kotlin's syntax for nullness. That means that for
155 referred to as classes that extend java.lang.Enum, or java.lang.Annotation etc.
180 The v1 signature files uses raw types in some places but not others. Note that
211 Note how that's "throws Throwable" instead of "throws X". This results in b/110302703.
265 Kotlin's Java support means that it wil take a Kotlin property and compile it
[all …]
DAPI-LINT.md11 Therefore, there are cases where you want to say "ok, that's good advice in
13 and again, there are two ways to mark an issue such that it is no longer
16 (Note that metalava will not report issues on classes, methods and fields that
94 by the build. At that point you'll need to manually copy in the file instead.
101 At that point you can copy the file to where you need:
109 You can view the exact set of existing issues (current APIs that get flagged by
111 sense of the types of issues that are more likely to have a false positive,
/tools/repohooks/
DREADME.md5 This repo holds hooks that get run by repo during the upload phase. They
14 run them by hand, you can execute `pre-upload.py` directly. By default, that
15 will scan the active repo and process all commits that haven't yet been merged.
31 projects that are checked out via a single manifest.
35 The merging of these config files control the hooks/checks that get run when
44 For manifests that don't have a project checked out at the top level,
77 generally be relative to that point.
92 * `PREUPLOAD_COMMIT`: The commit that is currently being checked.
115 This section allows for setting options that affect the overall behavior of the
119 that are merged. Hooks will still run on the merge commit itself.
[all …]
/tools/test/connectivity/acts/tests/google/tel/config/
DREADME.md2 Telephony config files have some differences from other ACTS configs that require additional keys t…
6 …- **sim_conf_file** - Path to a SIM card config file, which is needed in the event that the MSISDN…
7 …** - This controls the number of iterations run by "stress" tests. (Tests that require this always…
8 …mitigate this uncertainty, this key specifies a maximum number of re-runs that will be performed i…
12 …- **pass_criteria_call_(3g/volte/2g/wfc)** - The maximum amount of power in mW that can be used in…
13 …- **pass_criteria_idle_(3g/volte/2g/wfc)** - The maximum amount of power in mW that can be used in…
/tools/test/connectivity/acts/tests/google/wifi/aware/
DREADME.md8 * functional: Functional tests that each implementation must pass. These
13 fail criteria - that criteria may not apply to all implementations.
15 test the implementation. Considering that some failures are expected,
27 If a test class is specified, then all tests within that test class are executed.
32 group sub-directories contains a file with the same name as that of the
41 devices without listing specific serial numbers. Note that some tests use a
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v3/
DV3SigningCertificateLineage.java266 SigningCertificateNode that = (SigningCertificateNode) o; in equals()
267 if (!signingCert.equals(that.signingCert)) return false; in equals()
268 if (parentSigAlgorithm != that.parentSigAlgorithm) return false; in equals()
269 if (sigAlgorithm != that.sigAlgorithm) return false; in equals()
270 if (!Arrays.equals(signature, that.signature)) return false; in equals()
271 if (flags != that.flags) return false; in equals()
/tools/test/connectivity/tools/lab/
DREADME.md12 Metrics that can be gathered, listed by name of file and then key to response
59 unauthorized: list of phone sn's that are unauthorized
60 offline: list of phone sn's that are offline
61 recovery: list of phone sn's that are in recovery mode
63 device: list of phone sn's that are in device mode
/tools/repohooks/tools/
Dpylintrc54 # Pylint and this flag can prevent that. It has one side effect, the resulting
171 # List of comma separated words that should not be checked.
174 # A path to a file that contains private dictionary; one word per line.
184 # Logging modules to check that the string format arguments are in logging
198 # List of additional names supposed to be defined in builtins. Remember that
212 # Regexp for a line that is allowed to be longer than the limit.
247 # List of builtins function names that should not be used, separated by a comma
256 # Colon-delimited sets of names that determine each other's naming style when
323 # Regular expression which should only match function or class names that do
327 # Minimum line length for functions/classes that require docstrings, shorter
[all …]
/tools/test/connectivity/acts/tests/google/wifi/rtt/
DREADME.md8 * functional: Functional tests that each implementation must pass. These
11 test the implementation. Considering that some failures are expected,
20 If a test class is specified, then all tests within that test class are executed.
42 devices without listing specific serial numbers. Note that some tests use a
49 * **lci_reference**, **lcr_reference**: Arrays of bytes used to validate that the *correct* LCI and
/tools/tradefederation/core/src/com/android/tradefed/util/
DListInstrumentationParser.java73 InstrumentationTarget that = (InstrumentationTarget)object; in equals() local
74 return Objects.equals(this.packageName, that.packageName) in equals()
75 && Objects.equals(this.runnerName, that.runnerName) in equals()
76 && Objects.equals(this.targetName, that.targetName); in equals()

1234