Searched refs:ref (Results 226 - 250 of 887) sorted by relevance

1234567891011>>

/macosx-10.10.1/libauto-186/
H A Dauto_weak.h92 typedef void (^weak_ref_visitor_t) (const weak_referrer_t &ref); variable
101 typedef void (^weak_ref_fixer_t) (weak_referrer_t &ref); variable
/macosx-10.10.1/lukemftp-14/tnftp/libedit/
H A Dhist.h53 ptr_t ref; /* Argument for history fcns */ member in struct:el_history_t
59 ((((*(el)->el_history.fun) ((el)->el_history.ref, &(el)->el_history.ev, \
/macosx-10.10.1/swig-12/Lib/perl5/
H A Dnoembed.h55 #ifdef ref
56 #undef ref macro
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DLDAPSearchRequest.cpp89 LDAPRequest* LDAPSearchRequest::followReferral(LDAPMsg* ref){ argument
96 if(ref->getMessageType() == LDAPMsg::SEARCH_REFERENCE){
97 urls = ((LDAPSearchReference *)ref)->getUrls();
99 urls = ((LDAPResult *)ref)->getReferralUrls();
109 if( (ref->getMessageType() == LDAPMsg::SEARCH_REFERENCE) &&
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Drefcount.h73 void ref() const function in class:Security::RefCount
102 RefPointer(const RefPointer& p) { if (p) p->ref(); ptr = p.ptr; }
103 RefPointer(T *p) { if (p) p->ref(); ptr = p; }
106 RefPointer(const RefPointer<Sub>& p) { if (p) p->ref(); ptr = p.ptr; }
143 p->ref();
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Drefcount.h73 void ref() const function in class:Security::RefCount
102 RefPointer(const RefPointer& p) { if (p) p->ref(); ptr = p.ptr; }
103 RefPointer(T *p) { if (p) p->ref(); ptr = p; }
106 RefPointer(const RefPointer<Sub>& p) { if (p) p->ref(); ptr = p.ptr; }
143 p->ref();
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/tests/
H A Dnameref.sh324 unset ref x
325 typeset -n ref
330 ref=xxx
334 [[ -v ref ]] && err_exit '$ref should be unset'
335 ref=x
336 [[ $ref == 3 ]] || err_exit "\$ref is $ref, it should be 3"
340 typeset -n ref
[all...]
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/t/
H A Dcontext.t140 ok( ref $plugin eq 'Template::Plugin::Table' );
143 ok( $row && ref $row eq 'ARRAY' );
160 ok( ref $filter eq 'CODE' );
165 ok( ref $filter eq 'CODE' );
171 ok( ref $filter eq 'CODE' );
/macosx-10.10.1/apache-793/httpd/modules/mappers/
H A Dmod_speling.c367 const char *ref; local
371 ref = apr_table_get(r->headers_in, "Referer");
398 ref ? "Fixed spelling: %s to %s from %s"
401 (ref ? ref : ""));
488 if (ref != NULL) {
492 *(const char **)apr_array_push(t) = ap_escape_uri(sub_pool, ref);
507 ref ? "Spelling fix: %s: %d candidates from %s"
510 (ref ? ref
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dxinclude.c56 xmlNodePtr ref; /* the node making the reference in the source */ member in struct:_xmlXIncludeRef
187 * @ref: the XInclude reference
192 xmlXIncludeFreeRef(xmlXIncludeRefPtr ref) { argument
193 if (ref == NULL)
196 xmlGenericError(xmlGenericErrorContext, "Freeing ref\n");
198 if (ref->doc != NULL) {
200 xmlGenericError(xmlGenericErrorContext, "Freeing doc %s\n", ref->URI);
202 xmlFreeDoc(ref->doc);
204 if (ref->URI != NULL)
205 xmlFree(ref
223 xmlXIncludeNewRef(xmlXIncludeCtxtPtr ctxt, const xmlChar *URI, xmlNodePtr ref) argument
488 xmlXIncludeRefPtr ref; local
[all...]
/macosx-10.10.1/mDNSResponder-561.1.1/Clients/ExplorerPlugin/
H A DExplorerBarWindow.cpp150 e->ref = NULL;
155 err = DNSServiceBrowse( &e->ref, 0, 0, e->type, NULL, BrowseCallBack, e );
158 err = WSAAsyncSelect((SOCKET) DNSServiceRefSockFD(e->ref), m_hWnd, WM_PRIVATE_SERVICE_EVENT, FD_READ|FD_CLOSE);
161 m_serviceRefs.push_back(e->ref);
168 e->ref = NULL;
173 err = DNSServiceBrowse( &e->ref, 0, 0, e->type, NULL, BrowseCallBack, e );
176 err = WSAAsyncSelect((SOCKET) DNSServiceRefSockFD(e->ref), m_hWnd, WM_PRIVATE_SERVICE_EVENT, FD_READ|FD_CLOSE);
179 m_serviceRefs.push_back(e->ref);
235 DNSServiceRef ref = m_serviceRefs.front(); local
240 Stop( ref );
327 DNSServiceRef ref = *it; local
[all...]
/macosx-10.10.1/CommonCrypto-60061/lib/
H A DCommonRandom.c209 ccInternalRandomRef ref; local
213 ref = CC_XMALLOC(sizeof(ccInternalRandom));
214 if(NULL == ref) return kCCMemoryFailure;
216 ref->rngtype = rng_created;
223 if((retval = ccInitDRBG(ref, &custom_options, options)) != 0) {
224 CC_XFREE(ref, sizeof(ccInternalRandom));
228 *rngRef = ref;
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Dhist.c58 el->el_history.ref = NULL;
87 el->el_history.ref = ptr;
118 if (el->el_history.ref == NULL)
163 if (el->el_history.ref == NULL)
181 return history(el->el_history.ref, &ev, H_SETSIZE, num);
184 return history(el->el_history.ref, &ev, H_SETUNIQUE, num);
218 if ((*(el)->el_history.fun)((el)->el_history.ref, &ev, fn, arg) == -1)
/macosx-10.10.1/libedit-40/src/
H A Dhist.c58 el->el_history.ref = NULL;
87 el->el_history.ref = ptr;
118 if (el->el_history.ref == NULL)
163 if (el->el_history.ref == NULL)
181 return FUNW(history)(el->el_history.ref, &ev, H_SETSIZE, num);
184 return FUNW(history)(el->el_history.ref, &ev, H_SETUNIQUE, num);
218 if ((*(el)->el_history.fun)((el)->el_history.ref, &ev, fn, arg) == -1)
/macosx-10.10.1/gnutar-453/gnutar/src/
H A Dtransform.c60 size_t ref; /* type == segm_backref */ member in union:replace_segm::__anon8752
110 add_backref_segment (size_t ref) argument
114 segm->v.ref = ref;
440 if (rmp[segm->v.ref].rm_so != -1
441 && rmp[segm->v.ref].rm_eo != -1)
443 size_t size = rmp[segm->v.ref].rm_eo
444 - rmp[segm->v.ref].rm_so;
445 ptr = input + rmp[segm->v.ref].rm_so;
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/bwidget/
H A Dbasic.rb35 :variable=>@@var.ref(lab, 'state'),
51 :variable=>@@var.ref(ent, 'state'),
56 :variable=>@@var.ref(ent, 'editable'),
62 lab = TkLabel.new(parent, :textvariable=>@@var.ref('entcmd'),
105 :variable=>@@var.ref('bstate'),
110 :variable=>@@var.ref('barmcmd'),
115 label = TkLabel.new(parent, :textvariable=>@@var.ref('butcmd'),
125 :variable=>@@var.ref('bside'), :value=>dir,
139 :variable=>@@var.ref('brelief'), :value=>relief,
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/antlr/
H A DAST.hpp25 AST() : ref(0) {}
26 AST(const AST&) : ref(0) {}
135 ASTRef* ref; member in class:antlr::AST
/macosx-10.10.1/file-46/file/src/
H A Dcdf_time.c181 static const char *ref = "Sat Apr 23 01:30:00 1977"; local
188 if (strcmp(ref, p) != 0)
189 errx(1, "Error date %s != %s\n", ref, p);
/macosx-10.10.1/vim-55/src/
H A Dif_ole.cpp121 CVim() : ref(0), typeinfo(0) {};
124 unsigned long ref; member in class:CVim
230 return ++ref;
239 if (ref > 0)
240 --ref;
241 return ref;
444 CVimCF() : ref(0) {};
447 unsigned long ref; member in class:CVimCF
481 return ++ref;
490 if (ref >
[all...]
/macosx-10.10.1/groff-38/groff/src/preproc/refer/
H A Dlabel.cpp15 #include "ref.h"
552 void at_expr::evaluate(int tentative, const reference &ref, argument
556 ref.canonicalize_authors(result);
558 const char *end, *start = ref.get_authors(&end);
564 void format_expr::evaluate(int tentative, const reference &ref, argument
569 const label_info *lp = ref.get_label_ptr();
570 int num = lp == 0 ? ref.get_number() : lp->count;
675 void field_expr::evaluate(int, const reference &ref, argument
679 const char *start = ref.get_field(name, &end);
698 void analyzed_expr::evaluate(int tentative, const reference &ref, argument
705 evaluate(int tentative, const reference &ref, string &result, substring_position &pos) argument
715 evaluate(int tentative, const reference &ref, string &result, substring_position &pos) argument
728 evaluate(int tentative, const reference &ref, string &result, substring_position &) argument
739 evaluate(int tentative, const reference &ref, string &result, substring_position &) argument
816 evaluate(int tentative, const reference &ref, string &result, substring_position &) argument
832 evaluate(int tentative, const reference &ref, string &result, substring_position &pos) argument
842 evaluate(int tentative, const reference &ref, string &result, substring_position &pos) argument
851 evaluate(int tentative, const reference &ref, string &result, substring_position &pos) argument
865 evaluate(int tentative, const reference &ref, string &result, substring_position &pos) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/tile/
H A Ddemo.rb88 :variable=>$V.ref(:THEME),
97 :variable=>$V.ref(:THEME),
108 m.add(:radiobutton, :label=>name, :variable=>$V.ref(:THEME),
115 m.add(:radiobutton, :label=>name, :variable=>$V.ref(:THEME),
220 :variable=>$V.ref(icon),
251 :variable=>$V.ref(icon), :compound=>$V[:COMPOUND],
274 :variable=>$V.ref(:COMPOUND), :value=>str,
370 :variable=>$V.ref(:SELECTED), :underline=>2)
371 rb1 = Tk::Tile::Radiobutton.new(l, :text=>'One', :variable=>$V.ref(:CHOICE),
373 rb2 = Tk::Tile::Radiobutton.new(l, :text=>'Two', :variable=>$V.ref(
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_transform/lib/
H A DEncodeDecodeTransforms.c151 SecTransformImplementationRef ref)
156 SecTransformCustomSetAttribute(ref, kSecDecodeTypeAttribute,
159 SecTransformSetAttributeAction(ref,
179 SecTransformSetDataAction(ref, kSecTransformActionProcessData,
240 SecTransformCustomSetAttribute(ref, kSecTransformOutputAttributeName,
267 SecTransformCustomSetAttribute(ref, kSecTransformAbortAttributeName, kSecTransformMetaAttributeValue, bad_type);
272 SecTransformSetDataAction(ref, kSecTransformActionProcessData,
332 SecTransformCustomSetAttribute(ref, kSecTransformOutputAttributeName,
345 CFBooleanRef hasRatio = (CFBooleanRef)SecTranformCustomGetAttribute(ref,
351 SecTransformSetDataAction(ref, kSecTransformActionProcessDat
149 DecodeTransform(CFStringRef name, SecTransformRef newTransform, SecTransformImplementationRef ref) argument
558 EncodeTransform(CFStringRef name, SecTransformRef newTransform, SecTransformImplementationRef ref) argument
[all...]
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/t/
H A D21-public.t17 ref $res
62 ok(ref $r && $r->[0] eq 'Alabama');
65 ok(ref $r && $r->{item2} eq 'Arkansas');
75 ok(ref $r && $r->[1] == 40);
82 -> on_fault(sub{ref$_[1]?return$_[1]:return});
93 ok(ref $r && $r->faultcode eq 'SOAP-ENV:Client');
121 ok(ref $r && $r->{VocabularyLastcache} =~ /T/);
160 ok($r && ref($r = SOAP::Deserializer->deserialize($r)) && ($r = $r->valueof('//fortune') || ''));
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOBSDConsole.h38 IOBSDConsole * self, void * ref,
/macosx-10.10.1/IOKitUser-1050.1.21/
H A Dionotify.c81 unsigned long int ref; local
134 kr = OSGetNotificationFromMessage( &msg.msgHdr, 0, &notifyType, &ref,
142 obj = ref;
149 printf("%s: ", ref );

Completed in 322 milliseconds

1234567891011>>