HomeSort by relevance Sort by last modified time
    Searched refs:nest (Results 1 - 25 of 29) sorted by null

1 2

  /external/clang/test/PCH/
struct.h 28 struct Nested { int x, y; } nest; member in struct:S
  /external/iproute2/tc/
q_prio.c 36 struct rtattr *nest; local
89 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
92 addattr_nest_compat_end(n, nest);
q_rr.c 37 struct rtattr *nest; local
84 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
87 addattr_nest_compat_end(n, nest);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FinishAffinity.java 43 Button button = (Button)findViewById(R.id.nest);
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
call_main.cc 133 int start = 0, nest = 3; local
140 nest -= 2;
146 LOG(INFO) << std::setw(nest) << " "
150 nest += 2;
163 LOG(INFO) << std::setw(nest) << " " << "## TEXT REMOVED ##";
166 LOG(INFO) << std::setw(nest) << " "
  /external/chromium_org/third_party/skia/tests/
TDStackNesterTest.cpp 46 * Test nest() and unnest(). nest() is called, and it is confirmed that the
57 nester->nest();
  /external/clang/test/Sema/
block-return.c 84 int (^nested)(char *s) = ^(char *str) { void (^nest)(void) = ^(void) { printf("%s\n", str); }; next(); return 1; }; // expected-warning{{implicitly declaring library function 'printf' with type 'int (const char *, ...)'}} \
  /external/skia/tests/
TDStackNesterTest.cpp 46 * Test nest() and unnest(). nest() is called, and it is confirmed that the
57 nester->nest();
  /external/iproute2/lib/
libnetlink.c 586 struct rtattr *nest = NLMSG_TAIL(n); local
589 return nest;
592 int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest)
594 nest->rta_len = (void *)NLMSG_TAIL(n) - (void *)nest;
610 struct rtattr *nest = (void *)start + NLMSG_ALIGN(start->rta_len); local
613 addattr_nest_end(n, nest);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/src/
SkTDStackNester.h 25 * - Supports nest/unnest which simulates a stack of stack. unnest will pop all the
26 * objects pushed since the last nest
70 * will return to its state when nest() was called.
72 * After a call to nest(), fLocalCount is reset to 0, since the stack is on a new nesting
75 void nest() { function in class:SkTDStackNester
92 * time nest() was called. It is an error to call unnest() more times than nest() has been
164 * than push() has been called in total or since the last call to nest().
  /external/skia/experimental/PdfViewer/src/
SkTDStackNester.h 25 * - Supports nest/unnest which simulates a stack of stack. unnest will pop all the
26 * objects pushed since the last nest
70 * will return to its state when nest() was called.
72 * After a call to nest(), fLocalCount is reset to 0, since the stack is on a new nesting
75 void nest() { function in class:SkTDStackNester
92 * time nest() was called. It is an error to call unnest() more times than nest() has been
164 * than push() has been called in total or since the last call to nest().
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_scope.py 53 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4
54 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4.nest
58 return nest()
59 return nest()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_scope.py 53 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4
54 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4.nest
58 return nest()
59 return nest()
  /external/iproute2/include/
libnetlink.h 57 extern int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest);
59 extern int addattr_nest_compat_end(struct nlmsghdr *n, struct rtattr *nest);
  /external/mksh/src/
tree.c 590 int nest = 0; local
615 nest++;
621 if (c == CSUBST && nest == 0)
623 nest--;
626 nest++;
631 if (c == wp[-1] && nest == 0)
634 nest--;
misc.c 714 int nest = 0, bnest = 0; local
746 nest++;
756 } else if (nest)
757 nest--;
764 return (saw_glob && !in_bracket && !nest);
952 int nest = 0; local
957 if ((*++p == /*(*/ ')' && nest-- == 0) ||
958 (*p == '|' && match_sep && nest == 0))
961 nest++;
    [all...]
  /external/chromium_org/v8/test/mjsunit/
try-catch-scopes.js 30 // as local variables and they should be allowed to nest.
  /frameworks/base/graphics/java/android/graphics/drawable/
