Searched defs:forward (Results 1 - 25 of 100) sorted by relevance

1234

/external/javassist/src/main/javassist/tools/rmi/
H A DSample.java27 public Object forward(Object[] args, int identifier) { method in class:Sample
/external/chromium-trace/trace-viewer/third_party/Paste/tests/
H A Dtest_errordocument.py1 from paste.errordocument import forward namespace
46 app = forward(error_docs_app, codes={404:'/error'})
76 wsgi_app = forward(auth_docs_app, codes={401: '/auth_doc'})
89 app = forward(app, {404: '/404.html'})
H A Dtest_recursive.py24 def forward(app): function
52 forward(TestForwardRequestMiddleware(error_docs_app))
61 forward(TestForwardRequestMiddleware(error_docs_app))
105 forward(TestForwardRequestExceptionMiddleware(error_docs_app))
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
H A DBiMapInverseTester.java47 assertEquals(pair.forward, copy.forward);
49 assertSame(copy.backward, copy.forward.inverse());
50 assertSame(copy.forward, copy.backward.inverse());
54 final BiMap<K, V> forward; field in class:BiMapInverseTester.BiMapPair
58 this.forward = original;
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingListIteratorTest.java28 private ForwardingListIterator<String> forward; field in class:ForwardingListIteratorTest
39 forward = new ForwardingListIterator<String>() {
47 forward.add("asdf");
52 forward.hasNext();
57 forward.hasPrevious();
62 forward.next();
67 forward.nextIndex();
72 forward.previous();
77 forward.previousIndex();
82 forward
[all...]
H A DForwardingMultimapTest.java29 Multimap<String, Boolean> forward; field in class:ForwardingMultimapTest
41 forward = new ForwardingMultimap<String, Boolean>() {
49 forward.size();
54 forward.isEmpty();
59 forward.containsKey("asdf");
64 forward.containsValue("asdf");
69 forward.containsEntry("asdf", false);
74 forward.put("asdf", true);
79 forward.remove("asdf", false);
84 forward
[all...]
H A DForwardingTableTest.java26 private Table<String, Integer, Boolean> forward; field in class:ForwardingTableTest
38 forward = new ForwardingTable<String, Integer, Boolean>() {
46 forward.hashCode();
51 forward.cellSet();
56 forward.clear();
61 forward.column(1);
66 forward.columnKeySet();
71 forward.columnMap();
76 forward.contains("blah", 1);
81 forward
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DRungeKuttaStepInterpolator.java122 * @param forward integration direction indicator
125 final double[] y, final double[][] yDotArray, final boolean forward) {
126 reinitialize(y, forward);
124 reinitialize(final AbstractIntegrator rkIntegrator, final double[] y, final double[][] yDotArray, final boolean forward) argument
H A DAdaptiveStepsizeIntegrator.java207 * @param forward forward integration indicator
220 final boolean forward, final int order, final double[] scale,
227 return forward ? initialStep : -initialStep;
244 if (! forward) {
276 if (! forward) {
286 * @param forward forward integration indicator
293 protected double filterStep(final double h, final boolean forward, final boolean acceptSmall) argument
299 filteredH = forward
219 initializeStep(final FirstOrderDifferentialEquations equations, final boolean forward, final int order, final double[] scale, final double t0, final double[] y0, final double[] yDot0, final double[] y1, final double[] yDot1) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
H A DStepNormalizer.java69 private boolean forward; field in class:StepNormalizer
99 forward = true;
126 forward = interpolator.getCurrentTime() >= lastTime;
127 if (! forward) {
134 boolean nextInStep = forward ^ (nextTime > interpolator.getCurrentTime());
149 nextInStep = forward ^ (nextTime > interpolator.getCurrentTime());
H A DDummyStepInterpolator.java67 * @param forward integration direction indicator
69 public DummyStepInterpolator(final double[] y, final double[] yDot, final boolean forward) { argument
70 super(y, forward);
/external/guava/guava/src/com/google/common/primitives/
H A DPrimitives.java62 private static void add(Map<Class<?>, Class<?>> forward, argument
64 forward.put(key, value);
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DBiMapInverseTester.java52 assertEquals(pair.forward, copy.forward);
54 assertSame(copy.backward, copy.forward.inverse());
55 assertSame(copy.forward, copy.backward.inverse());
59 final BiMap<K, V> forward; field in class:BiMapInverseTester.BiMapPair
63 this.forward = original;
/external/guava/guava-tests/test/com/google/common/cache/
H A DForwardingCacheTest.java37 private Cache<String, Boolean> forward; field in class:ForwardingCacheTest
49 forward = new ForwardingCache<String, Boolean>() {
59 assertSame(Boolean.TRUE, forward.getIfPresent("key"));
68 forward.getAllPresent(ImmutableList.of("key")));
75 forward.invalidate("key");
82 forward.invalidateAll(ImmutableList.of("key"));
89 forward.invalidateAll();
96 forward.size();
103 assertNull(forward.stats());
110 assertNull(forward
[all...]
H A DForwardingLoadingCacheTest.java37 private LoadingCache<String, Boolean> forward; field in class:ForwardingLoadingCacheTest
49 forward = new ForwardingLoadingCache<String, Boolean>() {
59 assertSame(Boolean.TRUE, forward.get("key"));
66 assertSame(Boolean.TRUE, forward.getUnchecked("key"));
73 assertEquals(ImmutableMap.of("key", Boolean.TRUE), forward.getAll(ImmutableList.of("key")));
80 assertSame(Boolean.TRUE, forward.apply("key"));
87 forward.invalidate("key");
94 forward.refresh("key");
101 forward.invalidateAll();
108 forward
[all...]
/external/ltrace/
H A Dprototype.h26 #include "forward.h"
73 int forward : 1; member in struct:named_type
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
H A DContinuousOutputModel.java102 private boolean forward; field in class:ContinuousOutputModel
135 forward = model.forward;
144 if (forward ^ model.forward) {
187 forward = true;
205 forward = interpolator.isForward();
361 if (forward) {
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Derrordocument.py8 specified status codes and internally forward the request to an appropriate
20 def forward(app, codes): function
36 ``forward`` middleware to catch all 404 status codes and display the page
40 from paste.errordocument import forward
41 app = forward(app, codes={404:'/error404.html'})
104 programatically determine whether to internally forward to another URL and
105 if so, which URL to forward to.
108 the simpler ``forward`` middleware instead.
119 URL to forward to or ``None`` if the code is not to be intercepted.
124 internal forward statin
[all...]
/external/clang/test/SemaCXX/
H A Drval-references-examples.cpp47 template <class T> T&& forward(typename remove_reference<T>::type& t) { function
51 template <class T> T&& forward(typename remove_reference<T>::type&& t) { function
57 return unique_ptr<T>(new T(forward<Args>(args)...));
100 void forward(F f, Args &&...args) { function in namespace:perfect_forwarding
107 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(),
109 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(), // expected-note{{in instantiation of function template specialization 'perfect_forwarding::forward<perfect_forwarding::F0, perfect_forwarding::A &, const perfect_forwarding::A &, perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A>' requested here}}
/external/guava/guava/src/com/google/common/collect/
H A DDescendingImmutableSortedMultiset.java26 private final transient ImmutableSortedMultiset<E> forward; field in class:DescendingImmutableSortedMultiset
28 DescendingImmutableSortedMultiset(ImmutableSortedMultiset<E> forward) { argument
29 this.forward = forward;
34 return forward.count(element);
39 return forward.lastEntry();
44 return forward.firstEntry();
49 return forward.size();
54 return forward.elementSet().descendingSet();
59 return forward
[all...]
H A DDescendingImmutableSortedSet.java29 private final ImmutableSortedSet<E> forward; field in class:DescendingImmutableSortedSet
31 DescendingImmutableSortedSet(ImmutableSortedSet<E> forward) { argument
32 super(Ordering.from(forward.comparator()).reverse());
33 this.forward = forward;
38 return forward.size();
43 return forward.descendingIterator();
48 return forward.tailSet(toElement, inclusive).descendingSet();
54 return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet();
59 return forward
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DDataDrivenCalendarTest.java61 CalendarFieldsSet toSet, Calendar toCalendar, boolean forward) {
62 String thisString = caseString+(forward ? "forward"
113 private void testConvert(TestDataModule.TestData testData, DataMap settings, boolean forward) { argument
141 if (forward) {
144 testConvert(caseString, fromSet, fromCalendar, toSet, toCalendar, forward);
148 testConvert(caseString, toSet, toCalendar, fromSet, fromCalendar, forward);
59 testConvert(String caseString, CalendarFieldsSet fromSet, Calendar fromCalendar, CalendarFieldsSet toSet, Calendar toCalendar, boolean forward) argument
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestPhysicsCharacter.java57 boolean leftStrafe = false, rightStrafe = false, forward = false, backward = false, field in class:TestPhysicsCharacter
115 // set forward camera node that follows the character
147 if (forward) {
184 forward = true;
186 forward = false;
/external/v8/test/mjsunit/harmony/
H A Dproxies-example-membrane.js182 function forward(args) { return obj.apply(this, args) }
183 return wrap(new forward(Array.prototype.map.call(arguments, wrap)));
344 function forward(args) { return wet.apply(this, args) }
345 return asDry(new forward(Array.prototype.map.call(arguments, asWet)));
411 function forward(args) { return dry.apply(this, args) }
412 return asWet(new forward(Array.prototype.map.call(arguments, asDry)));
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
H A DEventState.java76 private boolean forward; field in class:EventState
167 // direction (forward or backward). This explains what is done below.
203 forward = interpolator.isForward();
209 final double start = forward ? (t0 + convergence) : t0 - convergence;
252 final double epsilon = (forward ? 0.25 : -0.25) * convergence;
340 nextAction = handler.eventOccurred(t, y, !(increasing ^ forward));

Completed in 861 milliseconds

1234