HomeSort by relevance Sort by last modified time
    Searched defs:partition (Results 51 - 75 of 276) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/Dialer/java/com/android/contacts/common/list/
IndexerListAdapter.java 60 public void setIndexedPartition(int partition) {
61 this.mIndexedPartition = partition;
81 /** @return relative position of the section in the indexed partition */
90 /** @param position relative position in the indexed partition */
136 int partition = getPartitionForPosition(position); local
137 if (partition == mIndexedPartition) {
154 // Compute the item position where the current partition begins
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
UserString.py 105 def partition(self, sep): member in class:UserString
106 return self.data.partition(sep)
  /external/guava/guava/src/com/google/common/collect/
Ordering.java 670 * the buffer gets full, find the median and partition around it, keeping
671 * only the lowest k elements. This requires n/k find-median-and-partition
702 // We apply the quickselect algorithm to partition about the median,
713 int pivotNewIndex = partition(buffer, left, right, pivotIndex);
740 private <E extends T> int partition( method in class:Ordering
    [all...]
  /external/python/cpython2/Lib/
UserString.py 105 def partition(self, sep): member in class:UserString
106 return self.data.partition(sep)
  /frameworks/native/cmds/lshal/
ListCommand.cpp 53 vintf::SchemaType toSchemaType(Partition p) {
54 return (p == Partition::SYSTEM) ? vintf::SchemaType::FRAMEWORK : vintf::SchemaType::DEVICE;
92 Partition ListCommand::getPartition(pid_t pid) {
97 Partition partition = android::procpartition::getPartition(pid); local
98 mPartitions.emplace(pid, partition);
99 return partition;
103 // process: Partition inferred from executable location or cmdline.
104 Partition ListCommand::resolvePartition(Partition process, const FQName& fqName) const
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
UserString.py 105 def partition(self, sep): member in class:UserString
106 return self.data.partition(sep)
  /prebuilts/gdb/linux-x86/lib/python2.7/
UserString.py 105 def partition(self, sep): member in class:UserString
106 return self.data.partition(sep)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 105 def partition(self, sep): member in class:UserString
106 return self.data.partition(sep)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 105 def partition(self, sep): member in class:UserString
106 return self.data.partition(sep)
  /system/update_engine/payload_consumer/
delta_performer_unittest.cc 199 // When generating a delta payload we need to include the old partition
210 // We include a kernel partition without operations.
229 // Apply |payload_data| on partition specified in |source_path|.
240 // file and writing the contents to a new partition. The existing data in the
249 EXPECT_TRUE(utils::MakeTempFile("Partition-XXXXXX", &new_part, nullptr));
254 // We installed the operations only in the rootfs partition, but the
697 PartitionUpdate* partition = manifest.add_partitions(); local
698 partition->mutable_old_partition_info();
699 partition->mutable_new_partition_info();
    [all...]
  /bionic/libc/kernel/uapi/linux/
switchtec_ioctl.h 110 __u32 partition; member in struct:switchtec_ioctl_pff_port
  /external/autotest/client/bin/
job.py 29 from autotest_lib.client.bin import partition as partition_lib
732 def partition(self, device, loop_size=0, mountpoint=None): member in class:base_client_job
734 Work with a machine partition
741 @return: A L{client.bin.partition.partition} object
746 return partition_lib.partition(self, device, loop_size, mountpoint)
750 """ Same as partition
752 @deprecated: Use partition method instead
754 return self.partition(device, loop_size, mountpoint)
766 # save the partition list and mount points, as well as the cpu coun
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureMipmapTests.cpp 500 bool partition = rnd.getFloat() > 0.4f; local
501 bool partitionX = partition && width > minWidth && rnd.getBool();
502 bool partitionY = partition && height > minHeight && !partitionX;
  /external/deqp/modules/gles3/accuracy/
es3aTextureMipmapTests.cpp 487 bool partition = rnd.getFloat() > 0.4f; local
488 bool partitionX = partition && width > minWidth && rnd.getBool();
489 bool partitionY = partition && height > minHeight && !partitionX;
  /external/kernel-headers/original/uapi/linux/
switchtec_ioctl.h 119 __u32 partition; member in struct:switchtec_ioctl_pff_port
  /external/mmc-utils/
mmc_cmds.c 595 printf("Enhanced GP4 Partition Size [GP_SIZE_MULT_4]: 0x%06x\n", regl);
605 printf("Enhanced GP3 Partition Size [GP_SIZE_MULT_3]: 0x%06x\n", regl);
615 printf("Enhanced GP2 Partition Size [GP_SIZE_MULT_2]: 0x%06x\n", regl);
625 printf("Enhanced GP1 Partition Size [GP_SIZE_MULT_1]: 0x%06x\n", regl);
656 "requested total partition size %lu KiB cannot exceed card capacity %lu KiB %s\n",
672 int partition, enh_attr, ext_attr; local
677 "<partition> <enh_attr> <ext_attr> </path/to/mmcblkX>\n", exit(1));
683 partition = strtol(argv[3], NULL, 10);
688 if (partition < 0 || partition > 4)
938 int partition; local
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.cc 1313 const uint8_t* partition = local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListAdapter.java 221 Context context, int partition, Cursor cursor, int position, ViewGroup parent) {
222 ContactListItemView view = super.newView(context, partition, cursor, position, parent);
299 DirectoryPartition partition = (DirectoryPartition) getPartition(i); local
300 if (partition.getDirectoryId() == mSelectedContactDirectoryId) {
351 DirectoryPartition partition = (DirectoryPartition) getPartition(i); local
352 if (partition.isLoading()) {
MultiSelectContactsListFragment.java 151 final int partition = getAdapter().getPartitionForPosition(position); local
152 if (contactId >= 0 && partition == ContactsContract.Directory.DEFAULT) {
ContactEntryListAdapter.java 119 Context context, int partition, Cursor cursor, int position, ViewGroup parent) {
127 protected void bindView(View itemView, int partition, Cursor cursor, int position) {
130 bindWorkProfileIcon(view, partition);
148 DirectoryPartition partition = new DirectoryPartition(true, true); local
149 partition.setDirectoryId(Directory.DEFAULT);
150 partition.setDirectoryType(getContext().getString(R.string.contactsList));
151 partition.setPriorityDirectory(true);
152 partition.setPhotoSupported(true);
153 partition.setLabel(mDefaultFilterHeaderText.toString());
154 return partition;
169 final Partition partition = getPartition(i); local
182 Partition partition = getPartition(i); local
195 Partition partition = getPartition(i); local
216 Partition partition = getPartition(i); local
234 Partition partition = getPartition(i); local
418 DirectoryPartition partition = new DirectoryPartition(false, true); local
445 Partition partition = getPartition(i); local
465 Partition partition = getPartition(partitionIndex); local
565 Partition partition = getPartition(i); local
591 Partition partition = getPartition(i); local
620 final Partition partition = getPartition(partitionId); local
631 Partition partition = getPartition(partitionIndex); local
678 Partition partition = getPartition(partitionIndex); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
algo.h 56 #include <parallel/partition.h>
1696 partition(_FIterator __begin, _FIterator __end, function in namespace:__parallel
1733 partition(_FIterator __begin, _FIterator __end, _Predicate __pred) function in namespace:__parallel
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
algo.h 56 #include <parallel/partition.h>
1696 partition(_FIterator __begin, _FIterator __end, function in namespace:__parallel
1733 partition(_FIterator __begin, _FIterator __end, _Predicate __pred) function in namespace:__parallel
    [all...]
  /system/vold/
VoldNativeService.cpp 285 binder::Status VoldNativeService::partition(const std::string& diskId, int32_t partitionType, function in class:android::vold::VoldNativeService
  /toolchain/binutils/binutils-2.27/bfd/
ppcboot.c 50 /* PPCbug partition table layout */
53 ppcboot_location_t partition_begin; /* partition begin */
54 ppcboot_location_t partition_end; /* partition end */
63 ppcboot_partition_t partition[4]; /* partition information */ member in struct:ppcboot_hdr
69 char partition_name[32]; /* partition name */
190 if (hdr.partition[0].partition_end.ind != PPC_IND)
416 fprintf (f, _("Partition name = \"%s\"\n"), tdata->header.partition_name);
420 long sector_begin = bfd_getl_signed_32 (tdata->header.partition[i].sector_begin);
421 long sector_length = bfd_getl_signed_32 (tdata->header.partition[i].sector_length)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
FastbootDeviceFlasher.java 181 * Handle flashing of userdata/cache partition
201 * Flash an individual partition of a device
205 * @param partition the name of the partition to be flashed
207 protected void flashPartition(ITestDevice device, File imgFile, String partition)
209 CLog.d("fastboot flash %s %s", partition, imgFile.getAbsolutePath());
211 device, buildFastbootCommand("flash", partition, imgFile.getAbsolutePath()));
215 * Wipe the specified partition with `fastboot erase &lt;name&gt;`
218 * @param partition the name of the partition to be wipe
481 String partition = "cache"; local
    [all...]

Completed in 495 milliseconds

1 23 4 5 6 7 8 91011>>