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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/mclinker/include/mcld/
AttributeOption.h 23 const AttrConstraint& constraint() const { return m_Constraint; } function in class:mcld::AttributeOption
24 AttrConstraint& constraint() { return m_Constraint; } function in class:mcld::AttributeOption
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
stride.h 16 CloogConstraint *constraint; member in struct:cloogstride
22 CloogConstraint *constraint, cloog_int_t factor);
  /external/tensorflow/tensorflow/core/framework/
kernel_def_builder.cc 39 auto* constraint = kernel_def_->add_constraint(); local
40 constraint->set_name(attr_name);
41 auto* allowed_values = constraint->mutable_allowed_values()->mutable_list();
50 auto* constraint = kernel_def_->add_constraint(); local
51 constraint->set_name(attr_name);
52 constraint->mutable_allowed_values()->mutable_list()->add_type(allowed);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
compile.go 382 type constraint struct { type
386 var passOrder = [...]constraint{
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
compile.go 382 type constraint struct { type
386 var passOrder = [...]constraint{
  /prebuilts/sdk/current/extras/constraint-layout/solver/
constraint-layout-solver-1.1.0-beta1.jar 
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 97 String methodBody, constraint, title; field in class:BuildDalvikSuite.MethodData
364 // main class to execute; opcode/constraint; test purpose
430 if (md.constraint != null) {
431 details = " Constraint " + md.constraint + ", " + details;
710 // find the @title/@constraint in javadoc comment for this method
718 String title = null, constraint = null;
722 // now grep @title and @constraint
734 // constraint can be one line only
735 Matcher constraintM = Pattern.compile("@constraint (.*)").matcher
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Constraints.java 31 * Factories and utilities pertaining to the {@link Constraint} interface.
42 * constraint. Any operations that add new elements to the collection will
43 * call the provided constraint. However, this method does not verify that
44 * existing elements satisfy the constraint.
49 * @param constraint the constraint that validates added elements
53 Collection<E> collection, Constraint<? super E> constraint) {
54 return new ConstrainedCollection<E>(collection, constraint);
60 private final Constraint<? super E> constraint field in class:Constraints.ConstrainedCollection
99 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedSet
137 final Constraint<? super E> constraint; field in class:Constraints.ConstrainedSortedSet
190 final Constraint<? super E> constraint; field in class:Constraints.ConstrainedList
257 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedListIterator
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelinePainter.java 35 import com.android.ide.common.layout.relative.DependencyGraph.Constraint;
120 // the constraint arrows
143 /** Paints a particular match constraint */
151 // Display the constraint. Remove the @id/ and @+id/ prefixes to make the text
154 String constraint = m.getConstraint(false /* generateId */); local
155 String description = constraint.replace(NEW_ID_PREFIX, "").replace(ID_PREFIX, "");
166 /** Paints a constraint cycle */
167 void paintCycle(IGraphics gc, GuidelineHandler state, List<Constraint> cycle) {
182 for (Constraint constraint : cycle)
    [all...]
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/skia/src/core/
SkLiteRecorder.cpp 144 const SkPaint* paint, SrcRectConstraint constraint) {
145 fDL->drawImageRect(SkImage::MakeFromBitmap(bm), src, dst, paint, constraint); local
165 const SkPaint* paint, SrcRectConstraint constraint) {
166 fDL->drawImageRect(sk_ref_sp(img), src, dst, paint, constraint); local
  /external/skqp/src/core/
SkLiteRecorder.cpp 144 const SkPaint* paint, SrcRectConstraint constraint) {
145 fDL->drawImageRect(SkImage::MakeFromBitmap(bm), src, dst, paint, constraint); local
165 const SkPaint* paint, SrcRectConstraint constraint) {
166 fDL->drawImageRect(sk_ref_sp(img), src, dst, paint, constraint); local
  /external/tensorflow/tensorflow/python/ops/
resource_variable_ops.py 215 constraint=None):
247 constraint: An optional projection function to be applied to the variable
282 constraint=constraint)
293 constraint=None):
320 constraint: An optional projection function to be applied to the variable
349 if constraint is not None and not callable(constraint):
350 raise ValueError("The `constraint` argument must be a callable.")
436 self._constraint = constraint
609 def constraint(self): member in class:ResourceVariable
    [all...]
variable_scope.py 235 custom_getter=None, constraint=None):
301 constraint: An optional projection function to be applied to the variable
354 constraint=None):
376 constraint=constraint)
394 constraint=constraint)
408 use_resource=use_resource, constraint=constraint)
429 if "constraint" in estimator_util.fn_args(custom_getter)
974 def constraint(self): member in class:VariableScope
    [all...]