LayerDrawable.java 60 * Padding mode used to nest each layer inside the padding of the previous
492 * <li>{@link #PADDING_MODE_NEST} to nest each layer inside the
819 final boolean nest = mLayerState.mPaddingMode == PADDING_MODE_NEST;
827 if (nest) {
842 final boolean nest = mLayerState.mPaddingMode == PADDING_MODE_NEST;
852 if (nest) {
867 final boolean nest = mLayerState.mPaddingMode == PADDING_MODE_NEST;
877 if (nest) {
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc 256 unittest::TestAllTypes::NestedMessage* nest = local
259 ASSERT_TRUE(nest != NULL);
260 EXPECT_EQ(1, nest->bb());
261 delete nest;
300 unittest::TestAllTypes::NestedMessage* nest = local
302 ASSERT_TRUE(nest != NULL);
305 message.set_allocated_optional_nested_message(nest);
    [all...]
  /external/dnsmasq/src/
option.c 24 static void one_file(char *file, int nest, int hard_opt);
978 static char *one_opt(int option, char *arg, char *gen_prob, int nest)
991 if (nest == 0)
2783 int option, nest = 0, testmode = 0; local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regcomp.c 66 Idx nest, reg_errcode_t *err);
69 Idx nest, reg_errcode_t *err);
72 Idx nest, reg_errcode_t *err);
75 Idx nest, reg_errcode_t *err);
    [all...]
  /external/llvm/utils/vim/
llvm.vim 49 syn keyword llvmKeyword msp430_intrcc naked nest noalias nocapture
  /external/chromium_org/chrome/common/extensions/docs/static/css/out/
