/external/easymock/src/org/easymock/internal/ |
H A D | MockInvocationHandler.java | 26 private final MocksControl control;
field in class:MockInvocationHandler 28 public MockInvocationHandler(MocksControl control) {
argument 29 this.control = control;
35 if (control.getState() instanceof RecordState) {
36 LastControl.reportLastControl(control);
38 return control.getState().invoke(
52 return control;
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
H A D | AnimEventListener.java | 48 * @param control The control to which the listener is assigned. 52 public void onAnimCycleDone(AnimControl control, AnimChannel channel, String animName); argument 57 * @param control The control to which the listener is assigned. 61 public void onAnimChange(AnimControl control, AnimChannel channel, String animName); argument
|
H A D | AnimChannel.java | 54 private AnimControl control; field in class:AnimChannel 98 AnimChannel(AnimControl control){ argument 99 this.control = control; 103 * Returns the parent control of this AnimChannel. 105 * @return the parent control of this AnimChannel. 109 return control; 200 * Notice that this method will reset the control's speed to 1.0. 214 Animation anim = control.animationMap.get(name); 218 control [all...] |
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
H A D | CollationThreadTest.java | 189 private Control control; field in class:CollationThreadTest.Test 192 Test(String name, String[] data, Collator collator, Random r, Control control) { argument 196 this.control = control; 202 synchronized (control) { 203 while (!control.go()) { 204 control.wait(); 208 while (control.go()) { 212 control.fail(name + ": incorrect sort"); 218 control 223 runThreads(Thread[] threads, Control control) argument [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | 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)); 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("ba [all...] |
H A D | AbstractMapEntryTest.java | 47 private static <K, V> Entry<K, V> control(K key, V value) { method in class:AbstractMapEntryTest 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("fo [all...] |
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ |
H A D | PhysicsControl.java | 5 package com.jme3.bullet.control; 8 import com.jme3.scene.control.Control; 21 * The physics object is removed from the physics space when the control 22 * is disabled. When the control is enabled again the physics object is
|
H A D | RigidBodyControl.java | 5 package com.jme3.bullet.control; 24 import com.jme3.scene.control.Control; 66 RigidBodyControl control = new RigidBodyControl(collisionShape, mass); 67 control.setAngularFactor(getAngularFactor()); 68 control.setAngularSleepingThreshold(getAngularSleepingThreshold()); 69 control.setCcdMotionThreshold(getCcdMotionThreshold()); 70 control.setCcdSweptSphereRadius(getCcdSweptSphereRadius()); 71 control.setCollideWithGroups(getCollideWithGroups()); 72 control.setCollisionGroup(getCollisionGroup()); 73 control [all...] |
H A D | VehicleControl.java | 5 package com.jme3.bullet.control; 22 import com.jme3.scene.control.Control; 85 VehicleControl control = new VehicleControl(collisionShape, mass); 86 control.setAngularFactor(getAngularFactor()); 87 control.setAngularSleepingThreshold(getAngularSleepingThreshold()); 88 control.setAngularVelocity(getAngularVelocity()); 89 control.setCcdMotionThreshold(getCcdMotionThreshold()); 90 control.setCcdSweptSphereRadius(getCcdSweptSphereRadius()); 91 control.setCollideWithGroups(getCollideWithGroups()); 92 control [all...] |
H A D | GhostControl.java | 5 package com.jme3.bullet.control; 19 import com.jme3.scene.control.Control; 70 GhostControl control = new GhostControl(collisionShape); 71 control.setCcdMotionThreshold(getCcdMotionThreshold()); 72 control.setCcdSweptSphereRadius(getCcdSweptSphereRadius()); 73 control.setCollideWithGroups(getCollideWithGroups()); 74 control.setCollisionGroup(getCollisionGroup()); 75 control.setPhysicsLocation(getPhysicsLocation()); 76 control.setPhysicsRotation(getPhysicsRotationMatrix()); 77 control [all...] |
H A D | CharacterControl.java | 5 package com.jme3.bullet.control; 19 import com.jme3.scene.control.Control; 64 CharacterControl control = new CharacterControl(collisionShape, stepHeight); 65 control.setCcdMotionThreshold(getCcdMotionThreshold()); 66 control.setCcdSweptSphereRadius(getCcdSweptSphereRadius()); 67 control.setCollideWithGroups(getCollideWithGroups()); 68 control.setCollisionGroup(getCollisionGroup()); 69 control.setFallSpeed(getFallSpeed()); 70 control.setGravity(getGravity()); 71 control [all...] |
/external/v8/src/compiler/ |
H A D | change-lowering.h | 33 Node* AllocateHeapNumberWithValue(Node* value, Node* control); 35 Node* LoadHeapNumberValue(Node* value, Node* control); 37 Reduction ChangeBitToBool(Node* val, Node* control); 39 Reduction ChangeFloat64ToTagged(Node* val, Node* control); 40 Reduction ChangeInt32ToTagged(Node* val, Node* control); 41 Reduction ChangeTaggedToFloat64(Node* val, Node* control); 42 Reduction ChangeTaggedToUI32(Node* val, Node* control, Signedness signedness); 43 Reduction ChangeUint32ToTagged(Node* val, Node* control);
|
H A D | graph-builder.cc | 124 // placing a singleton merge as the new control dependency. 133 // Create a merge of the control dependencies of both environments and update 134 // the current environment's control dependency accordingly. 135 Node* control = builder_->MergeControl(this->GetControlDependency(), local 137 UpdateControlDependency(control); 142 other->GetEffectDependency(), control); 148 values_[i] = builder_->MergeValue(values_[i], other->values_[i], control); 154 Node* control = GetControlDependency(); local 156 Node* phi = builder_->NewPhi(1, values()->at(i), control); 159 Node* effect = builder_->NewEffectPhi(1, GetEffectDependency(), control); 164 NewPhi(int count, Node* input, Node* control) argument 174 NewEffectPhi(int count, Node* input, Node* control) argument 184 MergeControl(Node* control, Node* other) argument 205 MergeEffect(Node* value, Node* other, Node* control) argument 222 MergeValue(Node* value, Node* other, Node* control) argument [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
H A D | CameraNode.java | 35 import com.jme3.scene.control.CameraControl; 36 import com.jme3.scene.control.CameraControl.ControlDirection; 58 public CameraNode(String name, CameraControl control) { argument 60 addControl(control); 61 camControl = control;
|
H A D | LightNode.java | 35 import com.jme3.scene.control.LightControl; 36 import com.jme3.scene.control.LightControl.ControlDirection; 58 public LightNode(String name, LightControl control) { argument 60 addControl(control); 61 lightControl = control;
|
/external/strace/tests/ |
H A D | scm_rights.c | 44 } control; local 46 control.cmsg.cmsg_level = SOL_SOCKET; 47 control.cmsg.cmsg_type = SCM_RIGHTS; 48 control.cmsg.cmsg_len = CMSG_LEN(sizeof(fds)); 49 memcpy(CMSG_DATA(&control.cmsg), fds, sizeof(fds)); 54 .msg_control = &control, 55 .msg_controllen = sizeof(control) 69 struct cmsghdr control[4 + ac * sizeof(int) / sizeof(struct cmsghdr)]; local 74 .msg_control = control, 75 .msg_controllen = sizeof(control) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/ |
H A D | ButtonPropertyEditorPresentationImpl.java | 54 Control control = m_propertyToControl.remove(propertyTable, property); 55 if (control != null) { 56 control.dispose(); 67 // prepare control 68 Control control = m_propertyToControl.get(propertyTable, property); 69 if (control == null) { 70 control = createControl(propertyTable, property); 75 setBounds(control, controlX, y, controlWidth, height); 95 * Creates the control for given property and initializes newly created control 167 setBounds(Control control, int newX, int newY, int newWidth, int newHeight) argument 212 put(PropertyTable propertyTable, Property property, Control control) argument [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
H A D | FixASCIIControlsReader.java | 39 private int control = 0; field in class:FixASCIIControlsReader 73 // replace control chars with space 108 * Processes numeric escaped chars to find out if they are a control character. 137 control = 0; 143 control = Character.digit(ch, 10); 156 control = control * 10 + Character.digit(ch, 10); 167 else if (ch == ';' && Utils.isControlChar((char) control)) 170 return (char) control; 183 control [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/ |
H A D | UpdateControl.java | 32 package com.jme3.scene.control; 89 UpdateControl control = new UpdateControl(); 90 control.setSpatial(newSpatial); 91 control.setEnabled(isEnabled()); 92 control.taskQueue.addAll(taskQueue); 93 return control;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
H A D | PixelConverter.java | 33 public PixelConverter(Control control) { argument 34 GC gc = new GC(control); 35 gc.setFont(control.getFont());
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
H A D | NormalRecalcControl.java | 41 import com.jme3.scene.control.AbstractControl; 42 import com.jme3.scene.control.Control; 71 NormalRecalcControl control = new NormalRecalcControl(terrain); 72 control.setSpatial(spatial); 73 control.setEnabled(true); 74 return control;
|
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/ |
H A D | HelloAnimation.java | 55 private AnimControl control; field in class:HelloAnimation 78 control = player.getControl(AnimControl.class); 79 control.addListener(this); 80 channel = control.createChannel(); 85 public void onAnimCycleDone(AnimControl control, AnimChannel channel, String animName) { argument 95 public void onAnimChange(AnimControl control, AnimChannel channel, String animName) { argument
|
/external/tcpdump/ |
H A D | print-llc.c | 155 u_int16_t control; local 172 * of the control field depends on that - I frames 173 * have a two-byte control field, and U frames have 174 * a one-byte control field. 176 control = *(p + 2); 177 if ((control & LLC_U_FMT) == LLC_U_FMT) { 184 * The control field in I and S frames is 196 control = EXTRACT_LE_16BITS(p + 2); 236 printf(", ctrl 0x%02x: ", control); 238 printf(", ctrl 0x%04x: ", control); [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
H A D | Tool.java | 53 WorkSpaceController control = new WorkSpaceController(); 54 control.show();
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
H A D | ServiceTest.java | 60 private IMocksControl control; field in class:ServiceTest 71 control = EasyMock.createStrictControl(); 72 mockController = control.createMock(RpcController.class); 83 TestService mockService = control.createMock(TestService.class); 89 control.replay(); 95 control.verify(); 100 TestService mockService = control.createMock(TestService.class); 118 RpcChannel mockChannel = control.createMock(RpcChannel.class); 133 control.replay(); 137 control [all...] |