Searched refs:storage (Results 26 - 50 of 406) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/examples/
H A Dremap.py19 db = metakit.storage()
H A Dderived.py11 db = metakit.storage()
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/storage/
H A Dstats.t16 $schema->storage->debugcb(sub { $cbworks = 1; });
17 $schema->storage->debug(0);
22 $schema->storage->debug(1);
28 $schema->storage->debugobj($prof);
60 $schema->storage->debug(0);
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/demos/
H A Dmyio.cpp3 // - A class derived from c4_Strategy to implement encrypted storage.
92 c4_Storage storage (efile);
110 //storage.Store("text", vText);
111 c4_View v2 = storage.GetAs("text[line:S]");
114 storage.Commit();
122 c4_Storage storage (efile);
123 c4_View vText = storage.View("text");
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DKernTable.cpp170 void KernTable::process(LEGlyphStorage& storage) argument
175 le_uint32 key = storage[0]; // no need to mask off high bits
178 for (int i = 1, e = storage.getGlyphCount(); i < e; ++i) {
179 key = key << 16 | (storage[i] & 0xffff);
212 storage[i-1], storage[i], i, value & 0xffff, font->xUnitsToPoints(value));
223 storage.adjustPosition(i, adjust, 0, success);
226 storage.adjustPosition(storage.getGlyphCount(), adjust, 0, success);
H A DKernTable.h46 void process(LEGlyphStorage& storage);
/macosx-10.9.5/CommonCrypto-60049/lib/
H A DccGlobals.h93 static struct cc_globals_s storage;
94 return &storage;
/macosx-10.9.5/IOBDStorageFamily-14/
H A DIOBDBlockStorageDevice.h33 #include <IOKit/storage/IOBDTypes.h>
52 #include <IOKit/storage/IODVDBlockStorageDevice.h>
61 * The IOBDBlockStorageDevice class is a generic BD block storage device
H A DIOBDMediaBSDClient.h30 #include <IOKit/storage/IOBDTypes.h>
48 * in /System/Library/Frameworks/Kernel.framework/Headers/IOKit/storage/
138 #include <IOKit/storage/IOBDMedia.h>
139 #include <IOKit/storage/IOMediaBSDClient.h>
/macosx-10.9.5/WebKit2-7537.78.2/Shared/mac/
H A DCookieStorageShim.cpp61 DEFINE_STATIC_LOCAL(CookieStorageShim, storage, ());
62 return storage;
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/Storage/DBI/
H A DCursor.pm42 my ($class, $storage, $args, $attrs) = @_;
46 storage => $storage,
50 _dbh_gen => $storage->{_dbh_gen},
72 my ($storage, $dbh, $self) = @_;
86 $self->sth(($storage->_select(@{$self->{args}}))[1]);
105 $self->{storage}->dbh_do($self->can('_dbh_next'), $self);
124 my ($storage, $dbh, $self) = @_;
129 my ($rv, $sth) = $storage->_select(@{$self->{args}});
140 $self->{storage}
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSArray.cpp55 ArrayStorage* storage = butterfly->arrayStorage(); local
56 storage->setLength(initialLength);
57 storage->setVectorLength(0);
58 storage->m_indexBias = 0;
59 storage->m_sparseMap.clear();
60 storage->m_numValuesInVector = 0;
249 ArrayStorage* storage = ensureArrayStorage(vm); local
250 Butterfly* butterfly = storage->butterfly();
255 ASSERT(!addToFront || count > storage->m_indexBias);
264 unsigned length = storage
338 setLengthWithArrayStorage(ExecState* exec, unsigned newLength, bool throwException, ArrayStorage* storage) argument
499 ArrayStorage* storage = m_butterfly->arrayStorage(); local
651 ArrayStorage* storage = m_butterfly->arrayStorage(); local
681 shiftCountWithArrayStorage(unsigned startIndex, unsigned count, ArrayStorage* storage) argument
831 unshiftCountWithArrayStorage(ExecState* exec, unsigned startIndex, unsigned count, ArrayStorage* storage) argument
1237 ArrayStorage* storage = m_butterfly->arrayStorage(); local
1506 ArrayStorage* storage = m_butterfly->arrayStorage(); local
1569 ArrayStorage* storage = m_butterfly->arrayStorage(); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DresourcesPanel.css71 .resources.panel .base-storage-tree-element-title {
79 li.selected .base-storage-tree-element-subtitle {
83 .base-storage-tree-element-subtitle {
102 .storage-view {
112 .storage-view.visible {
116 .storage-view {
120 .storage-view .data-grid:not(.inline) {
125 .storage-view .storage-table-error {
129 .storage
[all...]
H A DSnippetStorage.js131 * @param {WebInspector.SnippetStorage} storage
136 WebInspector.Snippet = function(storage, id, name, content)
138 this._storage = storage;
140 this._name = name || storage.namePrefix + id;
145 * @param {WebInspector.SnippetStorage} storage
149 WebInspector.Snippet.fromObject = function(storage, serializedSnippet)
151 return new WebInspector.Snippet(storage, serializedSnippet.id, serializedSnippet.name, serializedSnippet.content);
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader/lib/DBIx/Class/Schema/Loader/
H A DDBI.pm22 DBI-based storage backends, and implements the common functionality between them.
39 my $dbh = $self->schema->storage->dbh;
64 my $dbh = $self->schema->storage->dbh;
66 || $self->schema->storage->sql_maker->quote_char
72 my $dbh = $self->schema->storage->dbh;
74 || $self->schema->storage->sql_maker->name_sep
90 my $dbh = $self->schema->storage->dbh;
146 local $self->schema->storage->dbh->{RaiseError} = 1;
147 local $self->schema->storage->dbh->{PrintError} = 0;
167 my $dbh = $self->schema->storage
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/Loader/
H A DDBI.pm22 DBI-based storage backends, and implements the common functionality between them.
39 my $dbh = $self->schema->storage->dbh;
64 my $dbh = $self->schema->storage->dbh;
66 || $self->schema->storage->sql_maker->quote_char
72 my $dbh = $self->schema->storage->dbh;
74 || $self->schema->storage->sql_maker->name_sep
90 my $dbh = $self->schema->storage->dbh;
146 local $self->schema->storage->dbh->{RaiseError} = 1;
147 local $self->schema->storage->dbh->{PrintError} = 0;
167 my $dbh = $self->schema->storage
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/Storage/
H A DTxnScopeGuard.pm8 my ($class, $storage) = @_;
10 $storage->txn_begin;
11 bless [ 0, $storage ], ref $class || $class;
22 my ($dismiss, $storage) = @{$_[0]};
34 eval { $storage->txn_rollback };
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader/lib/DBIx/Class/Schema/Loader/DBI/Sybase/
H A DCommon.pm29 $self->schema->storage->sql_maker->quote_char([qw/[ ]/])
30 unless $self->schema->storage->sql_maker->quote_char;
32 $self->schema->storage->sql_maker->name_sep('.')
33 unless $self->schema->storage->sql_maker->name_sep;
38 my $dbh = $self->schema->storage->dbh;
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/Loader/DBI/Sybase/
H A DCommon.pm29 $self->schema->storage->sql_maker->quote_char([qw/[ ]/])
30 unless $self->schema->storage->sql_maker->quote_char;
32 $self->schema->storage->sql_maker->name_sep('.')
33 unless $self->schema->storage->sql_maker->name_sep;
38 my $dbh = $self->schema->storage->dbh;
/macosx-10.9.5/libxml2-26/libxml2/
H A Dtimsort.h285 if (store->storage != NULL)\
287 free(store->storage);\
288 store->storage = NULL;\
315 SORT_TYPE *storage; member in struct:__anon9840
323 SORT_TYPE *tempstore = (SORT_TYPE *)realloc(store->storage, new_size * sizeof(SORT_TYPE));
326 fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", sizeof(SORT_TYPE) * new_size);
329 store->storage = tempstore;
339 SORT_TYPE *storage; local
343 storage = store->storage;
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/tests/
H A Dtstore3.cpp1 // tstore3.cpp -- Regression test program, storage tests, part 3
8 B(s20, View outlives storage, 0)W(s20a);
33 c4_Storage storage("s21a", 1);
34 storage.SetStructure("a[p1:S,p2:S]");
49 //v1 = storage.Store("a", v1);
50 v1 = storage.View("a") = v1;
58 storage.Commit();
70 storage.Commit();
74 storage.Commit();
78 v1 = storage
[all...]
/macosx-10.9.5/expat-12/expat/tests/
H A Druntests.c215 CharData *storage = (CharData *)userData; local
216 if (storage->count < 0 && atts != NULL && atts[0] != NULL) {
218 CharData_AppendXMLChars(storage, atts[1], -1);
227 CharData storage; local
229 CharData_Init(&storage);
230 XML_SetUserData(parser, &storage);
234 CharData_CheckXMLChars(&storage, expected);
244 CharData storage; local
246 CharData_Init(&storage);
247 XML_SetUserData(parser, &storage);
448 CharData *storage = (CharData *) userData; local
462 CharData *storage = (CharData *) userData; local
496 CharData storage; local
593 CharData *storage = (CharData *) userData; local
602 CharData storage; local
1139 CharData *storage = (CharData *) userData; local
1153 CharData *storage = (CharData *) userData; local
1162 CharData storage; local
[all...]
/macosx-10.9.5/IOCDStorageFamily-51/
H A DIOCDMediaBSDClient.h29 #include <IOKit/storage/IOCDTypes.h>
48 * in /System/Library/Frameworks/Kernel.framework/Headers/IOKit/storage/
155 #include <IOKit/storage/IOCDMedia.h>
156 #include <IOKit/storage/IOMediaBSDClient.h>
H A DIOCDPartitionScheme.h33 #include <IOKit/storage/IOCDTypes.h>
65 #include <IOKit/storage/IOCDMedia.h>
66 #include <IOKit/storage/IOPartitionScheme.h>
165 * Read data from the storage object at the specified byte offset into the
182 * Write data into the storage object at the specified byte offset from the
/macosx-10.9.5/IODVDStorageFamily-35/
H A DIODVDBlockStorageDriver.h37 #include <IOKit/storage/IOCDBlockStorageDriver.h>
38 #include <IOKit/storage/IODVDBlockStorageDevice.h>
39 #include <IOKit/storage/IODVDTypes.h>
61 * mechanism (e.g. SCSI, ATA, USB, FireWire). All storage operations

Completed in 604 milliseconds

1234567891011>>