HomeSort by relevance Sort by last modified time
    Searched full:control (Results 51 - 75 of 13938) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/autotest/site_utils/
control_file_preprocessor.py 7 """Tool for preprocessing control files to build a suite to control files map.
12 {'suite1': ['path/to/test1/control', 'path/to/test2/control'],
13 'suite2': ['path/to/test4/control', 'path/to/test5/control']}
17 at build time to generate said suite to control files map, which dynamic_suite
35 """Find all control files in autotest_dir that have 'SUITE='
37 @param autotest_dir: The directory to search for control files.
38 @return: All control files in autotest_dir that have a suite attribute
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractMapEntryTest.java 47 private static <K, V> Entry<K, V> control(K key, V value) {
64 assertEquals(control("foo", 1), foo1);
65 assertEquals(control("bar", 2), entry("bar", 2));
66 assertFalse(control("foo", 1).equals(entry("foo", 2)));
67 assertFalse(foo1.equals(control("bar", 1)));
73 assertEquals(control(NK, 1), entry(NK, 1));
74 assertEquals(control("bar", NV), entry("bar", NV));
75 assertFalse(control(NK, 1).equals(entry(NK, 2)));
76 assertFalse(entry(NK, 1).equals(control("bar", 1)));
82 assertEquals(control("foo", 1).hashCode(), entry("foo", 1).hashCode())
    [all...]
MultisetsImmutableEntryTest.java 39 private static <E> Entry<E> control(E element, int count) { method in class:MultisetsImmutableEntryTest
55 assertEquals(control("foo", 1), entry("foo", 1));
56 assertEquals(control("bar", 2), entry("bar", 2));
57 assertFalse(control("foo", 1).equals(entry("foo", 2)));
58 assertFalse(entry("foo", 1).equals(control("bar", 1)));
64 assertEquals(control(NE, 1), entry(NE, 1)); method
65 assertFalse(control(NE, 1).equals(entry(NE, 2)));
66 assertFalse(entry(NE, 1).equals(control("bar", 1)));
72 assertEquals(control("foo", 1).hashCode(), entry("foo", 1).hashCode());
73 assertEquals(control("bar", 2).hashCode(), entry("bar", 2).hashCode())
    [all...]
  /prebuilts/go/darwin-x86/src/math/
modf_386.s 11 FSTCW -2(SP) // save old Control Word
13 ORW $0x0c00, AX // Rounding Control set to truncate
14 MOVW AX, -4(SP) // store new Control Word
15 FLDCW -4(SP) // load new Control Word
17 FLDCW -2(SP) // load old Control Word
  /prebuilts/go/linux-x86/src/math/
modf_386.s 11 FSTCW -2(SP) // save old Control Word
13 ORW $0x0c00, AX // Rounding Control set to truncate
14 MOVW AX, -4(SP) // store new Control Word
15 FLDCW -4(SP) // load new Control Word
17 FLDCW -2(SP) // load old Control Word
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
GridDataFactory.java 15 import org.eclipse.swt.widgets.Control;
64 * // Example 3: Typical grid data for a scrollable control (a list box, tree, table, etc.)
95 * IMPORTANT: WHEN ASSIGNING LAYOUT DATA TO A CONTROL, BE SURE TO USE
96 * gridDataFactory.applyTo(control) AND NEVER control.setLayoutData(gridDataFactory).
102 private final Control m_control;
111 private GridDataFactory(Control control, GridData gridData) {
112 m_control = control;
124 public static GridDataFactory create(Control control)
    [all...]
  /external/tcpdump/
ppp.h 20 #define PPP_CONTROL 0x03 /* The control byte value */
47 #define PPP_IPCP 0x8021 /* IP Control Protocol */
48 #define PPP_OSICP 0x8023 /* OSI Network Layer Control Protocol */
49 #define PPP_NSCP 0x8025 /* Xerox NS IDP Control Protocol */
50 #define PPP_DECNETCP 0x8027 /* DECnet Control Protocol */
51 #define PPP_APPLECP 0x8029 /* Appletalk Control Protocol */
52 #define PPP_IPXCP 0x802b /* Novell IPX Control Protocol */
53 #define PPP_STIICP 0x8033 /* Strean Protocol Control Protocol */
54 #define PPP_VINESCP 0x8035 /* Banyan Vines Control Protocol */
55 #define PPP_IPV6CP 0x8057 /* IPv6 Control Protocol *
    [all...]
  /external/autotest/server/samples/
parallel_sleeptest.srv 8 This control file executes multiple sleeptest tests on a machine
14 1. Replace the sleeptest control files with the required test control files
16 3. Run the control file through autoserv using
17 server/autoserv <this control file path> -m <machines> -r <subdir to contain the run results>
22 # Specify the path to the client control files and the tag names
24 tests = [("client/tests/sleeptest/control", "sleeptag0"),
25 ("client/tests/sleeptest/control", "sleeptag1"),
29 control = open(os.path.join(job.autodir,tests[instance][0])).read()
33 modified control file (that contains the barrier code added to it
    [all...]
  /external/llvm/test/Transforms/FunctionAttrs/
forced.ll 1 ; RUN: opt < %s -S -functionattrs | FileCheck %s --check-prefix=CHECK-CONTROL
4 ; CHECK-CONTROL: define void @foo() #0 {
11 ; CHECK-CONTROL: attributes #0 = { norecurse readnone }
  /art/test/081-hot-exceptions/
info.txt 3 cause a control flow change to deviate from the current method.
  /external/autotest/client/tools/
autotest 19 control = os.path.join(autodir, 'control') variable
20 state = os.path.join(autodir, 'control.state')
25 os.system(autotest + ' --continue ' + control)
  /external/autotest/server/control_segments/
client_wrapper 7 at.run(control, host=host, use_packaging=use_packaging)
  /external/autotest/utils/
site_test_importer_attributes.py 15 # We set the test name to the dirname of the control file.
17 if test_new_name[-1] == 'control' or test_new_name[-1] == 'control.srv':
23 test.name = re.sub('control.*\.', '', control_name)
  /external/clang/test/Sema/
block-return-1.c 5 ^ (void) { if (j) return 1; }(); // expected-error {{control may reach end of non-void block}}
block-return-3.c 4 ^ int (void) { }(); // expected-error {{control reaches end of non-void block}}
  /external/lzma/CPP/Windows/Control/
Edit.h 1 // Windows/Control/Edit.h
  /external/snakeyaml/src/test/resources/pyyaml/
spec-02-17.data 2 control: "\b1998\t1999\t2000\n"
  /external/snakeyaml/src/test/resources/specification/
example2_17.yaml 2 control: "\b1998\t1999\t2000\n"
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
package.html 5 <p>Contains APIs that control the routing of media channels and streams from the current device
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/score/
syscontrol_32.s 2 * tests for system control instruction relaxation
  /external/autotest/server/cros/dynamic_suite/
control_file_getter.py 16 Interface for classes that can list and fetch known control files.
25 Gather a list of paths to control files.
27 @param suite_name: The name of a suite we would like control files for.
36 Given a path to a control file, return its contents.
38 @param test_path: the path to the control file.
39 @return the contents of the control file specified by the path.
47 Given the name of a control file, return its contents.
49 @param test_name: the name of the test whose control file is desired.
50 @return the contents of the control file specified by the name.
57 """Wraps ControlFileGetter to cache the retrieved control file list an
    [all...]
  /external/libpcap/
ppp.h 18 #define PPP_CONTROL 0x03 /* The control byte value */
43 #define PPP_IPCP 0x8021 /* IP Control Protocol */
44 #define PPP_OSICP 0x8023 /* OSI Network Layer Control Protocol */
45 #define PPP_NSCP 0x8025 /* Xerox NS IDP Control Protocol */
46 #define PPP_DECNETCP 0x8027 /* DECnet Control Protocol */
47 #define PPP_APPLECP 0x8029 /* Appletalk Control Protocol */
48 #define PPP_IPXCP 0x802b /* Novell IPX Control Protocol */
49 #define PPP_STIICP 0x8033 /* Strean Protocol Control Protocol */
50 #define PPP_VINESCP 0x8035 /* Banyan Vines Control Protocol */
51 #define PPP_IPV6CP 0x8057 /* IPv6 Control Protocol *
    [all...]
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifFrame.java 8 /** Control Flag. */
10 /** Control Flag. */
  /external/toybox/toys/other/
README 9 build control image for Linux From Scratch 6.8):
13 http://landley.net/aboriginal/control-images
  /external/v8/test/unittests/compiler/
load-elimination-unittest.cc 40 Node* control = graph()->start(); local
44 value, effect, control);
46 object1, store1, control));
52 object2, store1, control);
54 object1, store2, control));
60 value, Int32Constant(10), object1, store2, control);
63 object2, store3, control));
67 object1, store3, control));

Completed in 1150 milliseconds

1 23 4 5 6 7 8 91011>>