HomeSort by relevance Sort by last modified time
    Searched full:apply (Results 301 - 325 of 7701) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/view/src/android/view/cts/
GravityTest.java 46 Gravity.apply(gravity, w, h, mInRect, mOutRect, layoutDirection);
51 Gravity.apply(Gravity.TOP, 2, 3, mInRect, mOutRect);
56 Gravity.apply(Gravity.TOP, 2, 3, mInRect, 5, 5, mOutRect);
72 Gravity.apply(Gravity.BOTTOM, 2, 3, mInRect, mOutRect);
77 Gravity.apply(Gravity.BOTTOM, 2, 3, mInRect, 5, 5, mOutRect);
93 Gravity.apply(Gravity.LEFT, 2, 10, mInRect, mOutRect);
98 Gravity.apply(Gravity.LEFT, 2, 10, mInRect, 5, 5, mOutRect);
114 Gravity.apply(Gravity.START, 2, 10, mInRect, mOutRect);
119 Gravity.apply(Gravity.START, 2, 10, mInRect, 5, 5, mOutRect);
135 Gravity.apply(Gravity.RIGHT, 2, 10, mInRect, mOutRect)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t043synpred.html 19 TLexer.superclass.constructor.apply(this, arguments);
29 TParser.superclass.constructor.apply(this, arguments);
  /external/chromium_org/chrome/browser/prefs/
command_line_pref_store.h 47 // Using the string and boolean maps, apply command-line switches to their
54 // Apply the SSL/TLS preferences from the given switches.
  /external/chromium_org/chrome/test/functional/tracing/
timeline_model_shim.js 6 tracing.TimelineModel.apply(this, arguments);
25 result = this[methodName].apply(this, JSON.parse(args));
  /external/clang/test/SemaTemplate/
dependent-base-member-init.cpp 58 struct X0 : T::template apply<U> {
59 X0(int i) : T::template apply<U>(i) { }
typename-specifier-2.cpp 5 typedef typename MetaFun::template apply<T> type;
10 struct apply { struct in struct:add_pointer
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
r1mpyq.h 12 /* apply the first set of givens rotations to a. */
19 /* apply the second set of givens rotations to a. */
rwupdt.h 25 /* apply the previous transformations to */
39 /* apply the current transformation to r(j,j), b(j), and alpha. */
  /external/icu4c/layout/
GXLayoutEngine.cpp 30 // apply 'mort' table
53 // apply positional tables
GXLayoutEngine2.cpp 28 // apply 'morx' table
50 // apply positional tables
  /external/javasqlite/
NOTICE 2 and others. The following terms apply to all files associated with the
13 they apply.
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
SyntaxTreeBuilder.java 40 * {@link Start#apply(com.google.clearsilver.jsilver.syntax.node.Switch)}.
48 * tree.apply(new SyntaxTreeDumper(System.out));
83 * @param escapeMode The escaping mode to apply to the given AST. If this is not
89 root.apply(typeResolver);
90 root.apply(sequenceOptimizer);
91 root.apply(inlineRewriter);
93 // root.apply(varOptimizer);
98 root.apply(new AutoEscaper(escapeMode, templateName));
TemplateSyntaxTree.java 39 public void apply(Switch sw) { method in class:TemplateSyntaxTree
40 root.apply(sw);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AOptimizedMultipleCommand.java 57 public void apply(Switch sw) { method in class:AOptimizedMultipleCommand
59 commands[i].apply(sw); method
  /external/libsepol/include/sepol/policydb/
sidtab.h 47 int (*apply) (sepol_security_id_t sid,
52 int (*apply) (sepol_security_id_t
  /external/llvm/include/llvm/Target/
TargetCallingConv.td 29 /// CCIfType - If the current argument is one of the specified types, apply
35 /// CCIf - If the predicate matches, apply A.
40 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply
49 /// CCIfInReg - If this argument is marked with the 'inreg' attribute, apply
53 /// CCIfNest - If this argument is marked with the 'nest' attribute, apply
57 /// CCIfSplit - If this argument is marked with the 'split' attribute, apply
61 /// CCIfSRet - If this argument is marked with the 'sret' attribute, apply
65 /// CCIfNotVarArg - If the current function is not vararg - apply the action
  /external/openfst/src/script/
compose.cc 31 Apply<Operation<ComposeArgs1> >("Compose", ifst1.ArcType(), &args);
40 Apply<Operation<ComposeArgs2> >("Compose", ifst1.ArcType(), &args);
concat.cc 29 Apply<Operation<ConcatArgs1> >("Concat", ofst->ArcType(), &args);
37 Apply<Operation<ConcatArgs2> >("Concat", ofst->ArcType(), &args);
difference.cc 30 Apply<Operation<DifferenceArgs1> >("Difference", ifst1.ArcType(), &args);
39 Apply<Operation<DifferenceArgs2> >("Difference", ifst1.ArcType(), &args);
intersect.cc 30 Apply<Operation<IntersectArgs1> >("Intersect", ifst1.ArcType(), &args);
39 Apply<Operation<IntersectArgs2> >("Intersect", ifst1.ArcType(), &args);
push.cc 28 Apply<Operation<PushArgs1> >("Push", ofst->ArcType(), &args);
37 Apply<Operation<PushArgs2> >("Push", ifst.ArcType(), &args);
shortest-path.cc 30 Apply<Operation<ShortestPathArgs1> >("ShortestPath", ifst.ArcType(), &args);
40 Apply<Operation<ShortestPathArgs2> >("ShortestPath", ifst.ArcType(), &args);
  /external/v8/test/mjsunit/
debug-stepin-function-call.js 102 // Test step into function apply from a function without local variables.
105 g.apply(null, [3]);
109 // Test step into function apply from a function with some local variables.
115 g.apply(null, [3, 4]);
118 // Test step into function apply which is a part of an expression.
122 var r = 10 + alias.apply(null, [3, 'unused arg']);
128 // Test step into function apply from a function with some local variables.
132 alias.apply(null, [3]);
  /frameworks/base/core/java/android/view/animation/
TranslateAnimation.java 85 * @param fromXDelta Change in X coordinate to apply at the start of the
87 * @param toXDelta Change in X coordinate to apply at the end of the
89 * @param fromYDelta Change in Y coordinate to apply at the start of the
91 * @param toYDelta Change in Y coordinate to apply at the end of the
112 * @param fromXValue Change in X coordinate to apply at the start of the
118 * @param toXValue Change in X coordinate to apply at the end of the
124 * @param fromYValue Change in Y coordinate to apply at the start of the
130 * @param toYValue Change in Y coordinate to apply at the end of the
  /frameworks/base/test-runner/src/android/test/suitebuilder/annotation/
HasAnnotation.java 41 public boolean apply(TestMethod testMethod) { method in class:HasAnnotation
42 return hasMethodOrClassAnnotation.apply(testMethod);

Completed in 763 milliseconds

<<11121314151617181920>>