Searched defs:forward (Results 51 - 75 of 100) sorted by relevance

1234

/external/icu/icu4c/source/test/intltest/
H A Ddadrcal.cpp289 const CalendarFieldsSet &toSet, Calendar *toCalendar, UBool forward) {
291 UnicodeString thisString = (UnicodeString)"#"+n+" "+(forward ? "forward"
365 const DataMap *settings, UBool forward) {
433 if (forward) {
436 testConvert(n, fromSet, fromCalendar, toSet, toCalendar, forward);
440 testConvert(n, toSet, toCalendar, fromSet, fromCalendar, forward);
287 testConvert(int32_t n, const CalendarFieldsSet &fromSet, Calendar *fromCalendar, const CalendarFieldsSet &toSet, Calendar *toCalendar, UBool forward) argument
364 testConvert(TestData *testData, const DataMap *settings, UBool forward) argument
H A Dtstnorm.cpp511 UnicodeString forward; local
513 forward += ch;
522 if (forward != reverse) {
524 + ", forward: " + hex(forward) + ", backward: " + hex(reverse));
1341 // do not combine forward. LV syllables are already removed.
H A Dutxttest.cpp1306 fragTextAccess(UText *ut, int64_t index, UBool forward) { argument
1310 if (forward && index>=0 && index<length) {
1319 if (!forward && index>0 && index <=length) {
/external/jetty/src/java/org/eclipse/jetty/server/
H A DDispatcher.java53 public final static String __FORWARD_PREFIX="javax.servlet.forward.";
99 * @see javax.servlet.RequestDispatcher#forward(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
101 public void forward(ServletRequest request, ServletResponse response) throws ServletException, IOException method in class:Dispatcher
103 forward(request, response, DispatcherType.FORWARD);
108 * @see javax.servlet.RequestDispatcher#forward(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
112 forward(request, response, DispatcherType.ERROR);
198 * @see javax.servlet.RequestDispatcher#forward(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
200 protected void forward(ServletRequest request, ServletResponse response, DispatcherType dispatch) throws ServletException, IOException method in class:Dispatcher
250 //original value. Otherwise, this is the first forward and we need to establish the values.
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_objects_PhysicsVehicle.cpp114 (JNIEnv *env, jobject object, jlong vehicleId, jint right, jint up, jint forward) {
121 vehicle->setCoordinateSystem(right, up, forward);
113 Java_com_jme3_bullet_objects_PhysicsVehicle_setCoordinateSystem(JNIEnv *env, jobject object, jlong vehicleId, jint right, jint up, jint forward) argument
/external/libvorbis/lib/
H A Dbackends.h97 int (*forward) (oggpack_buffer *,struct vorbis_block *, member in struct:__anon9349
127 int (*forward) (struct vorbis_block *vb); member in struct:__anon9350
/external/llvm/lib/CodeGen/
H A DRegisterScavenging.cpp169 void RegScavenger::forward() { function in class:RegScavenger
170 // Move ptr forward.
/external/parameter-framework/bindings/c/
H A DParameterFramework.cpp65 * @param success[in] the operaton status to forward
66 * or forward a previous failure if omitted
68 bool forward(bool success = false) { function in class:Status
240 return status.forward(handle->pfw->start(status.msg()));
362 return status.forward(handle->parameter.getAsSignedInteger(*value, status.msg()));
368 return status.forward(handle->parameter.setAsSignedInteger(value, status.msg()));
383 if (not success) { return status.forward(); }
393 return status.forward(handle->parameter.setAsString(value, status.msg()));
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DDormandPrince853StepInterpolator.java284 final double[] y, final double[][] yDotK, final boolean forward) {
286 super.reinitialize(integrator, y, yDotK, forward);
283 reinitialize(final AbstractIntegrator integrator, final double[] y, final double[][] yDotK, final boolean forward) argument
/external/guava/guava/src/com/google/common/collect/
H A DHashBiMap.java487 BiMap<K, V> forward() { method in class:HashBiMap.Inverse
498 forward().clear();
503 return forward().containsValue(value);
535 return forward();
571 return forward().keySet();
/external/icu/icu4c/source/common/
H A Duniset.cpp642 // might separate forward and backward loops later
645 // TODO Improve efficiency of this, at least in the forward
646 // direction, if not in both. In the forward direction we
650 UBool forward = offset < limit; local
653 // forward direction or the rightmost char to match in
669 UChar c = trial.charAt(forward ? 0 : trial.length() - 1);
672 // forward direction.
673 if (forward && c > firstChar) break;
679 int32_t maxLen = forward ? limit-offset : offset-limit;
691 // In the forward directio
[all...]
H A Dutext.cpp37 utext_access(UText *ut, int64_t index, UBool forward) { argument
38 return ut->pFuncs->access(ut, index, forward);
110 // Access the new position. Assume a forward iteration from here,
210 // Because we must maintain the iteration position, we need to switch forward
930 utf8TextAccess(UText *ut, int64_t index, UBool forward) { argument
974 // Dispatch to the appropriate action for a forward iteration request.
976 if (forward) {
1724 repTextAccess(UText *ut, int64_t index, UBool forward) { argument
1738 * going in the forward direction. This will ensure that the buffer has the
1741 if(forward) {
2108 unistrTextAccess(UText *ut, int64_t index, UBool forward) argument
2397 ucstrTextAccess(UText *ut, int64_t index, UBool forward) argument
2653 charIterTextAccess(UText *ut, int64_t index, UBool forward) argument
[all...]
/external/libdrm/
H A Dxf86drmSL.c79 struct SLEntry *forward[1]; /* variable sized array */ member in struct:SLEntry
111 + (max_level + 1) * sizeof(entry->forward[0]));
144 for (i = 0; i <= SL_MAX_LEVEL; i++) list->head->forward[i] = NULL;
159 next = entry->forward[0];
178 while (entry->forward[i] && entry->forward[i]->key < key)
179 entry = entry->forward[i];
183 return entry->forward[0];
209 /* Fix up forward pointers */
211 entry->forward[
[all...]
/external/selinux/policycoreutils/gui/
H A Dpolgengui.py215 self.forward_button.connect("clicked",self.forward)
342 def forward(self, arg): member in class:childWindow
/external/skia/src/core/
H A DSkBitmapProcState_matrixProcs.cpp431 // need to know our start, and our initial phase (forward or backward)
432 bool forward; local
437 forward = false;
440 forward = true;
446 if (forward) {
451 forward = !forward;
456 if (forward) {
461 forward = !forward;
[all...]
/external/skia/src/pathops/
H A DSkPathOpsCommon.cpp307 bool forward = true; variable
333 if (forward) {
341 sIndex == ((rIndex != eIndex) ^ forward ? eIndex : ~eIndex));
343 if (sIndex == ((rIndex != eIndex) ^ forward ? eIndex : ~eIndex)) {
347 if (forward) {
372 forward ^= 1;
/external/deqp/modules/gles3/functional/
H A Des3fASTCDecompressionCases.cpp219 BitAssignAccessStream (AssignBlock128& dst, int startNdxInSrc, int length, bool forward) argument
223 , m_forward (forward)
/external/dnsmasq/src/
H A Dforward.c185 /* don't forward simple names, make exception for NS queries and empty name. */
206 HEADER *header, size_t plen, time_t now, struct frec *forward)
218 forward = NULL;
219 else if (forward || (forward = lookup_frec_by_sender(ntohs(header->id), udpaddr, crc)))
222 domain = forward->sentto->domain;
223 forward->sentto->failed_queries++;
226 forward->forwardall = 1;
229 type = forward->sentto->flags & SERV_TYPE;
230 if (!(start = forward
204 forward_query(int udpfd, union mysockaddr *udpaddr, struct all_addr *dst_addr, unsigned int dst_iface, HEADER *header, size_t plen, time_t now, struct frec *forward) argument
477 struct frec *forward; local
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationiterator.cpp250 UBool forward, UErrorCode &errorCode) {
299 if(forward) { backwardNumCodePoints(1, errorCode); }
301 if(forward) { forwardNumCodePoints(1, errorCode); }
306 if(!forward) {
354 appendNumericCEs(ce32, forward, errorCode);
363 if(forward && foundNULTerminator()) {
394 appendCEsFromCE32(d, U_SENTINEL, jamoCE32s[c], forward, errorCode);
395 appendCEsFromCE32(d, U_SENTINEL, jamoCE32s[19 + v], forward, errorCode);
407 U_ASSERT(forward); // Backward iteration should never see lead surrogate code _unit_ data.
685 CollationIterator::appendNumericCEs(uint32_t ce32, UBool forward, UErrorCod argument
249 appendCEsFromCE32(const CollationData *d, UChar32 c, uint32_t ce32, UBool forward, UErrorCode &errorCode) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationIterator.java327 // consistent with forward iteration.
451 boolean forward) {
495 if(forward) { backwardNumCodePoints(1); }
497 if(forward) { forwardNumCodePoints(1); }
502 if(!forward) {
550 appendNumericCEs(ce32, forward);
584 appendCEsFromCE32(d, Collation.SENTINEL_CP, jamoCE32s[c], forward);
585 appendCEsFromCE32(d, Collation.SENTINEL_CP, jamoCE32s[19 + v], forward);
597 assert(forward); // Backward iteration should never see lead surrogate code _unit_ data.
912 // Set the forward iteratio
450 appendCEsFromCE32(CollationData d, int c, int ce32, boolean forward) argument
961 appendNumericCEs(int ce32, boolean forward) argument
[all...]
/external/ltrace/
H A Dread_config_file.c423 * forward of this type. If we do, it must be forward
425 struct named_type *forward = protolib_lookup_type(plib, name, true); local
426 if (forward != NULL
427 && (forward->info->type != ARGTYPE_STRUCT
428 || !forward->forward)) {
451 this_nt.forward = fwd;
453 if (forward == NULL) {
461 /* If we are defining a forward, mak
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_video.c202 nouveau_vpe_mb_mv_flags(bool luma, int mv_h, int mv_v, bool forward, bool first, bool vert) argument
213 if (!forward)
244 bool luma, bool frame, bool forward, bool vert,
266 mc_header |= nouveau_vpe_mb_mv_flags(luma, mv_horizontal, mv_vertical, forward, first, vert);
288 bool forward, backward; local
299 forward = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_MOTION_FORWARD;
301 assert(!forward || dec->past < 8);
309 if (forward) {
315 if (backward && forward) {
316 nouveau_vpe_mb_mv(dec, base, luma, frame, !forward, TRU
243 nouveau_vpe_mb_mv(struct nouveau_decoder *dec, unsigned mc_header, bool luma, bool frame, bool forward, bool vert, int x, int y, const short motions[2], unsigned surface, bool first) argument
[all...]
/external/v8/src/x87/
H A Dcodegen-x87.cc122 Label forward; local
127 __ jmp(&forward);
129 // Simple forward copier.
137 __ bind(&forward); // Entry point.
/external/icu/icu4c/source/test/cintltst/
H A Dcnormtst.c1031 UCharIterator *iter, UNormalizationMode mode, UBool forward,
1042 if(forward) {
1053 if(forward) {
1109 forward, _modeString[mode], i, u_errorName(errorCode));
1114 forward, _modeString[mode], i, index, expectIndex);
1119 forward, _modeString[mode], i, length, expectLength);
1124 forward, _modeString[mode], i);
1130 if(forward) {
1030 _testIter(const UChar *src, int32_t srcLength, UCharIterator *iter, UNormalizationMode mode, UBool forward, const UChar *out, int32_t outLength, const int32_t *srcIndexes, int32_t srcIndexesLength) argument
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp1130 BitAccessStream (const Block128& src, int startNdxInSrc, int length, bool forward) argument
1134 , m_forward (forward)

Completed in 987 milliseconds

1234