HomeSort by relevance Sort by last modified time
    Searched refs:control (Results 1 - 25 of 1425) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/
LoginDialog.cpp 73 const CWnd * control; local
77 control = GetDlgItem( IDC_LOGIN_USERNAME_TEXT );
78 assert( control );
79 if( control )
81 control->GetWindowText( mUsername );
86 control = GetDlgItem( IDC_LOGIN_PASSWORD_TEXT );
87 assert( control );
88 if( control )
90 control->GetWindowText( mPassword );
  /external/easymock/src/org/easymock/internal/
MockInvocationHandler.java 26 private final MocksControl control; field in class:MockInvocationHandler
28 public MockInvocationHandler(MocksControl control) {
29 this.control = control;
35 if (control.getState() instanceof RecordState) {
36 LastControl.reportLastControl(control);
38 return control.getState().invoke(
52 return control;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d10v/
warning-001.d 2 #warning : cr6 is a reserved control register
warning-002.d 2 #warning : cr6 is a reserved control register
warning-003.d 2 #warning : cr12 is a reserved control register
warning-004.d 2 #warning : cr12 is a reserved control register
warning-005.d 2 #warning : Warning: cr13 is a reserved control register
warning-006.d 2 #warning : cr13 is a reserved control register
warning-007.d 2 #warning : Warning: cr13 is a reserved control register
warning-008.d 2 #warning : cr15 is a reserved control register
warning-009.d 2 #warning : cr15 is a reserved control register
warning-010.d 2 #warning : cr4 is a reserved control register
warning-011.d 2 #warning : cr4 is a reserved control register
warning-012.d 2 #warning : cr5 is a reserved control register
warning-013.d 2 #warning : cr5 is a reserved control register
instruction_packing-006.s 1 ;; sequence control operands need to be packed with nop's
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_once/
1-2.c 78 int control; variable
83 control = 1;
98 control = 0;
107 if (control != 1) {
2-1.c 77 int control; variable
83 control = 1;
98 control = 0;
107 if (control != 1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/
4-1.c 83 int control = 0; variable
89 control++;
91 if (control != 1)
97 control++;
99 if (control != 2)
105 control++;
107 if (control != 3)
113 control++;
115 if (control != 4)
121 control++
    [all...]
  /external/v8/src/compiler/
effect-control-linearizer.h 39 Node** control);
44 Node* control; member in struct:v8::internal::compiler::EffectControlLinearizer::ValueEffectControl
45 ValueEffectControl(Node* value, Node* effect, Node* control)
46 : value(value), effect(effect), control(control) {}
50 Node** control);
52 Node* control);
54 Node* control);
56 Node* control);
58 Node* control);
    [all...]
  /cts/suite/audio_quality/test/
MixerTest.cpp 42 LOGI("Number of mixel control %d", num_ctls);
44 struct mixer_ctl* control = mixer_get_ctl(mixerp, i); local
45 ASSERT_TRUE(control != NULL);
46 LOGI("Mixer control %s type %s value %d", mixer_ctl_get_name(control),
47 mixer_ctl_get_type_string(control), mixer_ctl_get_num_values(control));
48 free(control);
50 // no mixer control for MobilePre. If this assumption fails,
51 // mixer control should be added
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationThreadTest.java 160 private static class Control {
188 private Control control; field in class:CollationThreadTest.Test
191 Test(String name, String[] data, Collator collator, Random r, Control control) {
195 this.control = control;
201 synchronized (control) {
202 while (!control.go()) {
203 control.wait()
253 final Control control = new Control(); local
278 Control control = new Control(); local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationThreadTest.java 159 private static class Control {
187 private Control control; field in class:CollationThreadTest.Test
190 Test(String name, String[] data, Collator collator, Random r, Control control) {
194 this.control = control;
200 synchronized (control) {
201 while (!control.go()) {
202 control.wait()
252 final Control control = new Control(); local
277 Control control = new Control(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ControlTest.java 37 import java.util.ResourceBundle.Control;
39 import static java.util.ResourceBundle.Control.*;
42 * Test cases for java.util.ResourceBundle.Control
49 * Control with format:FORMAT_PROPERTIES
51 private Control controlP;
54 * Control with format:FORMAT_CLASS
56 private Control controlC;
59 * Control with format:FORMAT_DEFAULT
61 private Control control; field in class:ControlTest
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
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...]

Completed in 218 milliseconds

1 2 3 4 5 6 7 8 91011>>