Searched refs:nested (Results 1 - 25 of 134) sorted by relevance

123456

/macosx-10.10.1/ntp-92/libopts/
H A Dnested.c285 pNV = AGALOC( sz, "empty nested value pair" );
571 * what: Deallocate the memory for a nested value
575 * A nested value needs to be deallocated. The pointer passed in should
669 pRes = AGALOC( sizeof(*pRes) + nameLen + 1, "nested args" );
679 pAL = AGALOC( sizeof(*pAL), "nested arg list" );
843 * end of autoopts/nested.c */
H A DMakefile.am21 makeshell.c nested.c numeric.c \
/macosx-10.10.1/ntp-92/sntp/libopts/
H A Dnested.c285 pNV = AGALOC( sz, "empty nested value pair" );
571 * what: Deallocate the memory for a nested value
575 * A nested value needs to be deallocated. The pointer passed in should
669 pRes = AGALOC( sizeof(*pRes) + nameLen + 1, "nested args" );
679 pAL = AGALOC( sizeof(*pAL), "nested arg list" );
843 * end of autoopts/nested.c */
H A DMakefile.am21 makeshell.c nested.c numeric.c \
/macosx-10.10.1/apr-32/apr/apr/include/arch/beos/
H A Dapr_arch_thread_mutex.h36 int nested; member in struct:apr_thread_mutex_t
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Scope/
H A Dregress-154693.js56 function nested() {} function in function:f
57 return nested;
/macosx-10.10.1/libdispatch-442.1.4/src/
H A Dapply.c43 // Handle nested dispatch_apply rdar://problem/9294578
44 size_t nested = (size_t)_dispatch_thread_getspecific(dispatch_apply_key); local
67 _dispatch_thread_setspecific(dispatch_apply_key, (void*)nested);
198 size_t nested = (size_t)_dispatch_thread_getspecific(dispatch_apply_key); local
199 if (!slowpath(nested)) {
200 nested = iterations;
202 thr_cnt = nested < thr_cnt ? thr_cnt / nested : 1;
203 nested = nested < DISPATCH_APPLY_MA
[all...]
/macosx-10.10.1/Libc-1044.1.2/xcodescripts/
H A Dgenerate_features.pl38 my $nested = 0;
45 $nested--;
53 $nested++;
114 if ($nested != 0) {
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A Dresources.h59 nested = 0x04, // nested code (recursively signed) enumerator in enum:Security::CodeSigning::ResourceBuilder::__anon3707
120 bool nested() const { return mFlags & ResourceBuilder::nested; } function in class:Security::CodeSigning::ResourceSeal
H A Dresources.cpp112 if (CFBooleanRef nestRef = rule.get<CFBooleanRef>("nested"))
114 flags |= nested;
170 // symlinks cannot ever be nested code, so quietly convert to resource file
179 next(ent, rule->flags & ~nested, relpath, rule);
187 if (rule->flags & nested) {
188 if (strchr(ent->fts_name, '.')) { // nested, has extension -> treat as nested bundle
347 mFlags |= ResourceBuilder::nested;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dresources.h59 nested = 0x04, // nested code (recursively signed) enumerator in enum:Security::CodeSigning::ResourceBuilder::__anon4419
120 bool nested() const { return mFlags & ResourceBuilder::nested; } function in class:Security::CodeSigning::ResourceSeal
H A Dresources.cpp112 if (CFBooleanRef nestRef = rule.get<CFBooleanRef>("nested"))
114 flags |= nested;
170 // symlinks cannot ever be nested code, so quietly convert to resource file
179 next(ent, rule->flags & ~nested, relpath, rule);
187 if (rule->flags & nested) {
188 if (strchr(ent->fts_name, '.')) { // nested, has extension -> treat as nested bundle
347 mFlags |= ResourceBuilder::nested;
/macosx-10.10.1/apr-32/apr/apr/locks/beos/
H A Dthread_mutex.c65 new_m->nested = flags & APR_THREAD_MUTEX_NESTED;
89 if (mutex->nested && mutex->owner == me) {
117 if (mutex->nested && mutex->owner == find_thread(NULL)) {
/macosx-10.10.1/tcl-105/tcl84/tcl/library/
H A Dsafe.tcl49 {-nestedLoadOk "allow nested loading"}
50 {-nested false "nested loading"}
92 # Helper function to resolve the dual way of specifying nested loading
93 # (either by -nestedLoadOk or -nested 1)
95 foreach v {Args nested nestedLoadOk} {
101 if {$flag && (!$nestedLoadOk != !$nested)
102 && ([::tcl::OptProcArgGiven -nested])} {
104 "conflicting values given for -nested and -nestedLoadOk"
110 return $nested
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/docs_src/ref/transapp/
H A DMakefile20 nested.html \
/macosx-10.10.1/security_systemkeychain-55202/src/
H A Dcodesign.h82 extern bool nested; // nested code processing (--deep)
/macosx-10.10.1/tcl-105/tcl_ext/tclsoap/tclsoap/samples/
H A Dtest-WSDL.pl72 my $nested = $service->echoNestedStruct({
82 PrintStruct('echoNestedStruct', $nested);
/macosx-10.10.1/tcl-105/tcl/tcl/library/
H A Dsafe.tcl53 # Helper function to resolve the dual way of specifying nested loading
54 # (either by -nestedLoadOk or -nested 1)
56 foreach v {Args nested nestedLoadOk} {
62 if {$flag && (!$nestedLoadOk != !$nested)
63 && ([::tcl::OptProcArgGiven -nested])} {
65 "conflicting values given for -nested and -nestedLoadOk"
71 return $nested
133 [list -nested $state(nestedok)] \
158 -nested {return [list -nested
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclParse.c211 Tcl_ParseCommand(interp, string, numBytes, nested, parsePtr)
220 int nested; /* Non-zero means this is a nested command:
264 if (nested != 0) {
278 if (nested) {
279 parsePtr->incomplete = nested;
805 Tcl_Parse nested;
852 * (and repeatedly) to parse the nested command(s), then
859 numBytes, 1, &nested) != TCL_OK) {
860 parsePtr->errorType = nested
802 Tcl_Parse nested; local
[all...]
H A DtclParseExpr.c1141 Tcl_Parse nested;
1291 * Call Tcl_ParseCommand repeatedly to parse the nested command(s)
1298 &nested) != TCL_OK) {
1299 parsePtr->term = nested.term;
1300 parsePtr->errorType = nested.errorType;
1301 parsePtr->incomplete = nested.incomplete;
1304 src = (nested.commandStart + nested.commandSize);
1307 * This is equivalent to Tcl_FreeParse(&nested), but
1311 if (nested
1127 Tcl_Parse nested; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/include/
H A Ddependencies.inc42 list, desc - old, not needed under new system, replaced by the nested-list serialization
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2toc/include/
H A Ddependencies.inc42 list, desc - old, not needed under new system, replaced by the nested-list serialization
/macosx-10.10.1/ruby-106/ruby/bootstraptest/
H A Dtest_eval.rb174 $nested = false
178 unless $nested
179 $nested = true
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Duniset_props.cpp482 UnicodeSet* nested = 0; // alias - do not delete local
492 // -------- Parse '[' of opening delimiter OR nested set.
493 // If there is a nested set, use `setMode' to define how
497 // characters representing a nested set in the symbol
525 // otherwise restart loop for nested [], \p{}, etc.
542 // casting away const, but `nested' won't be modified
544 nested = const_cast<UnicodeSet*>(ms);
550 // -------- Handle a nested set. This either is inline in
572 if (nested == 0) {
578 nested
[all...]
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Config/
H A DDOMConfigurator.pm178 if ($tag_name =~ /^(param|param-nested|param-text)$/) {
300 if ($tag_name =~ /^(param|param-nested|param-text)$/) {
342 #<param-nested>
345 if ($tag_name eq 'param-nested'){
348 die "Log4perl: in config file, multiple param-nested tags for $name not supported";
398 #handles an appender's <param-nested> elements
409 if ($tag_name =~ /^param|param-nested|param-text$/) {
435 if ($tag_name =~ 'param|param-nested|param-text') {
574 <param-nested name="login">
580 </param-nested>
[all...]

Completed in 181 milliseconds

123456