variables.py 146 constraint=None):
191 constraint: An optional projection function to be applied to the variable
234 constraint=constraint)
254 constraint=None):
284 constraint: An optional projection function to be applied to the variable
307 if constraint is not None and not callable(constraint):
308 raise ValueError("The `constraint` argument must be a callable.")
392 self._constraint = constraint
583 def constraint(self): member in class:Variable
    [all...]
  /frameworks/base/core/java/android/widget/
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...]
  /frameworks/base/tools/aapt2/cmd/
Util.cpp 119 SplitConstraints constraint; local
122 constraint.configs.insert(config.CopyWithoutSdkVersion());
124 constraint.configs.insert(config);
127 adjusted_constraints.push_back(std::move(constraint));
  /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...]
  /toolchain/binutils/binutils-2.27/gold/
script-c.h 76 /* A constraint for whether to use a particular output section
81 /* No constraint. */
87 /* Special constraint. */
107 /* A constraint on this output section. */
108 enum Section_constraint constraint; member in struct:gold::Parser_output_section_header
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
MapConstraintsTest.java 82 MapConstraint<Object, Object> constraint = MapConstraints.notNull(); local
83 constraint.checkKeyValue("foo", 1);
84 assertEquals("Not null", constraint.toString());
86 constraint.checkKeyValue(null, 1);
90 constraint.checkKeyValue("foo", null);
94 constraint.checkKeyValue(null, null);
  /external/guava/guava-tests/test/com/google/common/collect/
MapConstraintsTest.java 84 MapConstraint<Object, Object> constraint = MapConstraints.notNull(); local
85 constraint.checkKeyValue("foo", 1);
86 assertEquals("Not null", constraint.toString());
88 constraint.checkKeyValue(null, 1);
92 constraint.checkKeyValue("foo", null);
96 constraint.checkKeyValue(null, null);
  /frameworks/compile/mclinker/include/mcld/Script/
OutputSectDesc.h 39 enum Constraint { NO_CONSTRAINT, ONLY_IF_RO, ONLY_IF_RW };
78 Constraint constraint() const { return m_Constraint; } function in struct:mcld::OutputSectDesc::Prolog
104 Constraint m_Constraint;
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneFilterTypeAdapter.java 64 String constraint; field in class:TimeZoneFilterTypeAdapter.FilterTypeResult
67 public FilterTypeResult(int type, String constraint, int time) {
69 this.constraint = constraint;
75 return constraint;
130 vh.str = filter.constraint;
132 vh.strTextView.setText(filter.constraint);
400 protected void publishResults(CharSequence constraint, FilterResults
405 if (TextUtils.isEmpty(constraint)) {
413 Log.d(TAG, "publishResults: " + results.count + " of null [" + constraint);
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
CursorAdapterTest.java 346 final String constraint = "constraint"; local
349 assertSame(mCursor, cursorAdapter.runQueryOnBackgroundThread(constraint));
354 assertNull(cursorAdapter.runQueryOnBackgroundThread(constraint));
466 public Cursor runQuery(CharSequence constraint) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
SimplexTableau.java 48 * 0 0 1 0 0 1 0 0 2 &lt;= constraint 1
49 * 0 0 0 1 0 0 1 0 3 &lt;= constraint 2
50 * 0 0 1 1 0 0 0 1 4 &lt;= constraint 3
178 // initialize the constraint rows
182 LinearConstraint constraint = constraints.get(i); local
186 copyArray(constraint.getCoefficients().getData(), matrix.getDataRef()[row]);
191 getInvertedCoeffiecientSum(constraint.getCoefficients()));
195 matrix.setEntry(row, width - 1, constraint.getValue());
198 if (constraint.getRelationship() == Relationship.LEQ) {
200 } else if (constraint.getRelationship() == Relationship.GEQ)
    [all...]

Completed in 808 milliseconds

1 2 3 4 5 6 7 8 91011>>