Searched refs:forward (Results 151 - 175 of 237) sorted by relevance

12345678910

/external/icu4c/common/unicode/
H A Dutext.h52 * Here is sample code for a forward iteration over the contents of a UText
515 * begin a forward iteration. The results are identical to the those
598 * forward or backward, but no further backward than to 0 and
599 * no further forward than to utext_nativeLength().
1165 * @param forward If TRUE, then the returned chunk must contain text
1178 UTextAccess(UText *ut, int64_t nativeIndex, UBool forward);
/external/icu4c/test/intltest/
H A Dtstnorm.cpp511 UnicodeString forward; local
513 forward += ch;
522 if (forward != reverse) {
524 + ", forward: " + hex(forward) + ", backward: " + hex(reverse));
1310 // do not combine forward. LV syllables are already removed.
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestBoneRagdoll.java292 boolean forward = true; field in class:TestBoneRagdoll
/external/llvm/lib/CodeGen/
H A DRegisterScavenging.cpp118 void RegScavenger::forward() { function in class:RegScavenger
119 // Move ptr forward.
/external/valgrind/main/exp-bbv/tests/x86/
H A Drep_prefix.S10 cld # we want these to happen forward
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebview.h236 gboolean forward,
/external/webkit/Source/WebKit/mac/WebView/
H A DWebView.h318 @param flag Turns use of the back forward list on or off
331 @abstract Go forward to the next URL in the backforward list.
332 @result YES if able to go forward in the backforward list, NO otherwise.
338 @abstract Go back or forward to an item in the backforward list.
504 @param forward YES to search forward, NO to seach backwards.
508 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag;
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebhistory.cpp223 into those that can be visited by navigating \e back and \e forward using the
224 back() and forward() functions. The current item can be obtained by calling
322 Returns the list of items in the forward history list.
352 Returns true if we have an item to go forward to; otherwise returns false.
365 \sa forward(), goToItem()
377 corresponding page; i.e., goes forward one history item.
381 void QWebHistory::forward() function in class:QWebHistory
392 \sa back(), forward()
H A Dqwebpage.h298 void setForwardUnsupportedContent(bool forward);
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebView.h65 void setInitialFocus(bool forward);
/external/chromium/chrome/browser/automation/
H A Dautomation_provider.cc472 params.forward,
482 bool forward,
503 forward,
478 SendFindRequest( TabContents* tab_contents, bool with_json, const string16& search_string, bool forward, bool match_case, bool find_next, IPC::Message* reply_message) argument
/external/llvm/lib/Transforms/Instrumentation/
H A DPathProfiling.cpp596 bool forward = true; local
605 forward = false;
612 nextNode = forward? (*edge)->getTarget(): (*edge)->getSource();
/external/quake/quake/src/QW/server/
H A Dpr_cmds.c368 float forward; local
387 forward = sqrt (value1[0]*value1[0] + value1[1]*value1[1]);
388 pitch = (int) (atan2(value1[2], forward) * 180 / M_PI);
/external/webkit/Source/WebCore/editing/
H A DEditor.cpp1720 // at a word boundary. Going back by one char and then forward by a word does the trick.
2515 // Make a selection that goes back one character and forward two characters.
2673 bool forward = !(options & Backwards); local
2679 if (forward)
2686 if (forward)
2693 if (forward)
2953 bool Editor::findString(const String& target, bool forward, bool caseFlag, bool wrapFlag, bool startInSelection) argument
2955 FindOptions options = (forward ? 0 : Backwards) | (caseFlag ? 0 : CaseInsensitive) | (wrapFlag ? WrapAround : 0) | (startInSelection ? StartInSelection : 0);
2968 // is used depends on whether we're searching forward or backward, and whether startInSelection is set.
2972 bool forward local
[all...]
H A DEditor.h347 bool findString(const String&, bool forward, bool caseFlag, bool wrapFlag, bool startInSelection);
/external/icu4c/test/cintltst/
H A Dcbiditst.c98 UBiDiLevel level, UBool forward);
2202 static const UChar forward[]={ local
2215 length=ubidi_writeReverse(forward, LENGTHOF(forward),
2226 length=ubidi_writeReverse(forward, LENGTHOF(forward),
3965 const char *mode, const char* option, UBiDiLevel level, UBool forward)
3975 if (forward) {
4008 forward
4035 forward
3964 checkMaps(UBiDi *pBiDi, int32_t stringIndex, const char *src, const char *dest, const char *mode, const char* option, UBiDiLevel level, UBool forward) argument
[all...]
/external/quake/quake/src/QW/client/
H A Dgl_rsurf.c1148 vec3_t forward, right, up; local
1151 AngleVectors (e->angles, forward, right, up);
1152 modelorg[0] = DotProduct (temp, forward);
/external/quake/quake/src/WinQuake/
H A Dpr_cmds.cpp431 float forward; local
450 forward = sqrt (value1[0]*value1[0] + value1[1]*value1[1]);
451 pitch = (int) (atan2(value1[2], forward) * 180 / M_PI);
H A Dmenu.cpp781 forward:
794 goto forward;
1320 {"+forward", "walk forward"},
1913 forward:
1944 goto forward;
/external/srec/srec/Vocabulary/src/
H A DVocabularyImpl.c294 *end = _next; /* we'll be push forward later, if there's content here!*/
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqgraphicswkview.cpp149 void QGraphicsWKView::forward() function in class:QGraphicsWKView
/external/zlib/src/contrib/delphi/
H A DZLib.pas101 is read-only and unidirectional; you can seek forward in the stream, but not
103 allowed. Seeking forward decompresses data until the requested position in
/external/chromium/chrome/browser/ui/find_bar/
H A Dfind_bar_host_browsertest.cc123 bool forward,
128 forward, case_sensitive, ordinal);
341 // Do a find-next after the selection. This should move forward
121 FindInPageWchar(TabContentsWrapper* tab, const wchar_t* search_str, bool forward, bool case_sensitive, int* ordinal) argument
/external/chromium/chrome/browser/ui/gtk/
H A Dfind_bar_gtk.cc783 bool forward = (event->state & gtk_accelerator_get_default_mod_mask()) != local
785 find_bar->FindEntryTextInContents(forward);
/external/chromium/chrome/common/
H A Dautomation_messages.cc179 WriteParam(m, p.forward);
191 ReadParam(m, iter, &p->forward) &&

Completed in 500 milliseconds

12345678910