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

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DependencyGraph.java 53 /** Format to chain constraint dependencies: button 1 above button2 etc */
69 // the parent id from a constraint, only via parent-relative params
99 Constraint constraint = new Constraint(type, view, parentView); local
100 view.dependsOn.add(constraint);
101 parentView.dependedOnBy.add(constraint);
104 // id-based constraint.
115 Constraint constraint = new Constraint(type, view, target) local
302 Constraint constraint = path.get(i); local
    [all...]
  /frameworks/base/media/java/android/drm/mobile1/
DrmConstraintInfo.java 22 * This class provides interfaces to access the DRM constraint.
26 * The constraint of count.
31 * The constraint of start date.
36 * The constraint of end date.
41 * The constraint of interval.
56 * Get the count constraint.
65 * Get the start date constraint.
77 * Get the end date constraint.
89 * Get the Interval constraint.
  /external/llvm/test/CodeGen/Generic/
2007-04-27-InlineAsm-X-Dest.ll 3 ; Test that we can have an "X" output constraint.
  /external/llvm/test/FrontendC/
2010-08-12-asm-aggr-arg.c 3 // we don't get an error with "input constraint with a matching output
4 // constraint of incompatible type!"
  /external/llvm/test/CodeGen/Thumb/
inlineasm-imm-thumb.ll 3 ; Test Thumb-mode "I" constraint, for ADD immediate.
9 ; Test Thumb-mode "J" constraint, for negated ADD immediates.
15 ; Test Thumb-mode "K" constraint, for compatibility with GCC's internal use.
21 ; Test Thumb-mode "L" constraint, for 3-operand ADD immediates.
27 ; Test Thumb-mode "M" constraint, for "ADD r = sp + imm".
33 ; Test Thumb-mode "N" constraint, for values between 0 and 31.
39 ; Test Thumb-mode "O" constraint, for "ADD sp = sp + imm".
  /external/llvm/test/CodeGen/ARM/
inlineasm-imm-arm.ll 3 ; Test ARM-mode "I" constraint, for any Data Processing immediate.
9 ; Test ARM-mode "J" constraint, for compatibility with unknown use in GCC.
15 ; Test ARM-mode "K" constraint, for bitwise inverted Data Processing immediates.
21 ; Test ARM-mode "L" constraint, for negated Data Processing immediates.
27 ; Test ARM-mode "M" constraint, for value between 0 and 32.
  /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...]