Searched refs:meta (Results 1 - 25 of 361) sorted by relevance

1234567891011>>

/macosx-10.9.5/bash-92/bash-3.2/examples/scripts.noah/
H A Dmeta.bash0 # meta.bash --- meta key frobnications
10 #:docstring meta:
11 # Usage: meta [on|off]
14 # a terminal as a "meta" bit, i.e bash will be able to use a real meta
21 function meta () function
24 on) bind 'set input-meta On'
25 bind 'set output-meta on'
26 bind 'set convert-meta of
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/t/lib/
H A DTestRoleForMap.pm5 requires qw/id dat meta/; # in loader_test2
/macosx-10.9.5/llvmCore-3425.0.33/bindings/ocaml/llvm/
H A DMakefile21 all-local:: copy-meta
22 install-local:: install-meta
23 uninstall-local:: uninstall-meta
28 copy-meta: $(OcamlDir)/META.llvm
33 install-meta:: $(OcamlDir)/META.llvm
38 uninstall-meta::
42 .PHONY: copy-meta install-meta uninstall-meta
/macosx-10.9.5/ruby-104/ruby/lib/webrick/
H A Dhttps.rb66 meta = orig_meta_vars
68 meta["HTTPS"] = "on"
69 meta["SSL_SERVER_CERT"] = @server_cert.to_pem
70 meta["SSL_CLIENT_CERT"] = @client_cert ? @client_cert.to_pem : ""
73 meta["SSL_CLIENT_CERT_CHAIN_#{i}"] = cert.to_pem
76 meta["SSL_CIPHER"] = @cipher[0]
77 meta["SSL_PROTOCOL"] = @cipher[1]
78 meta["SSL_CIPHER_USEKEYSIZE"] = @cipher[2].to_s
79 meta["SSL_CIPHER_ALGKEYSIZE"] = @cipher[3].to_s
81 meta
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/qam/
H A Dqam_rec.c58 QMETA *meta; local
64 COMPQUIET(meta, NULL);
77 0, &meta)) != 0) {
80 DB_MPOOL_CREATE, &meta)) != 0) {
84 meta->dbmeta.pgno = metapg;
85 meta->dbmeta.type = P_QAMMETA;
99 if (QAM_BEFORE_FIRST(meta, argp->recno)) {
100 REC_DIRTY(mpf, ip, dbc->priority, &meta);
101 meta->first_recno = argp->recno;
107 LOG_COMPARE(&LSN(meta),
185 QMETA *meta; local
323 QMETA *meta; local
433 QMETA *meta; local
549 QMETA *meta; local
[all...]
H A Dqam_open.c72 * In STD_LOCKING mode, we'll synchronize using the meta page
81 * Get the meta data page. It must exist, because creates of
118 /* Don't hold the meta page long term. */
229 * Initialize the meta-data for a Queue database.
232 __qam_init_meta(dbp, meta)
234 QMETA *meta;
242 memset(meta, 0, sizeof(QMETA));
243 LSN_NOT_LOGGED(meta->dbmeta.lsn);
244 meta->dbmeta.pgno = PGNO_BASE_MD;
245 meta
296 QMETA *meta; local
[all...]
H A Dqam_stat.c37 QMETA *meta; local
65 dbc->thread_info, dbc->txn, 0, &meta)) != 0)
69 sp->qs_nkeys = meta->dbmeta.key_count;
70 sp->qs_ndata = meta->dbmeta.record_count;
74 first = QAM_RECNO_PAGE(dbp, meta->first_recno);
75 last = QAM_RECNO_PAGE(dbp, meta->cur_recno);
77 ret = __memp_fput(mpf, dbc->thread_info, meta, dbc->priority);
143 /* Get the meta-data page. */
149 F_ISSET(dbp, DB_AM_RDONLY) ? 0 : DB_MPOOL_DIRTY, &meta)) != 0)
153 meta
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/btree/
H A Dbt_open.c276 BTMETA *meta; local
285 meta = NULL;
299 if ((ret = __memp_fget(mpf, &base_pgno, ip, dbc->txn, 0, &meta)) != 0)
310 if (meta->dbmeta.magic == DB_BTREEMAGIC) {
311 t->bt_minkey = meta->minkey;
312 t->re_pad = (int)meta->re_pad;
313 t->re_len = meta->re_len;
316 t->bt_root = meta->root;
317 if (PGNO(meta) == PGNO_BASE_MD && !F_ISSET(dbp, DB_AM_RECOVER))
318 __memp_set_last_pgno(mpf, meta
424 BTMETA *meta; local
545 BTMETA *meta; local
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/dbinc/
H A Dqam.h55 db_pgno_t q_meta; /* Database meta-data page. */
125 #define QAM_AFTER_CURRENT(meta, recno) \
126 ((recno) >= (meta)->cur_recno && \
127 ((meta)->first_recno <= (meta)->cur_recno || \
128 ((recno) < (meta)->first_recno && \
129 (recno) - (meta)->cur_recno < (meta)->first_recno - (recno))))
131 #define QAM_BEFORE_FIRST(meta, recno) \
132 ((recno) < (meta)
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/hash/
H A Dhash_open.c85 * In STD_LOCKING mode, we'll synchronize using the meta page
118 "%s: Invalid hash meta page %lu", name, (u_long)base_pgno);
122 /* Release the meta data page */
236 * Initialize a hash meta-data page. We assume that the meta-data page is
242 __ham_init_meta(dbp, meta, pgno, lsnp)
244 HMETA *meta;
266 memset(meta, 0, sizeof(HMETA));
267 meta->dbmeta.lsn = *lsnp;
268 meta
343 HMETA *meta; local
457 HMETA *meta; local
[all...]
/macosx-10.9.5/CPANInternal-140/Class-DBI/lib/Class/DBI/Relationship/
H A DMightHave.pm43 my $meta = $class->meta_info(might_have => $method);
45 ($meta->foreign_class, @{ $meta->args->{import} });
55 my $meta = $class->meta_info(might_have => $method);
57 ($meta->foreign_class, @{ $meta->args->{import} });
H A DHasMany.pm28 my $meta = $f_class->meta_info('has_a');
29 my ($col) = grep $meta->{$_}->foreign_class eq $class, keys %$meta;
85 my $meta = $class->meta_info(has_many => $accessor);
87 ($meta->foreign_class, $meta->args->{foreign_key}, $meta->args);
111 my $meta = $class->meta_info(has_many => $accessor);
113 ($meta->foreign_class, $meta
[all...]
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/lib/Class/DBI/Relationship/
H A DMightHave.pm44 my $meta = $class->meta_info($rel->name => $method);
46 ($meta->foreign_class, @{ $meta->args->{import} });
60 my $meta = $class->meta_info($rel->name => $method);
62 ($meta->foreign_class, @{ $meta->args->{import} });
H A DHasMany.pm34 my $meta = $f_class->meta_info('has_a');
35 my ($col) = grep $meta->{$_}->foreign_class eq $class, keys %$meta;
97 my $meta = $class->meta_info($rel->name => $accessor);
99 ($meta->foreign_class, $meta->args->{foreign_key}, $meta->args);
135 my $meta = $class->meta_info($rel->name => $accessor);
137 ($meta->foreign_class, $meta
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/emulation/
H A Dcrisp.el39 ;; meta-f1 to the scroll-all mode toggle. The scroll-all package
45 ;; the value of `crisp-override-meta-x' either in your .emacs or
93 (defcustom crisp-override-meta-x t
171 (define-key crisp-mode-map [(meta f5)] 'search-backward-regexp)
176 (define-key crisp-mode-map [(meta f7)] 'end-kbd-macro)
179 (define-key crisp-mode-map [(meta f8)] 'save-kbd-macro)
182 (define-key crisp-mode-map [(meta f9)] 'load-library)
185 (define-key crisp-mode-map [(meta f10)] 'compile)
198 (define-key crisp-mode-map [(meta d)] (lambda ()
201 (define-key crisp-mode-map [(meta
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/tests/publicapi/
H A Dtst_publicapi.cpp156 static void gatherAPI(const QString& prefix, const QMetaObject* meta, QStringList* output) argument
159 for (int i = meta->enumeratorOffset(); i < meta->enumeratorCount(); ++i)
160 gatherAPI(prefix, meta->enumerator(i), output);
161 for (int i = meta->propertyOffset(); i < meta->propertyCount(); ++i)
162 gatherAPI(prefix, meta->property(i), output);
163 for (int i = meta->methodOffset(); i < meta->methodCount(); ++i)
164 gatherAPI(prefix, meta
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/db/
H A Ddb_meta.c64 * a meta-data page (used instead of P_INIT). We need to make sure that we
74 DBMETA *meta; local
77 meta = (DBMETA *)p;
78 save_lsn = meta->lsn;
79 memset(meta, 0, sizeof(DBMETA));
80 meta->lsn = save_lsn;
81 meta->pagesize = dbp->pgsize;
83 FLD_SET(meta->metaflags, DBMETA_CHKSUM);
84 meta->pgno = pgno;
85 meta
101 DBMETA *meta; local
262 DBMETA *meta; local
700 DBMETA *meta; local
[all...]
H A Ddb_rec.c390 DBMETA *meta; local
397 meta = NULL;
410 if ((ret = __memp_fget(mpf, &pgno, ip, NULL, 0, &meta)) != 0) {
418 cmp_n = LOG_COMPARE(lsnp, &LSN(meta));
419 cmp_p = LOG_COMPARE(&LSN(meta), &argp->meta_lsn);
420 CHECK_LSN(env, op, cmp_p, &LSN(meta), &argp->meta_lsn);
423 REC_DIRTY(mpf, ip, file_dbp->priority, &meta);
424 LSN(meta) = *lsnp;
425 meta->free = argp->next;
426 if (argp->pgno > meta
598 DBMETA *meta; local
996 DBMETA *meta; local
1150 DBMETA *meta; local
1315 DBMETA *meta; local
[all...]
/macosx-10.9.5/CPANInternal-140/Class-Data-Accessor-0.04004/inc/Module/Install/
H A DWriteAll.pm17 meta => 1,
25 $self->Meta->write if $args{meta};
/macosx-10.9.5/CPANInternal-140/Class-Unload/inc/Module/Install/
H A DWriteAll.pm17 meta => 1,
25 $self->Meta->write if $args{meta};
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/inc/Module/Install/
H A DWriteAll.pm17 meta => 1,
25 $self->Meta->write if $args{meta};
/macosx-10.9.5/CPANInternal-140/Sub-Exporter/inc/Module/Install/
H A DWriteAll.pm17 meta => 1,
25 $self->Meta->write if $args{meta};
/macosx-10.9.5/vim-53/src/proto/
H A Ddigraph.pro4 int getdigraph __ARGS((int char1, int char2, int meta));
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dfunction.h10 PyObjCFunc_New(PyObject* name, void* func, const char* signature, PyObject* doc, PyObject* meta);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A Dfunction.h10 PyObjCFunc_New(PyObject* name, void* func, const char* signature, PyObject* doc, PyObject* meta);

Completed in 333 milliseconds

1234567891011>>