Searched defs:partition (Results 1 - 25 of 74) sorted by relevance

123

/external/chromium_org/chrome/browser/extensions/
H A Ddata_deleter.cc34 // |partition|.
36 StoragePartition* partition,
41 DCHECK(partition);
53 partition->ClearDataForOrigin(
62 partition->ClearDataForOrigin(
66 partition->GetURLRequestContext(),
99 StoragePartition* partition = BrowserContext::GetStoragePartitionForSite( local
107 partition,
111 DeleteOrigin(profile, partition, extension->url(), callback);
35 DeleteOrigin(Profile* profile, StoragePartition* partition, const GURL& origin, const base::Closure& callback) argument
/external/chromium_org/content/browser/
H A Dpush_messaging_router.cc25 StoragePartition* partition = local
29 partition->GetServiceWorkerContext());
H A Dstorage_partition_impl_map.h50 // partition.
63 // Each StoragePartition is uniquely identified by which partition domain
65 // partition name and the bit indicating whether it should be persisted on
80 const std::string& partition,
83 partition_name(partition),
114 // This must always be called *after* |partition| has been added to the
120 void PostCreateInitialization(StoragePartitionImpl* partition,
79 StoragePartitionConfig(const std::string& domain, const std::string& partition, const bool& in_memory_only) argument
H A Dsite_instance_impl.cc104 StoragePartitionImpl* partition = local
108 partition,
H A Dstorage_partition_impl_map.cc93 // where renderers with a non-default storage partition keep their persistent
99 // for the "default" extension storage partition and one directory for each
100 // persistent partition used by a webview tag. Example:
103 // Storage/ext/ABCDEF/hash(partition name)
117 // Because partition names are user specified, they can be arbitrarily long
122 // 1 million partition domains.
125 // We assume that all partition names within one partition domain are
140 // An average partition domain is likely to have less than 10 unique
141 // partition name
391 StoragePartitionImpl* partition = local
555 PostCreateInitialization( StoragePartitionImpl* partition, bool in_memory) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DQuickSorter.java47 int i = partition(a, left, right, comparator);
52 // partition a[left] to a[right], assumes left < right
53 private int partition(Type[] a, int left, int right, Comparator<Type> comparator) { method in class:QuickSorter
71 Type swap = a[i]; // swap with partition element
/external/chromium_org/extensions/browser/guest_view/web_view/
H A Dweb_view_renderer_state.h36 // Looks up the partition info for the embedder <webview> for a given guest
54 WebViewPartitionInfo(int count, std::string partition): argument
56 partition_id(partition) {}
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Dremovable_storage_provider_linux.cc68 const char* partition = udev_device_get_sysattr_value(dev, "partition"); local
69 if (partition && get_int_attr(partition)){
70 // This is a partition of a device, not the device itself
/external/chromium_org/chrome/browser/extensions/signin/
H A Dgaia_auth_extension_loader.cc66 content::StoragePartition* partition = local
69 if (partition) {
70 partition->ClearData(
/external/chromium_org/content/browser/shared_worker/
H A Dworker_storage_partition.cc77 const WorkerStoragePartition& partition)
78 : url_request_context_(partition.url_request_context()),
79 media_url_request_context_(partition.media_url_request_context()),
80 appcache_service_(partition.appcache_service()),
81 quota_manager_(partition.quota_manager()),
82 filesystem_context_(partition.filesystem_context()),
83 database_tracker_(partition.database_tracker()),
84 indexed_db_context_(partition.indexed_db_context()),
85 service_worker_context_(partition.service_worker_context()) {
76 WorkerStoragePartitionId( const WorkerStoragePartition& partition) argument
H A Dshared_worker_message_filter.cc24 const WorkerStoragePartition& partition,
30 partition_(partition),
21 SharedWorkerMessageFilter( int render_process_id, ResourceContext* resource_context, const WorkerStoragePartition& partition, MessagePortMessageFilter* message_port_message_filter) argument
/external/chromium_org/extensions/common/manifest_handlers/
H A Dwebview_info.cc31 // A PartitionItem represents a set of accessible resources given a partition
56 // A pattern string that matches partition IDs.
120 // The partition list must have at least one entry.
127 const base::DictionaryValue* partition = NULL; local
128 if (!partition_list->GetDictionary(i, &partition)) {
135 if (!partition->GetString(keys::kWebviewName, &partition_pattern)) {
142 if (!partition->GetList(keys::kWebviewAccessibleResources,
/external/kernel-headers/original/uapi/linux/
H A Dfsl_hypervisor.h46 * struct fsl_hv_ioctl_restart - restart a partition
48 * @partition: the ID of the partition to restart, or -1 for the
49 * calling partition
55 __u32 partition; member in struct:fsl_hv_ioctl_restart
59 * struct fsl_hv_ioctl_status - get a partition's status
61 * @partition: the ID of the partition to query, or -1 for the
62 * calling partition
63 * @status: The returned status of the partition
75 __u32 partition; member in struct:fsl_hv_ioctl_status
90 __u32 partition; member in struct:fsl_hv_ioctl_start
105 __u32 partition; member in struct:fsl_hv_ioctl_stop
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_internals_ui.cc63 StoragePartition* partition) {
64 scoped_refptr<IndexedDBContext> context = partition->GetIndexedDBContext();
70 partition->GetPath()));
62 AddContextFromStoragePartition( StoragePartition* partition) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_entropymode.h60 unsigned int partition[PARTITION_CONTEXTS][PARTITION_TYPES]; member in struct:__anon13110
/external/chromium_org/third_party/markupsafe/
H A D__init__.py184 if hasattr(text_type, 'partition'):
185 def partition(self, sep): function in function:Markup.make_wrapper
187 text_type.partition(self, self.escape(sep))))
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dcmake.py670 def partition(l, p): function in function:WriteTarget
672 compilable_srcs, other_srcs = partition(srcs, Compilable)
/external/guava/guava/src/com/google/common/collect/
H A DOrdering.java460 int pivotNewIndex = partition(values, left, right, pivotIndex);
468 private <E extends T> int partition( method in class:Ordering
H A DIterables.java516 * {@code [a, b, c, d, e]} with a partition size of 3 yields {@code
525 * Lists#partition(List, int)} instead.
528 * @param size the desired size of each partition (the last may be smaller)
533 public static <T> Iterable<List<T>> partition( method in class:Iterables
540 return Iterators.partition(iterable.iterator(), size);
548 * an iterable containing {@code [a, b, c, d, e]} with a partition size of 3
556 * @param size the desired size of each partition
H A DLists.java468 * partitioning a list containing {@code [a, b, c, d, e]} with a partition
483 public static <T> List<List<T>> partition(List<T> list, int size) { method in class:Lists
/external/libvpx/libvpx/vp9/common/
H A Dvp9_entropymode.h60 unsigned int partition[PARTITION_CONTEXTS][PARTITION_TYPES]; member in struct:__anon24902
/external/openfst/src/include/fst/
H A Dpartition.h0 // partition.h
18 // \file Functions and classes to create a partition of states
66 // Create an empty partition for num_states. At initialization time
105 // partition. Once elements have been added to a class, you need to
199 // partition, create new once and update the queue of active classes
255 // iterate over members of a class in a partition
260 PartitionIterator(const Partition<T>& partition, T class_id) argument
261 : p_(partition),
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dpartition.h0 // partition.h
16 // \file Functions and classes to create a partition of states
61 // Create an empty partition for num_states. At initialization time
100 // partition. Once elements have been added to a class, you need to
194 // partition, create new once and update the queue of active classes
250 // iterate over members of a class in a partition
255 PartitionIterator(const Partition<T>& partition, T class_id) argument
256 : p_(partition),
/external/chromium_org/chrome/browser/ui/webui/signin/
H A Dinline_login_handler_impl.cc373 content::StoragePartition* partition = local
383 new InlineSigninHelper(GetWeakPtr(), partition->GetURLRequestContext(),
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_internals_ui.cc488 StoragePartition* partition) {
492 partition->GetServiceWorkerContext());
494 observers_.get(reinterpret_cast<uintptr_t>(partition))) {
501 observers_.set(reinterpret_cast<uintptr_t>(partition), new_observer.Pass());
516 : partition->GetPath()))));
520 StoragePartition* partition) {
522 observers_.take_and_erase(reinterpret_cast<uintptr_t>(partition)));
527 partition->GetServiceWorkerContext());
487 AddContextFromStoragePartition( StoragePartition* partition) argument
519 RemoveObserverFromStoragePartition( StoragePartition* partition) argument

Completed in 1322 milliseconds

123