Searched refs:orig (Results 151 - 175 of 318) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/
H A Dregenc.h219 #define ENC_REPLICATE(name, orig)
220 #define ENC_ALIAS(name, orig)
H A Dstring.c713 rb_str_new_frozen(VALUE orig) argument
717 if (OBJ_FROZEN(orig)) return orig;
718 klass = rb_obj_class(orig);
719 if (STR_SHARED_P(orig) && (str = RSTRING(orig)->as.heap.aux.shared)) {
722 ofs = RSTRING_LEN(str) - RSTRING_LEN(orig);
724 ((RBASIC(str)->flags ^ RBASIC(orig)->flags) & (FL_TAINT|FL_UNTRUSTED)) ||
725 ENCODING_GET(str) != ENCODING_GET(orig)) {
729 rb_enc_cr_str_exact_copy(str, orig);
971 VALUE orig; local
2985 rb_str_succ(VALUE orig) argument
6152 VALUE orig = str; local
6430 VALUE orig = str; local
6530 VALUE orig = str; local
[all...]
H A Denumerator.c365 enumerator_init_copy(VALUE obj, VALUE orig) argument
369 if (!OBJ_INIT_COPY(obj, orig)) return obj;
370 ptr0 = enumerator_ptr(orig);
1191 generator_init_copy(VALUE obj, VALUE orig) argument
1195 if (!OBJ_INIT_COPY(obj, orig)) return obj;
1197 ptr0 = generator_ptr(orig);
/macosx-10.10/vim-55/src/po/
H A DMake_ming.mak101 $(CP) $@.po $@.po.orig
H A DMakefile261 if test ! -f $@.po.orig; then cp $@.po $@.po.orig; fi
H A DMake_cyg.mak127 $(CP) $@.po $@.po.orig
/macosx-10.10/tcsh-65/tcsh/win32/
H A Dntfunc.c426 char *ptr, *orig; local
479 orig = ptr;
481 StringCbCat(ptr,sizeof(cmdbuf) - (orig - ptr), " ");
482 StringCbCat(ptr,sizeof(cmdbuf) - (orig - ptr),*argv);
546 char *hb_subst(char *orig) { argument
558 match = !_stricmp(orig,hb_subst_array[i]);
/macosx-10.10/Heimdal-398.1.2/lib/akadmin/
H A Dadmin.c881 CFStringRef orig = CFPreferencesCopyValue(key, prop, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
883 if (orig == NULL ||
884 (CFGetTypeID(orig) == CFStringGetTypeID() && CFStringFindWithOptions(orig, CFSTR("@LKDC:SHA"), CFRangeMake(0, CFStringGetLength(orig)), 0, NULL)))
887 if (orig)
888 CFRelease(orig);
/macosx-10.10/ruby-106/ruby/ext/stringio/
H A Dstringio.c449 strio_copy(VALUE copy, VALUE orig) argument
453 orig = rb_convert_type(orig, T_DATA, "StringIO", "to_strio");
454 if (copy == orig) return copy;
455 ptr = StringIO(orig);
460 OBJ_INFECT(copy, orig);
462 RBASIC(copy)->flags |= RBASIC(orig)->flags & STRIO_READWRITE;
/macosx-10.10/BerkeleyDB-21/db/hash/
H A Dhash.c384 HASH_CURSOR *orig, *new; local
386 orig = (HASH_CURSOR *)orig_dbc->internal;
389 new->bucket = orig->bucket;
390 new->lbucket = orig->lbucket;
391 new->dup_off = orig->dup_off;
392 new->dup_len = orig->dup_len;
393 new->dup_tlen = orig->dup_tlen;
395 if (F_ISSET(orig, H_DELETED))
397 if (F_ISSET(orig, H_ISDUP))
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblber/
H A Ddecode.c360 char *last, *orig; local
373 orig = ber->ber_ptr;
374 last = orig + bv.bv_len;
385 ber->ber_ptr = orig;
386 ber->ber_tag = *(unsigned char *) orig;
/macosx-10.10/dtrace-147/tools/ctfconvert/
H A Dst_parse.c509 char *new, *orig, c; local
512 orig = cp;
521 len = cp - orig;
523 while (orig < cp - 1)
524 *new++ = *orig++;
/macosx-10.10/ruby-106/ruby/tool/
H A Dinstruction.rb13 orig = self, defopes = [], type = nil,
23 @orig = orig
45 attr_reader :orig, :defopes, :type
1103 originsn = insn.orig
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/src/
H A Dcustom.cpp820 int orig = _parent.GetIndexOf(sorted[i]); local
821 d4_assert(orig >= 0);
827 _base.Add(orig);
846 _base.Add(orig);
852 _base.Add(orig);
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dlog.c357 krb5_addlog_dest(krb5_context context, krb5_log_facility *f, const char *orig) argument
362 const char *p = orig;
379 N_("failed to parse \"%s\"", ""), orig);
/macosx-10.10/apr-32/apr-util/apr-util/buckets/
H A Dapr_brigade.c362 struct iovec *orig; local
367 orig = vec;
385 *nvec = (int)(vec - orig);
/macosx-10.10/libxml2-26/libxml2/
H A Dcatalog.c1484 * @orig: the system, public or prefix to match (or NULL)
1494 const xmlChar *orig, const xmlChar *replace) {
1523 if ((orig != NULL) && (cur->type == typ) &&
1524 (xmlStrEqual(orig, cur->name))) {
1545 catal->children = xmlNewCatalogEntry(typ, orig, replace,
1548 cur->next = xmlNewCatalogEntry(typ, orig, replace,
2944 * @orig: the system, public or prefix to match
2954 const xmlChar * orig, const xmlChar * replace)
2962 res = xmlAddXMLCatalog(catal->xml, type, orig, replace);
2970 entry = xmlNewCatalogEntry(cattype, orig, replac
1493 xmlAddXMLCatalog(xmlCatalogEntryPtr catal, const xmlChar *type, const xmlChar *orig, const xmlChar *replace) argument
2953 xmlACatalogAdd(xmlCatalogPtr catal, const xmlChar * type, const xmlChar * orig, const xmlChar * replace) argument
3407 xmlCatalogAdd(const xmlChar *type, const xmlChar *orig, const xmlChar *replace) argument
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dcatalog.c1488 * @orig: the system, public or prefix to match (or NULL)
1498 const xmlChar *orig, const xmlChar *replace) {
1527 if ((orig != NULL) && (cur->type == typ) &&
1528 (xmlStrEqual(orig, cur->name))) {
1549 catal->children = xmlNewCatalogEntry(typ, orig, replace,
1552 cur->next = xmlNewCatalogEntry(typ, orig, replace,
2948 * @orig: the system, public or prefix to match
2958 const xmlChar * orig, const xmlChar * replace)
2966 res = xmlAddXMLCatalog(catal->xml, type, orig, replace);
2974 entry = xmlNewCatalogEntry(cattype, orig, replac
1497 xmlAddXMLCatalog(xmlCatalogEntryPtr catal, const xmlChar *type, const xmlChar *orig, const xmlChar *replace) argument
2957 xmlACatalogAdd(xmlCatalogPtr catal, const xmlChar * type, const xmlChar * orig, const xmlChar * replace) argument
3411 xmlCatalogAdd(const xmlChar *type, const xmlChar *orig, const xmlChar *replace) argument
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Dtranslucent.c768 Filter *orig; member in struct:trans_ctx
818 rc = test_filter( op, re, tc->orig );
914 rc = test_filter( op, rs->sr_entry, tc->orig );
933 rc = test_filter( op, rs->sr_entry, tc->orig );
1091 tc.orig = op->ors_filter;
1126 op->ors_filter = tc.orig;
/macosx-10.10/BerkeleyDB-21/db/btree/
H A Dbtree.src126 * orig: the original data.
137 DBT orig DBT s
/macosx-10.10/libiconv-42/libiconv/libcharset/djgpp/
H A Dconfig.bat146 redir -e /dev/null update %XSRC%/configure.orig ./configure
153 test -f ./configure.orig
154 if errorlevel 1 update ./configure ./configure.orig
155 sed -f %XSRC%/djgpp/config.sed ./configure.orig > configure
/macosx-10.10/man-16/man/src/
H A DMakefile.in108 if [ -f $(MANCONFIG) ]; then mv $(MANCONFIG) $(MANCONFIG).orig; fi
/macosx-10.10/ruby-106/ruby/lib/
H A Dset.rb97 def initialize_copy(orig)
98 @hash = orig.instance_variable_get(:@hash).dup
/macosx-10.10/ruby-106/ruby/misc/
H A Druby-mode.el918 (let (start pos done down (orig (point)))
948 (if (< orig eol) (setq eol orig))
949 (setq orig (point))
1171 (let ((orig (point)) (end (progn (ruby-forward-sexp) (point))))
1179 (goto-char orig)
1193 (let ((orig (point)) (end (progn (ruby-forward-sexp) (point))))
1198 (goto-char orig)
/macosx-10.10/ruby-106/ruby/test/erb/
H A Dtest_erb.rb74 orig = $VERBOSE
79 $VERBOSE = orig

Completed in 434 milliseconds

1234567891011>>