site.css 4 */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}button,input,select,textarea{font-family:sans-serif}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}p,pre{margin:1.5em 0}blockquote{margin:1.5em 40px}h1{font-size:2em;line-height:1.5em;margin-top:0.75em;margin-bottom:0.75em}h2{font-size:1.5em;line-height:2em;margin-top:1em;margin-bottom:1em}h3{font-size:1.17em;line-height:1.28205em;margin-top:1.28205em;margin-bottom:1.28205em}h4{font-size:1em;line-height:1.5em;margin-top:1.5em;margin-bottom:1.5em}h5{font-size:0.83em;line-height:1.80723em;margin-top:1.80723em;margin-bottom:1.80723em}h6{font-size:0.67em;line-height:2.23881em;margin-top:2.23881em;margin-bottom:2.23881em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace, serif;_font-family:'courier new', monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:1.5em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{margin:0 2px;border-color:#c0c0c0;border-top-style:solid;border-top-width:0.0625em;padding-top:0.4625em;border-bottom-style:solid;border-bottom-width:0.0625em;padding-bottom:0.9125em;border-left-style:solid;border-left-width:0.0625em;padding-left:0.875em;border-right-style:solid;border-right-width:0.0625em;padding-right:0.875em}legend{border:0;padding:0;*margin-left:-7px}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}* html{font-size:100%}html{font-size:16px;line-height:1.5em}* html{font-size:100%}html{font-size:16px;line-height:1.5em}.g-section:after{content:".";display:block;height:0;clear:both;visibility:hidden}.g-unit .g-section:after{clear:none}.g-unit .g-section{width:100%;overflow:hidden}.g-section,.g-unit{zoom:1}.g-split>.g-unit{float:right;text-align:right}.g-split>.g-first{float:left;text-align:left}.g-tpl-160 .g-unit,.g-unit .g-tpl-160 .g-unit,.g-unit .g-unit .g-tpl-160 .g-unit,.g-unit .g-unit .g-unit .g-tpl-160 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-tpl-160 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-160 .g-unit{display:block;margin:0 0 0 160px;width:auto;float:none}.g-tpl-160 .g-first,.g-unit .g-tpl-160 .g-first,.g-unit .g-unit .g-tpl-160 .g-first,.g-unit .g-unit .g-unit .g-tpl-160 .g-first,.g-unit .g-unit .g-unit .g-unit .g-tpl-160 .g-first,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-160 .g-first{display:block;margin:0;width:160px;float:left}.g-tpl-25-75 .g-unit,.g-unit .g-tpl-25-75 .g-unit,.g-unit .g-unit .g-tpl-25-75 .g-unit,.g-unit .g-unit .g-unit .g-tpl-25-75 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-tpl-25-75 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-25-75 .g-unit{width:74.999%;float:right;display:inline;margin:0}.g-tpl-25-75 .g-first,.g-unit .g-tpl-25-75 .g-first,.g-unit .g-unit .g-tpl-25-75 .g-first,.g-unit .g-unit .g-unit .g-tpl-25-75 .g-first,.g-unit .g-unit .g-unit .g-unit .g-tpl-25-75 .g-first,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-25-75 .g-first{width:24.999%;float:left;display:inline;margin:0}.g-tpl-75-25 .g-unit,.g-unit .g-tpl-75-25 .g-unit,.g-unit .g-unit .g-tpl-75-25 .g-unit,.g-unit .g-unit .g-unit .g-tpl-75-25 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-tpl-75-25 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-75-25 .g-unit{width:24.999%;float:right;display:inline;margin:0}.g-tpl-75-25 .g-first,.g-unit .g-tpl-75-25 .g-first,.g-unit .g-unit .g-tpl-75-25 .g-first,.g-unit .g-unit .g-unit .g-tpl-75-25 .g-first,.g-unit .g-unit .g-unit .g-unit .g-tpl-75-25 .g-first,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-75-25 .g-first{width:74.999%;float:left;display:inline;margin:0}.g-tpl-33-67 .g-unit,.g-unit .g-tpl-33-67 .g-unit,.g-unit .g-unit .g-tpl-33-67 .g-unit,.g-unit .g-unit .g-unit .g-tpl-33-67 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-tpl-33-67 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-33-67 .g-unit{width:66.999%;float:right;display:inline;margin:0}.g-tpl-33-67 .g-first,.g-unit .g-tpl-33-67 .g-first,.g-unit .g-unit .g-tpl-33-67 .g-first,.g-unit .g-unit .g-unit .g-tpl-33-67 .g-first,.g-unit .g-unit .g-unit .g-unit .g-tpl-33-67 .g-first,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-33-67 .g-first{width:32.999%;float:left;display:inline;margin:0}.g-tpl-67-33 .g-unit,.g-unit .g-tpl-67-33 .g-unit,.g-unit .g-unit .g-tpl-67-33 .g-unit,.g-unit .g-unit .g-unit .g-tpl-67-33 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-tpl-67-33 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-67-33 .g-unit{width:32.999%;float:right;display:inline;margin:0}.g-tpl-67-33 .g-first,.g-unit .g-tpl-67-33 .g-first,.g-unit .g-unit .g-tpl-67-33 .g-first,.g-unit .g-unit .g-unit .g-tpl-67-33 .g-first,.g-unit .g-unit .g-unit .g-unit .g-tpl-67-33 .g-first,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-67-33 .g-first{width:66.999%;float:left;display:inline;margin:0}.g-tpl-50-50 .g-unit,.g-unit .g-tpl-50-50 .g-unit,.g-unit .g-unit .g-tpl-50-50 .g-unit,.g-unit .g-unit .g-unit .g-tpl-50-50 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-tpl-50-50 .g-unit,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-50-50 .g-unit{width:49.999%;float:right;display:inline;margin:0}.g-tpl-50-50 .g-first,.g-unit .g-tpl-50-50 .g-first,.g-unit .g-unit .g-tpl-50-50 .g-first,.g-unit .g-unit .g-unit .g-tpl-50-50 .g-first,.g-unit .g-unit .g-unit .g-unit .g-tpl-50-50 .g-first,.g-unit .g-unit .g-unit .g-unit .g-unit .g-tpl-50-50 .g-first{width:49.999%;float:left;display:inline;margin:0}.g-tpl-nest .g-unit{float:left;width:auto;display:inline;margin:0}.g-tpl-nest-alt .g-unit{float:right;width:auto;display:inline;margin:0}.g-content{margin-right:30px}.g-last .g (…)
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 620 KEYWORD(nest);
  /external/chromium_org/third_party/d3/src/
d3.js 302 d3.nest = function() {
303 var nest = {}, keys = [], sortKeys = [], sortValues, rollup;
305 if (depth >= keys.length) return rollup ? rollup.call(nest, array) : sortValues ? array.sort(sortValues) : array;
341 nest.map = function(array, mapType) {
344 nest.entries = function(array) {
347 nest.key = function(d) {
349 return nest;
351 nest.sortKeys = function(order) {
353 return nest;
355 nest.sortValues = function(order)
    [all...]

Completed in 3275 milliseconds

1 2