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

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/public/platform/
WebLayerPositionConstraint.h 45 WebLayerPositionConstraint constraint; local
46 constraint.isFixedPosition = true;
47 constraint.isFixedToRightEdge = fixedToRightEdge;
48 constraint.isFixedToBottomEdge = fixedToBottomEdge;
49 return constraint;
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
SliderJoint.java 48 * The slider constraint allows the body to rotate around one axis and translate along this axis.
83 return ((SliderConstraint) constraint).getLowerLinLimit();
87 ((SliderConstraint) constraint).setLowerLinLimit(lowerLinLimit);
91 return ((SliderConstraint) constraint).getUpperLinLimit();
95 ((SliderConstraint) constraint).setUpperLinLimit(upperLinLimit);
99 return ((SliderConstraint) constraint).getLowerAngLimit();
103 ((SliderConstraint) constraint).setLowerAngLimit(lowerAngLimit);
107 return ((SliderConstraint) constraint).getUpperAngLimit();
111 ((SliderConstraint) constraint).setUpperAngLimit(upperAngLimit);
115 return ((SliderConstraint) constraint).getSoftnessDirLin()
    [all...]
HingeJoint.java 46 * Hinge constraint, or revolute joint restricts two additional angular degrees of freedom,
77 ((HingeConstraint) constraint).enableAngularMotor(enable, targetVelocity, maxMotorImpulse);
81 ((HingeConstraint) constraint).setLimit(low, high);
88 ((HingeConstraint) constraint).setLimit(low, high, _softness, _biasFactor, _relaxationFactor);
92 return ((HingeConstraint) constraint).getUpperLimit();
96 return ((HingeConstraint) constraint).getLowerLimit();
101 ((HingeConstraint) constraint).setAngularOnly(angularOnly);
105 return ((HingeConstraint) constraint).getHingeAngle();
116 capsule.write(((HingeConstraint) constraint).getLowerLimit(), "lowerLimit", 1e30f);
117 capsule.write(((HingeConstraint) constraint).getUpperLimit(), "upperLimit", -1e30f)
    [all...]
Point2PointJoint.java 46 * Point to point constraint, also known as ball socket joint limits the translation
48 * A chain of rigidbodies can be connected using this constraint.
66 ((Point2PointConstraint) constraint).setting.damping = value;
70 ((Point2PointConstraint) constraint).setting.impulseClamp = value;
74 ((Point2PointConstraint) constraint).setting.tau = value;
78 return ((Point2PointConstraint) constraint).setting.damping;
82 return ((Point2PointConstraint) constraint).setting.impulseClamp;
86 return ((Point2PointConstraint) constraint).setting.tau;
109 constraint = new Point2PointConstraint(nodeA.getObjectId(), nodeB.getObjectId(), Converter.convert(pivotA), Converter.convert(pivotB));
PhysicsJoint.java 46 protected TypedConstraint constraint; field in class:PhysicsJoint
70 return constraint.getAppliedImpulse();
74 * @return the constraint
77 return constraint;
  /external/guava/guava/src/com/google/common/collect/
