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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableDouble.h 42 enum Constraint {
47 static PassRefPtrWillBeRawPtr<AnimatableDouble> create(double number, Constraint constraint = Unconstrained)
49 return adoptRefWillBeNoop(new AnimatableDouble(number, constraint));
61 AnimatableDouble(double number, Constraint constraint)
63 , m_constraint(constraint)
71 Constraint m_constraint;
  /external/llvm/include/llvm/MC/MCParser/
MCParsedAsmOperand.h 26 /// Constraint - The constraint on this operand. Only valid when parsing
28 std::string Constraint;
34 void setConstraint(StringRef C) { Constraint = C.str(); }
35 StringRef getConstraint() { 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...]
Constraint.java 23 * A constraint that an element must satisfy in order to be added to a
38 * passed-in element. A non-deterministic constraint cannot reliably enforce
39 * that all the collection's elements meet the constraint, since the constraint
49 public interface Constraint<E> {
62 * Returns a brief human readable description of this constraint, such as
  /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...]
ConstraintPainter.java 42 import com.android.ide.common.layout.relative.DependencyGraph.Constraint;
62 * Paints a given match as a constraint.
77 * Paints a constraint.
83 * @param constraint The constraint to be drawn
85 private static void paintConstraint(IGraphics graphics, Constraint constraint,
86 Set<Constraint> allConstraints) {
87 ViewData source = constraint.from;
88 ViewData target = constraint.to
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
Parameter.java 89 enum Constraint {
91 * This value must be unique. This constraint usually only makes sense
99 * This value must already exist. This constraint usually only makes sense
136 public static Constraint get(String name) {
138 return Constraint.valueOf(name.toUpperCase(Locale.US));
140 AdtPlugin.printErrorToConsole("Unexpected template constraint '" + name + "'");
145 for (Constraint s : Constraint.values()) {
209 public final EnumSet<Constraint> constraints;
235 EnumSet<Constraint> constraintSet = null
237 Constraint constraint = Constraint.get(s); local
    [all...]
  /external/chromium_org/content/common/media/
media_stream_options.h 25 // Experimental constraint to do device matching. When this optional constraint
44 struct CONTENT_EXPORT Constraint {
45 Constraint();
46 Constraint(const std::string& name,
52 typedef std::vector<Constraint> Constraints;
62 // Fetches |value| from the first audio constraint with a name that matches
66 // to true if the found constraint is mandatory.
67 // Returns false if no constraint is found.
72 // Fetches |value| from the first video constraint with a name that matche
    [all...]
media_stream_options.cc 66 StreamOptions::Constraint::Constraint() {}
68 StreamOptions::Constraint::Constraint(const std::string& name,
media_stream_messages.h 29 IPC_STRUCT_TRAITS_BEGIN(content::StreamOptions::Constraint)
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
mediaconstraintsinterface.h 46 struct Constraint {
47 Constraint() {}
48 Constraint(const std::string& key, const std::string value)
55 class Constraints : public std::vector<Constraint> {
63 // Constraint keys used by a local video source.
74 // Constraint keys used by a local audio source.
86 // Google-specific constraint keys for a local video source
92 // Constraint keys for CreateOffer / CreateAnswer
105 // PeerConnection constraint keys.
110 // Google-specific constraint keys
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakeconstraints.h 54 mandatory_.push_back(Constraint(key, talk_base::ToString<T>(value)));
69 mandatory_.push_back(Constraint(key, talk_base::ToString<T>(value)));
74 optional_.push_back(Constraint(key, talk_base::ToString<T>(value)));
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 369 /// Constraint - This private class represents a constraint, as defined
376 /// There are 5 kinds of constraint, in a hierarchy.
377 /// 1) Any - indicates no constraint, any dependence is possible.
384 class Constraint {
393 /// isEmpty - Return true if the constraint is of kind Empty.
396 /// isPoint - Return true if the constraint is of kind Point.
399 /// isDistance - Return true if the constraint is of kind Distance.
402 /// isLine - Return true if the constraint is of kind Line.
404 /// true if the constraint is of kind Distance
    [all...]
  /external/chromium_org/content/renderer/media/
rtc_media_constraints.cc 24 webrtc::MediaConstraintsInterface::Constraint new_constraint;
33 // Ignore sourceId constraint since that has nothing to do with webrtc.
101 constraints->push_back(Constraint(key, value));
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCMediaConstraints.mm 62 constraints.push_back(webrtc::MediaConstraintsInterface::Constraint(
  /frameworks/compile/mclinker/include/mcld/Script/
OutputSectDesc.h 39 enum Constraint {
84 Constraint constraint() const { return m_Constraint; } function in struct:mcld::OutputSectDesc::Prolog
110 Constraint m_Constraint;
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-integration/1.1/
hamcrest-integration-1.1.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-integration/1.3/
hamcrest-integration-1.3.jar 
  /external/clang/lib/CodeGen/
TargetInfo.h 121 /// Corrects the low-level LLVM type for a given constraint and "usual"
127 StringRef Constraint,
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 97 getConstraintType(const std::string &Constraint) const override;
99 getRegForInlineAsmConstraint(const std::string &Constraint,
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 132 DefinedSVal Constraint;
142 TrackConstraintBRVisitor(DefinedSVal constraint, bool assumption)
143 : Constraint(constraint), Assumption(assumption), IsSatisfied(false),
144 IsZeroCheck(!Assumption && Constraint.getAs<Loc>()),
159 /// Checks if the constraint is valid in the current state.
309 /// Track if we found the node where the constraint was first added.
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 154 /// \brief Returns the value of the specific constraint if
157 MCOI::OperandConstraint Constraint) const {
159 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
160 unsigned Pos = 16 + Constraint * 4;
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.h 212 getConstraintType(const std::string &Constraint) const override;
214 getRegForInlineAsmConstraint(const std::string &Constraint,
236 void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.h 75 ConstraintType getConstraintType(const std::string &Constraint) const override;
78 const char *constraint) const override;
80 std::string &Constraint,
84 getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const override;
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.h 217 getRegForInlineAsmConstraint(const std::string &Constraint,
220 getConstraintType(const std::string &Constraint) const override;
223 const char *constraint) const override;
225 std::string &Constraint,

Completed in 599 milliseconds

1 2 3 4