Searched refs:limit (Results 26 - 50 of 919) sorted by relevance

1234567891011>>

/macosx-10.9.5/ncurses-42/ncurses/test/
H A Dtest_get_wstr.c77 ShowPrompt(WINDOW *txtwin, int limit) argument
79 wchgat(txtwin, limit, A_REVERSE, 0, NULL);
84 MovePrompt(WINDOW *txtwin, int limit, int y, int x) argument
88 ShowPrompt(txtwin, limit);
92 ShowFlavor(WINDOW *strwin, WINDOW *txtwin, int flavor, int limit) argument
122 wprintw(strwin, "%s(%d):", name, limit);
126 result = limited ? limit : Remainder(txtwin);
144 int limit = getmaxx(strwin) - 5; local
188 actual = ShowFlavor(strwin, txtwin, flavor, limit);
236 if (limit >
[all...]
H A Dtest_getstr.c78 ShowPrompt(WINDOW *txtwin, int limit) argument
80 wchgat(txtwin, limit, A_REVERSE, 0, NULL);
85 MovePrompt(WINDOW *txtwin, int limit, int y, int x) argument
89 ShowPrompt(txtwin, limit);
93 ShowFlavor(WINDOW *strwin, WINDOW *txtwin, int flavor, int limit) argument
123 wprintw(strwin, "%s(%d):", name, limit);
127 result = limited ? limit : Remainder(txtwin);
145 int limit = getmaxx(strwin) - 5; local
190 actual = ShowFlavor(strwin, txtwin, flavor, limit);
238 if (limit >
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dname2uni.cpp116 offsets.start = offsets.limit;
124 offsets.start = offsets.limit;
132 int32_t limit = offsets.limit; local
141 while (cursor < limit) {
149 ICU_Utility::parsePattern(openPat, text, cursor, limit);
150 if (i >= 0 && i < limit) {
163 // loop. If the limit is reached, exit the loop.
210 limit -= delta;
245 offsets.contextLimit += limit
[all...]
H A Dfuncrepl.cpp80 int32_t limit,
85 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
86 limit = start + len;
89 limit = translit->transliterate(text, start, limit);
91 return limit - start;
78 replace(Replaceable& text, int32_t start, int32_t limit, int32_t& cursor) argument
H A Dnultrans.cpp31 offsets.start = offsets.limit;
H A Dcasetrn.cpp54 // automatically adjust start and limit if the Replaceable disagrees
67 // detect, and store in csc->b1, if we hit the limit
68 if(csc->index<csc->limit) {
71 csc->limit=csc->index;
139 if (offsets.start >= offsets.limit) {
147 csc.limit = offsets.contextLimit;
154 for(textPos=offsets.start; textPos<offsets.limit;) {
162 // fMap() tried to look beyond the context limit
183 csc.limit=offsets.contextLimit+=delta;
184 offsets.limit
[all...]
H A Dfphdlimp.cpp47 FieldPositionOnlyHandler::addAttribute(int32_t id, int32_t start, int32_t limit) { argument
50 pos.setEndIndex(limit);
88 FieldPositionIteratorHandler::addAttribute(int32_t id, int32_t start, int32_t limit) { argument
89 if (iter && U_SUCCESS(status) && start < limit) {
93 vec->addElement(limit, status);
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dpatternprops.cpp180 int32_t limit=length; local
181 while(start<limit && isWhiteSpace(s[start])) {
184 if(start<limit) {
185 // There is non-white space at start; we will not move limit below that,
186 // so we need not test start<limit in the loop.
187 while(isWhiteSpace(s[limit-1])) {
188 --limit;
191 length=limit-start;
200 const UChar *limit=s+length; local
205 } while(s<limit);
[all...]
H A Dutil_props.cpp26 int32_t ICU_Utility::parseInteger(const UnicodeString& rule, int32_t& pos, int32_t limit) { argument
32 if (p < limit && rule.charAt(p) == 48 /*0*/) {
33 if (p+1 < limit && (rule.charAt(p+1) == 0x78 /*x*/ || rule.charAt(p+1) == 0x58 /*X*/)) {
44 while (p < limit) {
86 int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_t limit, argument
96 if (pos >= limit) {
109 parsedInts[intCount++] = parseInteger(rule, p, limit);
117 if (pos >= limit) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DWatchdogMac.cpp44 void Watchdog::startTimer(double limit) argument
52 dispatch_time(DISPATCH_TIME_NOW, limit * NSEC_PER_SEC),
/macosx-10.9.5/WebKit-7537.78.2/mac/History/
H A DWebBackForwardList.h102 @param limit A cap on the size of the array returned.
105 - (NSArray *)backListWithLimit:(int)limit;
110 @param limit A cap on the size of the array returned.
113 - (NSArray *)forwardListWithLimit:(int)limit;
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebHistory.idl141 @param limit The maximum number of items that will be stored by the WebHistory.
142 - (void)setHistoryItemLimit:(int)limit;
144 HRESULT setHistoryItemLimit([in] int limit);
151 HRESULT historyItemLimit([out, retval] int* limit);
157 @param limit The maximum number of days to be read from stored history.
158 - (void)setHistoryAgeInDaysLimit:(int)limit;
160 HRESULT setHistoryAgeInDaysLimit([in] int limit);
167 HRESULT historyAgeInDaysLimit([out, retval] int* limit);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKBackForwardList.h45 WK_EXPORT WKArrayRef WKBackForwardListCopyBackListWithLimit(WKBackForwardListRef list, unsigned limit);
46 WK_EXPORT WKArrayRef WKBackForwardListCopyForwardListWithLimit(WKBackForwardListRef list, unsigned limit);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_back_forward_list.h90 * Creates the list containing the items preceding the current item limited by @a limit.
93 * if @a limit is equal to @c -1 all the items preceding the current item are returned.
96 * @param limit the number of items to retrieve
102 EAPI Eina_List *ewk_back_forward_list_n_back_items_copy(const Ewk_Back_Forward_List *list, int limit);
105 * Creates the list containing the items following the current item limited by @a limit.
108 * if @a limit is equal to @c -1 all the items preceding the current item are returned.
111 * @param limit the number of items to retrieve
117 EAPI Eina_List *ewk_back_forward_list_n_forward_items_copy(const Ewk_Back_Forward_List *list, int limit);
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/include/isc/
H A Dhash.h41 * upper limit of the input length, and may run slow to calculate the
85 isc_hash_ctxcreate(isc_mem_t *mctx, isc_entropy_t *entropy, unsigned int limit,
88 isc_hash_create(isc_mem_t *mctx, isc_entropy_t *entropy, size_t limit);
101 * 'limit' specifies the maximum number of hash keys. If it is too large,
174 * 'keylen' specifies the key length, which must not be larger than the limit
/macosx-10.9.5/ntp-88/lib/isc/include/isc/
H A Dhash.h41 * upper limit of the input length, and may run slow to calculate the
85 isc_hash_ctxcreate(isc_mem_t *mctx, isc_entropy_t *entropy, unsigned int limit,
88 isc_hash_create(isc_mem_t *mctx, isc_entropy_t *entropy, size_t limit);
101 * 'limit' specifies the maximum number of hash keys. If it is too large,
174 * 'keylen' specifies the key length, which must not be larger than the limit
/macosx-10.9.5/emacs-92/emacs/lisp/language/
H A Dthai-word.el10773 (defun thai-find-word-ends (pos limit &optional ignore)
10774 (if (>= pos limit)
10803 (setq this (and (< pos limit) (cdr (assq char this)))))
10813 (defun thai-forward-word-update-info (vec limit)
10827 (setq v0 (thai-find-word-ends pos limit))
10851 (setq v1 (thai-find-word-ends pos limit tried))
10871 (setq v2 (thai-find-word-ends pos limit tried))
10879 (setq v3 (thai-find-word-ends pos limit tried))
10916 (while (and (< pos limit)
10917 (not (setq positions (thai-find-word-ends pos limit))))
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dcc-fonts.el250 (defun c-skip-comments-and-strings (limit)
260 (point) 'face nil limit))
261 (and (< (point) limit)
274 `(lambda (limit)
276 (while (and (setq res (re-search-forward ,regexp limit t))
279 (or (c-skip-comments-and-strings limit)
289 ;; is however to pass the real search limit to the anchored
304 ;; `limit' is a variable bound to the real limit in the context of
314 `(lambda (limit)
[all...]
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DBackForwardListBlackBerry.cpp116 void BackForwardListBlackBerry::backListWithLimit(int limit, HistoryItemVector& list) argument
118 m_impl->backListWithLimit(limit, list);
121 void BackForwardListBlackBerry::forwardListWithLimit(int limit, HistoryItemVector& list) argument
123 m_impl->forwardListWithLimit(limit, list);
/macosx-10.9.5/ncurses-42/ncurses/ncurses/trace/
H A Dtrace_xnames.c46 int limit = tp->ext_Booleans + tp->ext_Numbers + tp->ext_Strings; local
48 if (limit) {
54 limit,
57 for (n = 0; n < limit; n++) {
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dbeen_here.h23 int limit; /* ceiling, zero for none */ member in struct:__anon11728
/macosx-10.9.5/ncurses-42/ncurses/ncurses/base/
H A Dlib_scroll.c55 int limit; local
83 limit = top - n;
84 for (line = bottom; line >= limit && line >= 0; line--) {
92 for (line = top; line < limit && line <= win->_maxy; line++) {
102 limit = bottom - n;
103 for (line = top; line <= limit && line <= win->_maxy; line++) {
110 for (line = bottom; line > limit && line >= 0; line--) {
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DSuffixTree.h59 int limit = std::min(m_depth, query.length()); local
60 for (int i = 0; i < limit; ++i) {
100 unsigned limit = std::min(base + m_depth, text.length()); local
101 for (unsigned offset = 0; base + offset < limit; ++offset) {
105 child = base + offset + 1 == limit ? &m_leaf : new Node();
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Dlimits.c28 /* define to get an error if requesting limit higher than hard */
68 struct slap_limits_set **limit
76 assert( limit != NULL );
88 *limit = &op->o_bd->be_def_limit;
180 *limit = &lm[0]->lm_limits;
187 *limit = &lm[0]->lm_limits;
196 *limit = &lm[0]->lm_limits;
215 struct slap_limits_set *limit
223 assert( limit != NULL );
293 lm->lm_limits = *limit;
321 struct slap_limits_set limit; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBLevelDBCoding.cpp182 const char* decodeByte(const char* p, const char* limit, unsigned char& foundChar) argument
184 if (p >= limit)
278 const char* decodeVarInt(const char* p, const char* limit, int64_t& foundInt) argument
280 ASSERT(limit >= p);
285 if (p >= limit)
333 const char* decodeStringWithLength(const char* p, const char* limit, String& foundString) argument
335 ASSERT(limit >= p);
337 p = decodeVarInt(p, limit, len);
338 if (!p || len < 0 || p + len * 2 > limit)
396 const char* decodeDouble(const char* p, const char* limit, doubl argument
454 decodeIDBKey(const char* p, const char* limit, RefPtr<IDBKey>& foundKey) argument
513 extractEncodedIDBKey(const char* start, const char* limit, Vector<char>* result = 0) argument
1161 decode(const char* start, const char* limit, DatabaseFreeListKey* result) argument
1205 decode(const char* start, const char* limit, DatabaseNameKey* result) argument
1268 decode(const char* start, const char* limit, ObjectStoreMetaDataKey* result) argument
1341 decode(const char* start, const char* limit, IndexMetaDataKey* result) argument
1412 decode(const char* start, const char* limit, ObjectStoreFreeListKey* result) argument
1466 decode(const char* start, const char* limit, IndexFreeListKey* result) argument
1527 decode(const char* start, const char* limit, ObjectStoreNamesKey* result) argument
1565 decode(const char* start, const char* limit, IndexNamesKey* result) argument
1696 decode(const char* start, const char* limit, IndexDataKey* result) argument
[all...]

Completed in 161 milliseconds

1234567891011>>