HomeSort by relevance Sort by last modified time
    Searched refs:constraint (Results 26 - 50 of 593) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webrtc/talk/app/webrtc/
videosource.cc 51 // Default resolution. If no constraint is specified, this is the resolution we
91 // Updates |format_upper_limit| from |constraint|.
92 // If constraint.maxFoo is smaller than format_upper_limit.foo,
93 // set format_upper_limit.foo to constraint.maxFoo.
95 const MediaConstraintsInterface::Constraint& constraint,
97 if (constraint.key == MediaConstraintsInterface::kMaxWidth) {
98 int value = rtc::FromString<int>(constraint.value);
100 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
101 int value = rtc::FromString<int>(constraint.value)
    [all...]
localaudiosource.cc 74 for (const auto& constraint : constraints) {
76 if (!rtc::FromString(constraint.value, &value))
80 if (constraint.key.compare(entry.name) == 0)
  /packages/apps/Car/Dialer/
Android.mk 37 android-support-constraint-layout \
43 android-support-constraint-layout-solver \
  /external/tensorflow/tensorflow/compiler/tf2xla/
tf2xla_supported_ops.cc 46 << "Operator | Type Constraint\n"
50 for (const KernelDef::AttrConstraint& constraint : kdef->constraint()) {
52 for (int type : constraint.allowed_values().list().type()) {
56 constraints.push_back("`" + constraint.name() + "={" +
  /external/trappy/trappy/plotter/
BarPlot.py 100 for i, (constraint, pivot) in enumerate(series_list):
101 result = constraint.result
118 axis.set_title(self.make_title(constraint, pivot, permute, concat))
120 self.add_to_legend(i, line_2d_list[0], constraint, pivot, concat, permute)
LinePlot.py 26 This class uses :mod:`trappy.plotter.Constraint.Constraint` to
29 :mod:`trappy.plotter.Constraint.ConstraintManager`.
158 for i, (constraint, pivot) in enumerate(series_list):
159 result = constraint.result
170 axis.set_title(self.make_title(constraint, pivot, permute, concat))
172 self.add_to_legend(i, line_2d_list[0], constraint, pivot, concat, permute)
StaticPlot.py 20 from trappy.plotter.Constraint import ConstraintManager
29 This class uses :mod:`trappy.plotter.Constraint.Constraint` to
32 :mod:`trappy.plotter.Constraint.ConstraintManager`.
185 def make_title(self, constraint, pivot, permute, concat):
188 return str(constraint)
191 return constraint.get_data_name()
197 def add_to_legend(self, series_index, handle, constraint, pivot, concat, permute):
214 legend_labels[series_index] = constraint._template.name + ":" + constraint.colum
    [all...]
ILinePlot.py 26 from trappy.plotter.Constraint import ConstraintManager
39 This class uses :mod:`trappy.plotter.Constraint.Constraint` to
42 :mod:`trappy.plotter.Constraint.ConstraintManager`.
224 for constraint in self.c_mgr:
227 if constraint.trace_index != trace_idx:
229 legend = constraint._template.name + ":" + constraint.column
232 legend = str(constraint)
234 result = constraint.resul
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowFilter.java 15 public void filter(CharSequence constraint, Filter.FilterListener listener) {
21 ClassParameter.from(CharSequence.class, constraint));
28 ClassParameter.from(CharSequence.class, constraint),
  /external/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
OptionAdapter.java 31 protected FilterResults performFiltering(CharSequence constraint) {
32 final String pattern = constraint.toString().toLowerCase();
47 protected void publishResults(CharSequence constraint, FilterResults results) {
  /external/skqp/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
OptionAdapter.java 31 protected FilterResults performFiltering(CharSequence constraint) {
32 final String pattern = constraint.toString().toLowerCase();
47 protected void publishResults(CharSequence constraint, FilterResults results) {
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMEmulation.cpp 26 pConfig.attribute().constraint().enableWholeArchive();
27 pConfig.attribute().constraint().enableAsNeeded();
28 pConfig.attribute().constraint().setSharedSystem();
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsEmulation.cpp 30 pConfig.attribute().constraint().enableWholeArchive();
31 pConfig.attribute().constraint().enableAsNeeded();
32 pConfig.attribute().constraint().setSharedSystem();
  /frameworks/compile/mclinker/lib/Target/X86/
X86Emulation.cpp 35 pConfig.attribute().constraint().enableWholeArchive();
36 pConfig.attribute().constraint().enableAsNeeded();
37 pConfig.attribute().constraint().setSharedSystem();
  /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...]
  /packages/apps/Car/Launcher/src/com/android/car/carlauncher/
SearchResultAdapter.java 96 protected FilterResults performFiltering(CharSequence constraint) {
98 if (constraint != null && constraint.length() > 0) {
104 constraint.toString(),
121 String displayName, String constraint, boolean isDistractionOptimized) {
125 "^" + constraint + ".*$", Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE);
132 protected void publishResults(CharSequence constraint, FilterResults results) {
  /prebuilts/sdk/current/extras/constraint-layout/solver/
constraint-layout-solver-1.1.0-beta1.jar 
  /external/selinux/libsepol/src/
constraint.c 21 #include <sepol/policydb/constraint.h>
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/buildtag/
buildtag_bad.go 7 // +build !!bang // ERROR "invalid double negative in build constraint"
8 // +build @#$ // ERROR "invalid non-alphanumeric build constraint"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/buildtag/
buildtag_bad.go 7 // +build !!bang // ERROR "invalid double negative in build constraint"
8 // +build @#$ // ERROR "invalid non-alphanumeric build 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...]
  /external/v8/benchmarks/
deltablue.js 32 * A JavaScript implementation of the DeltaBlue constraint-solving
35 * "The DeltaBlue Algorithm: An Incremental Constraint Hierarchy Solver"
41 * the constraint model is built by side-effects from constructors.
148 * (or "constraint") between a set of variables. A constraint supplies
151 * to represent a constraint.
153 function Constraint(strength) {
158 * Activate this constraint and attempt to satisfy it.
160 Constraint.prototype.addConstraint = function () {
166 * Attempt to find a way to enforce this constraint. If successful
    [all...]
  /external/tensorflow/tensorflow/python/ops/
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...]
  /external/v8/src/compiler/
loop-variable-optimizer.cc 76 class LoopVariableOptimizer::Constraint : public ZoneObject {
82 const Constraint* next() const { return next_; }
84 Constraint(Node* left, InductionVariable::ConstraintKind kind, Node* right,
85 const Constraint* next)
92 const Constraint* next_;
107 head_ = new (zone) Constraint(left, kind, right, head_);
119 const Constraint* other_limit = other->head_;
139 const Constraint* head() const { return head_; }
146 const Constraint* head_ = nullptr;
175 // this loop if they are involved in the constraint
    [all...]
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 105 public CharSequence constraint; field in class:BaseEmailAddressAdapter.DirectoryPartition
165 protected FilterResults performFiltering(CharSequence constraint) {
175 if (!TextUtils.isEmpty(constraint)) {
177 .appendPath(constraint.toString())
193 protected void publishResults(CharSequence constraint, FilterResults results) {
196 onDirectoryLoadFinished(constraint, cursors[0], cursors[1]);
229 protected FilterResults performFiltering(CharSequence constraint) {
231 if (!TextUtils.isEmpty(constraint)) {
233 .appendPath(constraint.toString())
246 protected void publishResults(CharSequence constraint, FilterResults results)
    [all...]

Completed in 1604 milliseconds

12 3 4 5 6 7 8 91011>>