Constraints.java 32 * Factories and utilities pertaining to the {@link Constraint} interface.
45 private enum NotNullConstraint implements Constraint<Object> {
59 * Returns a constraint that verifies that the element is not null. If the
64 public static <E> Constraint<E> notNull() {
65 return (Constraint<E>) NotNullConstraint.INSTANCE;
70 * constraint. Any operations that add new elements to the collection will
71 * call the provided constraint. However, this method does not verify that
72 * existing elements satisfy the constraint.
77 * @param constraint the constraint that validates added element
88 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedCollection
127 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedSet
165 final Constraint<? super E> constraint; field in class:Constraints.ConstrainedSortedSet
218 final Constraint<? super E> constraint; field in class:Constraints.ConstrainedList
285 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedListIterator
339 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedMultiset
    [all...]
MapConstraints.java 49 * Returns a constraint that verifies that neither the key nor the value is
73 * constraint. Any operations that add new mappings will call the provided
74 * constraint. However, this method does not verify that existing mappings
75 * satisfy the constraint.
80 * @param constraint the constraint that validates added entries
84 Map<K, V> map, MapConstraint<? super K, ? super V> constraint) {
85 return new ConstrainedMap<K, V>(map, constraint);
90 * constraint. Any operations that add new mappings will call the provided
91 * constraint. However, this method does not verify that existing mapping
    [all...]
  /frameworks/base/core/java/android/widget/
FilterQueryProvider.java 30 * Runs a query with the specified constraint. This query is requested
33 * Contract: when constraint is null or empty, the original results,
36 * @param constraint the constraint with which the query must
41 Cursor runQuery(CharSequence constraint);
Filter.java 79 * @param constraint the constraint used to filter the data
83 public final void filter(CharSequence constraint) {
84 filter(constraint, null);
94 * @param constraint the constraint used to filter the data
101 public final void filter(CharSequence constraint, FilterListener listener) {
110 final long delay = (mDelayer == null) ? 0 : mDelayer.getPostingDelay(constraint);
115 // make sure we use an immutable copy of the constraint, so that
117 args.constraint = constraint != null ? constraint.toString() : null
298 CharSequence constraint; field in class:Filter.RequestArguments
    [all...]
CursorFilter.java 33 Cursor runQueryOnBackgroundThread(CharSequence constraint);
48 protected FilterResults performFiltering(CharSequence constraint) {
49 Cursor cursor = mClient.runQueryOnBackgroundThread(constraint);
63 protected void publishResults(CharSequence constraint, FilterResults results) {
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockConstraints.cpp 41 bool isSupported(const WebString& constraint)
43 return constraint == "valid_and_supported_1" || constraint == "valid_and_supported_2";
46 bool isValid(const WebString& constraint)
48 return isSupported(constraint) || constraint == "valid_but_unsupported_1" || constraint == "valid_but_unsupported_2";
  /frameworks/compile/mclinker/include/mcld/
AttributeOption.h 27 const AttrConstraint& constraint() const { return m_Constraint; } function in class:mcld::AttributeOption
28 AttrConstraint& constraint() { return m_Constraint; } function in class:mcld::AttributeOption
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonEmulation.cpp 27 pConfig.attribute().constraint().enableWholeArchive();
28 pConfig.attribute().constraint().enableAsNeeded();
29 pConfig.attribute().constraint().setSharedSystem();
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsEmulation.cpp 27 pConfig.attribute().constraint().enableWholeArchive();
28 pConfig.attribute().constraint().enableAsNeeded();
29 pConfig.attribute().constraint().setSharedSystem();
  /frameworks/compile/mclinker/tools/mcld/lib/Support/
TargetLinkerConfigs.cpp 38 getLDConfig()->attribute().constraint().enableWholeArchive();
39 getLDConfig()->attribute().constraint().disableAsNeeded();
40 getLDConfig()->attribute().constraint().setSharedSystem();
80 getLDConfig()->attribute().constraint().enableWholeArchive();
81 getLDConfig()->attribute().constraint().disableAsNeeded();
82 getLDConfig()->attribute().constraint().setSharedSystem();
113 getLDConfig()->attribute().constraint().enableWholeArchive();
114 getLDConfig()->attribute().constraint().disableAsNeeded();
115 getLDConfig()->attribute().constraint().setSharedSystem();
155 getLDConfig()->attribute().constraint().enableWholeArchive()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollingCoordinatorChromiumTest.cpp 177 WebLayerPositionConstraint constraint = layer->positionConstraint(); local
178 ASSERT_TRUE(constraint.isFixedPosition);
179 ASSERT_TRUE(!constraint.isFixedToRightEdge && !constraint.isFixedToBottomEdge);
186 WebLayerPositionConstraint constraint = layer->positionConstraint(); local
187 ASSERT_TRUE(constraint.isFixedPosition);
188 ASSERT_TRUE(constraint.isFixedToRightEdge && !constraint.isFixedToBottomEdge);
195 WebLayerPositionConstraint constraint = layer->positionConstraint(); local
196 ASSERT_TRUE(constraint.isFixedPosition)
204 WebLayerPositionConstraint constraint = layer->positionConstraint(); local
213 WebLayerPositionConstraint constraint = layer->positionConstraint(); local
222 WebLayerPositionConstraint constraint = layer->positionConstraint(); local
231 WebLayerPositionConstraint constraint = layer->positionConstraint(); local
240 WebLayerPositionConstraint constraint = layer->positionConstraint(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DependencyGraph.java 55 /** Format to chain constraint dependencies: button 1 above button2 etc */
71 // the parent id from a constraint, only via parent-relative params
101 Constraint constraint = new Constraint(type, view, parentView); local
102 view.dependsOn.add(constraint);
103 parentView.dependedOnBy.add(constraint);
106 // id-based constraint.
117 Constraint constraint = new Constraint(type, view, target) local
304 Constraint constraint = path.get(i); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
localvideosource.cc 41 // Constraint keys. Specified by draft-alvestrand-constraints-resolution-00b
70 // Default resolution. If no constraint is specified, this is the resolution we
110 // Updates |format_upper_limit| from |constraint|.
111 // If constraint.maxFoo is smaller than format_upper_limit.foo,
112 // set format_upper_limit.foo to constraint.maxFoo.
114 const MediaConstraintsInterface::Constraint& constraint,
116 if (constraint.key == MediaConstraintsInterface::kMaxWidth) {
117 int value = talk_base::FromString<int>(constraint.value);
119 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight)
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
CursorFilter.java 34 Cursor runQueryOnBackgroundThread(CharSequence constraint);
49 protected FilterResults performFiltering(CharSequence constraint) {
50 Cursor cursor = mClient.runQueryOnBackgroundThread(constraint);
64 protected void publishResults(CharSequence constraint, FilterResults results) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/concept/detail/
general.hpp 44 struct constraint struct in namespace:boost::concepts
53 , constraint<Model>
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMEmulation.cpp 27 pConfig.attribute().constraint().enableWholeArchive();
28 pConfig.attribute().constraint().enableAsNeeded();
29 pConfig.attribute().constraint().setSharedSystem();
  /frameworks/compile/mclinker/lib/Target/X86/
X86Emulation.cpp 37 pConfig.attribute().constraint().enableWholeArchive();
38 pConfig.attribute().constraint().enableAsNeeded();
39 pConfig.attribute().constraint().setSharedSystem();
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaConstraintsImpl.cpp 97 Dictionary constraint; local
98 ok = optionalConstraints.get(i, constraint);
99 if (!ok || constraint.isUndefinedOrNull())
102 constraint.getOwnPropertyNames(localNames);
107 ok = constraint.get(key, value);
  /cts/tests/tests/widget/src/android/widget/cts/
FilterTest.java 157 protected FilterResults performFiltering(CharSequence constraint) {
160 mPerformFilteringConstraint = constraint;
166 protected void publishResults(CharSequence constraint, FilterResults results) {
168 mPublishResultsConstraint = constraint;
  /external/libsepol/src/
constraint.c 21 #include <sepol/policydb/constraint.h>

Completed in 1854 milliseconds

1 2 3 4 5 6 7 8