HomeSort by relevance Sort by last modified time
    Searched full:that (Results 301 - 325 of 189771) sorted by null

<<11121314151617181920>>

  /external/skqp/tests/
TestTest.cpp 4 * Use of this source code is governed by a BSD-style license that can be
21 // This is an example of a GPU test that uses GrContextOptions to do the test.
28 // This is an example of a GPU test that tests a property that should work for all GPU contexts.
37 // This is an example of a GPU test that tests a property that should work for all GPU contexts that
46 // This is an example of a GPU test that tests a property that uses the null GPU context. It should
47 // be used if the test tests some behavior that is mocked with the null context
    [all...]
  /external/toolchain-utils/crosperf/
flag_test_unittest.py 16 # Verify that test_flag.is_test exists, that it is a list,
17 # and that it contains 1 element.
21 # Verify that the getting the flag works and that the flag
26 # Verify that setting the flat to True, then getting it, works.
30 # Verify that setting the flag to False, then getting it, works.
34 # Verify that test_flag.is_test still exists, that it still is a
35 # list, and that it still contains 1 element
    [all...]
  /external/v8/src/compiler/
diamond.h 2 // Use of this source code is governed by a BSD-style license that can be
35 // Place {this} after {that} in control flow order.
36 void Chain(Diamond& that) { branch->ReplaceInput(1, that.merge); }
38 // Place {this} after {that} in control flow order.
39 void Chain(Node* that) { branch->ReplaceInput(1, that); }
41 // Nest {this} into either the if_true or if_false branch of {that}.
42 void Nest(Diamond& that, bool if_true) {
44 branch->ReplaceInput(1, that.if_true)
    [all...]
  /prebuilts/go/darwin-x86/src/compress/testdata/
gettysburg.txt 3 to the proposition that all men are created equal.
4 Now we are engaged in a great Civil War, testing whether that
7 We are met on a great battle-field of that war.
8 We have come to dedicate a portion of that field, as a final
9 resting place for those who here gave their lives that that
10 nation might live. It is altogether fitting and proper that
21 the great task remaining before us - that from these honored
22 dead we take increased devotion to that cause for which they
24 that we here highly resolve that these dead shall not hav
    [all...]
  /prebuilts/go/linux-x86/src/compress/testdata/
gettysburg.txt 3 to the proposition that all men are created equal.
4 Now we are engaged in a great Civil War, testing whether that
7 We are met on a great battle-field of that war.
8 We have come to dedicate a portion of that field, as a final
9 resting place for those who here gave their lives that that
10 nation might live. It is altogether fitting and proper that
21 the great task remaining before us - that from these honored
22 dead we take increased devotion to that cause for which they
24 that we here highly resolve that these dead shall not hav
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/stacks/
ThreadSnapshot.java 64 public ThreadSnapshot(ThreadSnapshot that) {
65 this.name = that.name;
66 this.daemon = that.daemon;
67 this.priority = that.priority;
68 this.tid = that.tid;
69 this.sysTid = that.sysTid;
70 this.vmState = that.vmState;
71 int N = that.attributeText.size();
73 this.attributeText.add(that.attributeText.get(i));
75 this.heldMutexes = that.heldMutexes
    [all...]
  /external/autotest/client/site_tests/kernel_TPMPing/
control 2 # Use of this source code is governed by a BSD-style license that can be
17 Checks that there is a TPM, that the driver can talk to it, and that the
18 TCS daemon can talk to the driver. Assumes that the firmware has started
22 Also checks that the driver contains an important patch (gentle shutdown).
  /external/autotest/client/site_tests/network_ChromeWifiTDLS/
control 2 # Use of this source code is governed by a BSD-style license that can be
7 PURPOSE = "Verify that chrome.networkingPrivate recognizes TDLS enable call."
17 Tests that Shill responds to a Device.PerformTDLSOperation call via the
18 networikingPrivate API. It does not assume that configuration will actually
19 succeed (since that will depend on the environment), just that the call itself
  /external/libmojo/base/android/java/src/org/chromium/base/annotations/
UsedByReflection.java 2 // Use of this source code is governed by a BSD-style license that can be
11 * Annotation used for marking methods and fields that are called by reflection.
12 * Useful for keeping components that would otherwise be removed by Proguard.
13 * Use the value parameter to mention a file that calls this method.
15 * Note that adding this annotation to a method is not enough to guarantee that
  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_QuantizedAdd.pbtxt 6 The float value that the lowest quantized `x` value represents.
12 The float value that the highest quantized `x` value represents.
18 The float value that the lowest quantized `y` value represents.
24 The float value that the highest quantized `y` value represents.
30 The float value that the lowest quantized output value represents.
36 The float value that the highest quantized output value represents.
api_def_QuantizedMul.pbtxt 6 The float value that the lowest quantized `x` value represents.
12 The float value that the highest quantized `x` value represents.
18 The float value that the lowest quantized `y` value represents.
24 The float value that the highest quantized `y` value represents.
30 The float value that the lowest quantized output value represents.
36 The float value that the highest quantized output value represents.
  /external/valgrind/memcheck/tests/
long_namespace_xml.cpp 2 /* Check that very long function names are NOT truncated in
28 // A function that returns p in such a way that gcc 4.5.x does not recognize
29 // that it returns p. Prevents that the optimizer throws the assignment away
30 // that occurs just before the free() call.
  /packages/apps/Settings/src/com/android/settings/vpn2/
AppVpnInfo.java 24 AppVpnInfo that = (AppVpnInfo) other; local
26 int result = packageName.compareTo(that.packageName);
28 result = that.userId - userId;
36 AppVpnInfo that = (AppVpnInfo) other; local
37 return userId == that.userId && Objects.equals(packageName, that.packageName);
  /art/test/1948-obsolete-const-method-handle/util-src/
info.txt 3 TestInvoker and Test1948 classes. These additions are a new method that loads a
4 constant method-handle and invokes it in TestInvoker and functions that will
5 return the dex & class bytes for the redefinition that changes the target of the
  /dalvik/dx/tests/008-field/
info.txt 2 invalid. That being said, the system should still have no trouble parsing and
5 The salient bit of parsing tested here is that the class has a single
7 (so that the names can be verified in debugging output).
  /dalvik/dx/tests/009-method/
info.txt 2 invalid. That being said, the system should still have no trouble parsing and
5 The salient bit of parsing tested here is that the class has a single
7 (so that the names can be verified in debugging output).
  /device/google/cuttlefish_common/host/libs/config/
README.md 3 This package supplies library that supports VM configuration by:
6 * creating configuration file that can be used with `libvirt` directly.
18 that is used to initialize `libvirt` domain.
  /external/autotest/client/common_lib/
priorities.py 4 # We include a 'Default' level just below what BVT will run at so that when
5 # the priority rework code is rolled out, any code that doesn't specify a
6 # priority, such as suites on old branches, will inherit a priority that makes
  /external/autotest/client/deps/glbench/
README 2 # Use of this source code is governed by a BSD-style license that can be
5 This deps brings install ChromeOS glbench into an image. Tests that depend on
7 build system and installs the package that gets created for glbench.
  /external/autotest/client/deps/ibusclient/
README 2 # Use of this source code is governed by a BSD-style license that can be
5 This deps brings install ChromeOS ibusclient into an image. Tests that
7 the Chrome OS build system and installs the package that gets created for
  /external/autotest/client/deps/nvmap_compactor/
README 2 # Use of this source code is governed by a BSD-style license that can be
5 This deps brings install ChromeOS nvmap_compactor into an image. Tests that depend
7 build system and installs the package that gets created for nvmap_compactor.
  /external/autotest/client/site_tests/platform_DaemonsRespawn/
control 4 Tests that daemons restart automatically when killed. This will kill
5 a few key daemons and make sure that they have been restarted properly.
9 PURPOSE = 'Verify that daemons restart when they are killed.'
  /external/autotest/server/site_tests/dummy_FailServer/
dummy_FailServer.py 2 # Use of this source code is governed by a BSD-style license that can be
9 """A test that always fails."""
13 """Run the test that always fails, once"""
  /external/autotest/site_utils/lxc/container_pool/
error.py 2 # Use of this source code is governed by a BSD-style license that can be
7 """Indicates that a message with an unrecoganized type was received."""
11 """Indicates that a factory worker timed out."""
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
RawContentVerifier.java 4 * Interface for ContentVerifiers that also support raw signatures that can be
10 * Verify that the expected signature value was derived from the passed in digest.

Completed in 2074 milliseconds

<<11121314151617181920>>