Home
last modified time | relevance | path

Searched refs:nth (Results 1 – 25 of 28) sorted by relevance

12

/external/iptables/extensions/
Dlibipt_statistic.c75 &info->u.nth.every) == -1) in parse()
78 if (info->u.nth.every == 0) in parse()
80 info->u.nth.every--; in parse()
87 &info->u.nth.packet) == -1) in parse()
116 info->u.nth.count = info->u.nth.every - info->u.nth.packet; in final_check()
132 info->u.nth.every + 1); in print_match()
133 if (info->u.nth.packet) in print_match()
134 printf("%spacket %u ", prefix, info->u.nth.packet); in print_match()
163 .userspacesize = offsetof(struct xt_statistic_info, u.nth.count),
/external/stlport/test/unit/
Dallocator_test.cpp155 const size_t nth = 2; in per_thread_alloc() local
156 SharedDatas datas(nth); in per_thread_alloc()
157 pthread_t t[nth]; in per_thread_alloc()
160 for (i = 0; i < nth; ++i) { in per_thread_alloc()
164 for (i = 0; i < nth; ++i ) { in per_thread_alloc()
Dstring_test.cpp213 const int nth = 2; in mt() local
215 pthread_t t[nth]; in mt()
217 for ( int i = 0; i < nth; ++i ) { in mt()
221 for ( int i = 0; i < nth; ++i ) { in mt()
229 HANDLE t[nth]; in mt()
232 for ( i = 0; i < nth; ++i ) { in mt()
236 if (WaitForMultipleObjects(nth, t, TRUE, INFINITE) == WAIT_FAILED) { in mt()
239 for ( i = 0; i < nth; ++i ) { in mt()
/external/webkit/WebCore/inspector/front-end/
Daudits.css87 #audit-result-view > .pane.expanded:nth-last-of-type(1) {
91 #audit-result-view .pane.expanded:nth-last-of-type(1) {
129 #audit-result-view .section.expanded .section-content > p:nth-of-type(1) {
133 #audit-result-view .section.expanded .section-content > p:nth-of-type(1) > *:nth-child(1) {
145 div.panel.audits .sidebar > ol.sidebar-tree > li:nth-child(1) {
Dinspector.css1201 .placard:nth-of-type(2n) {
1257 .section:nth-last-of-type(1), .event-bar:nth-last-of-type(1) {
1269 .event-bar:nth-last-of-type(1) .header {
1701 .pane.expanded:nth-last-of-type(1) {
3152 #resources-container:not(.viewing-resource) .resource-sidebar-tree-item:nth-of-type(2n) {
3156 #resources-container:not(.viewing-resource) .resources-graph-side:nth-of-type(2n) {
3423 .timeline-category-tree-item:nth-of-type(2n) {
/external/bluetooth/glib/glib/
Dgbsearcharray.h68 guint nth);
178 guint nth) in g_bsearch_array_get_nth() argument
180 return (G_LIKELY (nth < barray->n_nodes) ? in g_bsearch_array_get_nth()
181 G_BSEARCH_ARRAY_NODES (barray) + nth * bconfig->sizeof_node : in g_bsearch_array_get_nth()
/external/kernel-headers/original/linux/netfilter/
Dxt_statistic.h27 } nth; member
/external/webkit/WebCore/css/
Dtokenizer.flex27 nth (-?[0-9]*n[\+-][0-9]+)|(-?[0-9]*n)
49 {nth} {yyTok = NTH; return yyTok;}
/external/v8/src/
Dparser.h119 FunctionEntry nth(int n);
Dparser.cc898 if (nth(last_entry_).start_pos() > start) { in GetFunctionEnd()
904 FunctionEntry entry = nth(i); in GetFunctionEnd()
930 FunctionEntry ScriptDataImpl::nth(int n) { in nth() function in v8::internal::ScriptDataImpl
/external/webkit/SunSpider/tests/parse-only/
Dprototype-1.6.0.3.js2966 return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ", m);
2969 return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ", m);
2972 return Selector.xpath.pseudos.nth("position() ", m);
2975 return Selector.xpath.pseudos.nth("(last() + 1 - position()) ", m);
2986 nth: function(fragment, m) { method
3037 /^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b…
3274 return Selector.pseudos.nth(nodes, formula, root);
3277 return Selector.pseudos.nth(nodes, formula, root, true);
3280 return Selector.pseudos.nth(nodes, formula, root, false, true);
3283 return Selector.pseudos.nth(nodes, formula, root, true, true);
[all …]
Dconcat-jquery-mootools-prototype.js1180 next: function(elem){return jQuery.nth(elem,2,"nextSibling");},
1181 prev: function(elem){return jQuery.nth(elem,2,"previousSibling");},
1973 case 'nth':
2401 jQuery.nth = function(cur, result, dir, elem){ function in jQuery
6907 var Selectors = {Cache: {nth: {}, parsed: {}}}; property
6927 if (Selectors.Cache.nth[argument]) return Selectors.Cache.nth[argument];
6952 return Selectors.Cache.nth[argument] = parsed;
11345 return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ", m);
11348 return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ", m);
11351 return Selector.xpath.pseudos.nth("position() ", m);
[all …]
Djquery-1.3.2.js1180 next: function(elem){return jQuery.nth(elem,2,"nextSibling");},
1181 prev: function(elem){return jQuery.nth(elem,2,"previousSibling");},
1973 case 'nth':
2401 jQuery.nth = function(cur, result, dir, elem){ function in jQuery
Dmootools-1.2.2-core-nc.js2531 var Selectors = {Cache: {nth: {}, parsed: {}}}; property
2551 if (Selectors.Cache.nth[argument]) return Selectors.Cache.nth[argument];
2576 return Selectors.Cache.nth[argument] = parsed;
/external/v8/test/cctest/
Dcctest.h139 static RegisterThreadedTest* nth(int i) { in nth() function
Dtest-api.cc6931 ApiTestFuzzer* test = RegisterThreadedTest::nth(current_)->fuzzer_; in Fuzz()
6940 const char* test_name = RegisterThreadedTest::nth(current_)->name(); in NextThread()
6949 RegisterThreadedTest::nth(test_position)->name()); in NextThread()
6952 RegisterThreadedTest::nth(current_)->fuzzer_->gate_->Signal(); in NextThread()
6990 RegisterThreadedTest::nth(i)->fuzzer_ = new ApiTestFuzzer(i + start); in Setup()
6993 RegisterThreadedTest::nth(i)->fuzzer_->Start(); in Setup()
6999 (RegisterThreadedTest::nth(test_number)->callback())(); in CallTestNumber()
7018 } while (!RegisterThreadedTest::nth(next_test)->fuzzer_->active_); in GetNextTestNumber()
7038 ApiTestFuzzer *fuzzer = RegisterThreadedTest::nth(i)->fuzzer_; in TearDown()
/external/icu4c/data/locales/
Debu.txt117 "0"{"Ũmũnthĩ"}
Dkam.txt117 "0"{"Ũmũnthĩ"}
/external/dbus/
DHACKING155 Can be set to a number, causing every nth call to dbus_alloc or
/external/webkit/JavaScriptCore/bytecode/
DCodeBlock.cpp208 …OffsetForNth(ExecState* exec, const Vector<Instruction>& instructions, int nth, bool (*predicate)(… in instructionOffsetForNth() argument
214 if (!--nth) in instructionOffsetForNth()
/external/bouncycastle/patches/
Dandroid.patch1217 + * Gets the nth key.
1220 + * @return non-null; the nth key
1237 + * Gets the nth value.
1240 + * @return non-null; the nth value
1257 + * Sets the nth value.
2280 + * Gets the nth key.
2283 + * @return non-null; the nth key
2300 + * Gets the nth value.
2303 + * @return non-null; the nth value
2320 + * Gets the nth added flag bit.
[all …]
/external/libvpx/examples/includes/geshi/docs/
Dgeshi-doc.txt329 …. Fancy line numbers means that you can specify a different style for each nth line number. You ch…
346 If you're using Fancy Line Numbers mode, you pass a second string for the style of the nth line num…
/external/bluetooth/glib/gobject/
DChangeLog3904 * gtype.c (type_class_init): fetch the nth iface entry of the
3905 type node in the nth loop iteration, not alwys the first.
/external/bluetooth/glib/
DChangeLog.pre-1-22510 the data of the nth element in the list.
/external/webkit/WebCore/
DChangeLog-2009-06-16452 update :nth-child style correctly.
454 Test: fast/css/nth-child-dynamic.html
53787 … <rdar://problem/5870656> selectorText and cssText are clipped for :nth-child() and :nth-of-type();
89941 …Cache the result of parsing the an+b expression in :nth-child(an+b). Roughly a 2x speedup for :nth
89947 * css/CSSGrammar.y: Create CSSNthSelectors instead of CSSSelectors for :nth-*
89960 …r::SelectorChecker::checkOneSelector): Take advantage of knowing that all :nth-* selectors are CSS…
90475 …>2x speedup on querySelector[All] with :nth-child by removing the collectRulesOnly argument on Sel…
91288 …This speeds up :nth-child matching as tested by querySelectorAll by around 10% by inlining the com…

12