Searched refs:inner (Results 1 - 25 of 88) sorted by relevance

1234

/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/stress/
H A Dactivation-test-loop.js11 var inner = new Inner();
13 inner.isDone = function() {
18 var val = inner.doStuff();
/macosx-10.10.1/tcl-105/tcl_ext/tbcload/tbcload/tests/tcl/
H A Dbreak1.tcl18 set inner {}
30 set inner {}
32 lappend inner [incr idx]
34 lappend inner [incr idx]
35 lappend inner [incr idx]
37 foreach innerCounter $inner {
H A Dforeach.tcl18 set inner {}
24 lappend inner $outerCounter
26 foreach innerCounter $inner {
H A Dcont1.tcl18 set inner {}
23 lappend inner $outerCounter
32 foreach innerCounter $inner {
/macosx-10.10.1/libclosure-65/objectTests/
H A Dhasdescriptor.c14 void (^inner)(void) = ^ { printf("argc was %d\n", argc); };
16 inner();
17 inner();
19 //printf("size of inner is %ld\n", Block_size(inner));
21 if (Block_size(inner) != Block_size(outer)) {
H A Djosh.cpp24 MyStruct inner __unused; // fails to compile!
H A Dimportedblockcopy.m51 void (^inner)(void) = ^ {
56 inner();
57 inner();
59 // now when we copy outer the compiler will _Block_copy_assign inner
61 // but when released, at least under GC, it won't let go of inner (nor its import: "to")
H A Drecursive-block.c33 __block voidVoid inner = ^{ doSomething(i); }; local
34 //printf("inner, on stack, is %p\n", (void*)inner);
36 //printf("will call inner block %p\n", (void *)inner);
37 inner();
41 //Block_release(inner);
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet/
H A Dip_ecn.c84 ip_ecn_ingress(mode, outer, inner)
87 const u_int8_t *inner;
89 if (!outer || !inner)
92 *outer = *inner;
106 * modify inner ECN (TOS) field on egress operation (tunnel decapsulation).
109 ip_ecn_egress(mode, outer, inner)
112 u_int8_t *inner;
114 if (!outer || !inner)
120 *inner |= IPTOS_CE;
130 ip6_ecn_ingress(mode, outer, inner)
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Regress/
H A Dregress-71107.js53 function inner() { function in function:outer
59 return inner;
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/Statements/
H A Ddowhile-005.js34 result2 = "fail: did not hit code after inner loop";
39 inner: {
41 break inner;
42 result1 = "fail: did break out of inner label";
61 "break out of inner loop",
/macosx-10.10.1/dtrace-147/test/tst/sparc/pid/
H A Dtst.embedded.s48 ALTENTRY(inner) function
52 SET_SIZE(inner)
H A Dtst.embedded.d48 pid$1:a.out:inner:
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dsortlist.c54 dns_acl_t *inner = e->nestedacl; local
56 if (inner->length == 0)
58 else if (inner->length > 2)
60 else if (inner->elements[0].negative)
63 try_elt = &inner->elements[0];
64 if (inner->length == 2)
65 order_elt = &inner->elements[1];
/macosx-10.10.1/dtrace-147/test/tst/i386/pid/
H A Dtst.embedded.d48 pid$1:a.out:inner:
H A Dtst.embedded.s56 ALTENTRY(inner) function
60 SET_SIZE(inner)
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Scope/
H A Dregress-181834.js61 * If N>0, we end up calling inner() N+1 times:
62 * inner(N), inner(N-1), ... , inner(0).
64 * Each call to inner() increments |outer_d| by 1.
65 * The last call, inner(0), returns the final value
71 return inner(N);
73 function inner(level) function in function:outer
78 return inner(level - 1);
H A Dscope-002.js22 * SUMMARY: Testing visibility of outer function from inner function.
28 var summary = 'Testing visibility of outer function from inner function';
44 function inner() function in function:Outer
51 actual = inner();
/macosx-10.10.1/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebDesktopNotificationsDelegate.cpp45 static NotificationCOMWrapper* create(Notification* inner) { return new NotificationCOMWrapper(inner); } argument
63 NotificationCOMWrapper(Notification* inner) : m_refCount(1), m_inner(inner) {} argument
/macosx-10.10.1/ruby-106/ruby/test/
H A Dtest_singleton.rb83 inner = Class.new(outer) do
87 tester = Class.new(inner)
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_markup_document.rb128 inner = @RM::Document.new @RM::Paragraph.new 'replace'
129 inner.file = 'file.rb'
130 expected = @RM::Document.new inner
163 inner = @RM::Document.new @RM::Paragraph.new 'replace'
164 inner.file = 'file.rb'
165 expected = @RM::Document.new inner
/macosx-10.10.1/Heimdal-398.1.2/kcm/
H A Dcache.c1199 unparse_default_one(krb5_storage *inner, struct kcm_default_cache *c) argument
1202 CHECK(ret = krb5_store_int32(inner, c->uid));
1203 CHECK(ret = krb5_store_int32(inner, c->session));
1204 CHECK(ret = krb5_store_stringz(inner, c->name));
1216 r = kcm_unparse_wrap(sp, "default-cache", c->session, ^(krb5_storage *inner) {
1217 return unparse_default_one(inner, c);
1258 krb5_storage *inner; local
1272 inner = krb5_storage_from_data(&idata);
1273 heim_assert(inner, "krb5_storage_from_data");
1276 ret = kcm_parse_ntlm_challenge_one(context, inner);
1303 kcm_unparse_wrap(krb5_storage *sp, char *name, int32_t session, int (^wrapped)(krb5_storage *inner)) argument
1306 krb5_storage *inner = krb5_storage_emem(); local
[all...]
/macosx-10.10.1/ncurses-44/ncurses/test/
H A Dditto.c209 WINDOW *inner = derwin(outer, high - 2, wide - 2, 1, 1); local
215 scrollok(inner, TRUE);
216 keypad(inner, TRUE);
218 nodelay(inner, TRUE);
221 target->windows[k] = inner;
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/
H A Dlist.tcl1059 set mode inner
1063 set err [::cmdline::getopt args {inner left right full keys.arg} opt arg]
1071 return -code error "wrong#args: dbJoin ?-inner|-left|-right|-full? ?-keys varname? \{key table\}..."
1078 set inner [string equal $mode inner]
1079 set innerorleft [expr {$inner || [string equal $mode left]}]
1085 return -code error "wrong#args: dbJoin ?-inner|-left|-right|-full? \{key table\}..."
1107 if {$inner && ([llength $table] == 0)} {return {}}
1110 inner {set keylist [MapExtendInner state $key $table]}
1117 if {$inner
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/yaml/
H A Dhuddle.tcl472 set inner {}
476 lappend inner [jsondump $sub $offset $newline $nextoff]
478 if {[llength $inner] == 1} {
479 return "\[[lindex $inner 0]\]"
481 return "\[$nlof[join $inner ,$nlof]$newline$begin\]"
484 set inner {}
486 lappend inner [subst {"$key":$sp[jsondump [huddle get $data $key] $offset $newline $nextoff]}]
488 if {[llength $inner] == 1} {
489 return $inner
491 return "\{$nlof[join $inner ,
[all...]

Completed in 286 milliseconds

1234