/development/samples/ApiDemos/res/layout/ |
activity_finish_affinity.xml | 33 <Button android:id="@+id/nest" 35 android:text="Nest some more">
|
/external/v8/src/compiler/ |
diamond.h | 41 // Nest {this} into either the if_true or if_false branch of {that}. 42 void Nest(Diamond& that, bool if_true) {
|
/external/iproute2/tipc/ |
node.c | 79 struct nlattr *nest; local 98 nest = mnl_attr_nest_start(nlh, TIPC_NLA_NET); 100 mnl_attr_nest_end(nlh, nest); 175 struct nlattr *nest; local 194 nest = mnl_attr_nest_start(nlh, TIPC_NLA_NET); 196 mnl_attr_nest_end(nlh, nest);
|
socket.c | 50 struct nlattr *nest; local 57 nest = mnl_attr_nest_start(nlh, TIPC_NLA_SOCK); 59 mnl_attr_nest_end(nlh, nest);
|
bearer.c | 131 struct nlattr *nest; local 202 nest = mnl_attr_nest_start(nlh, TIPC_NLA_BEARER_UDP_OPTS); 205 mnl_attr_nest_end(nlh, nest); 229 struct nlattr *nest; local 264 nest = mnl_attr_nest_start(nlh, TIPC_NLA_BEARER); 296 mnl_attr_nest_end(nlh, nest); 358 struct nlattr *nest; local 387 nest = mnl_attr_nest_start(nlh, TIPC_NLA_BEARER); 407 mnl_attr_nest_end(nlh, nest);
|
media.c | 93 struct nlattr *nest; local 126 nest = mnl_attr_nest_start(nlh, TIPC_NLA_MEDIA); 128 mnl_attr_nest_end(nlh, nest);
|
/external/llvm/test/Bitcode/ |
highLevelStructure.3.2.ll | 36 ; CHECK: declare void @ParamAttr2(i8* nest) 37 declare void @ParamAttr2(i8* nest) 50 ; CHECK: declare void @ParamAttr9{{[(i8* nest noalias nocapture) | (i8* noalias nocapture nest)]}} 51 declare void @ParamAttr9(i8* nest noalias nocapture)
|
/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);
|
/external/v8/test/mjsunit/compiler/ |
osr-block-scope.js | 9 function nest(body, name, depth) { 29 var body = nest(orig, name, depth);
|
/cts/tests/tests/graphics/res/drawable/ |
layer_drawable_density.xml | 24 android:paddingMode="nest">
|
/frameworks/base/core/res/res/drawable/ |
tab_indicator_material.xml | 18 android:paddingMode="nest">
|
/frameworks/base/services/core/java/com/android/server/power/ |
ScreenOnBlocker.java | 28 * Calls to acquire() nest and must be matched by the same number
|
SuspendBlocker.java | 30 * Calls to acquire() nest and must be matched by the same number
|
/toolchain/binutils/binutils-2.25/binutils/ |
srconv.c | 587 struct coff_scope *scope, int type, int nest) 605 nest, 616 dps.nesting = nest; 640 struct coff_type *type, int nest) 713 walk_tree_type_1 (sfile, symbol, type->u.pointer.points_to, nest + 1); 729 walk_tree_type_1 (sfile, symbol, type->u.function.function_returns, nest + 1); 736 walk_tree_symbol (sfile, 0, param, nest); 764 walk_tree_symbol (sfile, 0, member, nest + 1); 820 walk_tree_type_1 (sfile, symbol, type->u.array.array_of, nest + 1); 847 walk_tree_symbol (sfile, 0, member, nest + 1) [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
FinishAffinity.java | 43 Button button = (Button)findViewById(R.id.nest);
|
/external/clang/test/Parser/ |
ms-if-exists.cpp | 83 // __if_exists, __if_not_exists can nest
|
/external/v8/test/mjsunit/ |
try-catch-scopes.js | 30 // as local variables and they should be allowed to nest.
|
/external/iproute2/include/ |
libnetlink.h | 92 int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest); 95 int addattr_nest_compat_end(struct nlmsghdr *n, struct rtattr *nest); 112 int rta_nest_end(struct rtattr *rta, struct rtattr *nest);
|
/external/iproute2/lib/ |
libnetlink.c | 683 struct rtattr *nest = NLMSG_TAIL(n); local 686 return nest; 689 int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest) 691 nest->rta_len = (void *)NLMSG_TAIL(n) - (void *)nest; 707 struct rtattr *nest = (void *)start + NLMSG_ALIGN(start->rta_len); local 710 addattr_nest_end(n, nest); 766 struct rtattr *nest = RTA_TAIL(rta); local 770 return nest; 773 int rta_nest_end(struct rtattr *rta, struct rtattr *nest) [all...] |
/external/iproute2/bridge/ |
link.c | 271 struct rtattr *nest; local 370 nest = addattr_nest(&req.n, sizeof(req), 399 addattr_nest_end(&req.n, nest); 407 nest = addattr_nest(&req.n, sizeof(req), IFLA_AF_SPEC); 415 addattr_nest_end(&req.n, nest);
|
/external/llvm/lib/Target/WebAssembly/ |
WebAssemblyRegStackify.cpp | 139 // Don't nest anything inside a phi. 143 // Don't nest anything inside an inline asm, because we don't have 177 // Don't nest an INLINE_ASM def into anything, because we don't have 182 // Don't nest PHIs inside of anything. 212 // Move the def down and nest it in the current instruction.
|
/toolchain/binutils/binutils-2.25/bfd/ |
stabs.c | 300 int nest; 308 nest = 0; 323 if (nest == 0) 325 --nest; 328 ++nest; 329 else if (nest == 0) 416 nest = 0; 427 if (nest == 0) 433 --nest; 436 ++nest; 298 int nest; local [all...] |
/toolchain/binutils/binutils-2.25/gas/ |
cond.c | 538 the assembly as a whole. If NEST is non negative, we are being 539 called because of the end of a macro expansion. If NEST is 543 cond_finish_check (int nest) 545 if (current_cframe != NULL && current_cframe->macro_nest >= nest) 547 if (nest >= 0) 566 cond_exit_macro (int nest) 568 while (current_cframe != NULL && current_cframe->macro_nest >= nest)
|
/external/clang/test/SemaCXX/ |
typo-correction-delayed.cpp | 56 void Nest(); 89 NestedNode* Nest(); 94 // There are two equidistant, usable corrections for Next: next and Nest
|