HomeSort by relevance Sort by last modified time
    Searched refs:Partition (Results 1 - 24 of 24) sorted by null

  /external/openfst/src/include/fst/
partition.h 0 // partition.h
18 // \file Functions and classes to create a partition of states
37 // \class Partition
42 class Partition {
55 Partition() {}
57 Partition(T num_states) {
61 ~Partition() {
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 classe
    [all...]
minimize.h 40 #include <fst/partition.h>
49 // comparator for creating partition based on sorting on
66 const Partition<typename A::StateId>& partition,
68 : fst_(fst), partition_(partition), flags_(flags) {}
107 const Partition<typename A::StateId>& partition_;
146 const Partition<StateId>& partition() const { function in class:fst::CyclicMinimizer
155 ArcIterCompare(const Partition<StateId>& partition)
323 const Partition<StateId>& partition() { function in class:fst::AcyclicMinimizer
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
partition.h 0 // partition.h
16 // \file Functions and classes to create a partition of states
32 // \class Partition
37 class Partition {
50 Partition() {}
52 Partition(T num_states) {
56 ~Partition() {
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 classe
    [all...]
minimize.h 33 #include "fst/lib/partition.h"
40 // comparator for creating partition based on sorting on
59 const Partition<typename A::StateId>& partition,
61 : fst_(fst), partition_(partition), flags_(flags) {}
100 const Partition<typename A::StateId>& partition_;
133 const Partition<StateId>& partition() const { function in class:fst::CyclicMinimizer
142 ArcIterCompare(const Partition<StateId>& partition)
310 const Partition<StateId>& partition() { function in class:fst::AcyclicMinimizer
    [all...]
  /frameworks/ex/common/java/com/android/common/widget/
CompositeCursorAdapter.java 32 public static class Partition {
40 public Partition(boolean showIfEmpty, boolean hasHeader) {
58 private Partition[] mPartitions;
71 mPartitions = new Partition[INITIAL_CAPACITY];
79 * Registers a partition. The cursor for that partition can be set later.
84 addPartition(new Partition(showIfEmpty, hasHeader));
87 public void addPartition(Partition partition) {
90 Partition[] newAdapters = new Partition[newCapacity]
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DirectoryPartition.java 25 public final class DirectoryPartition extends CompositeCursorAdapter.Partition {
ContactEntryListAdapter.java 132 DirectoryPartition partition = new DirectoryPartition(true, true); local
133 partition.setDirectoryId(Directory.DEFAULT);
134 partition.setDirectoryType(getContext().getString(R.string.contactsList));
135 partition.setPriorityDirectory(true);
136 partition.setPhotoSupported(true);
137 return partition;
152 final Partition partition = getPartition(i); local
153 if ((partition instanceof DirectoryPartition)
154 && ((DirectoryPartition) partition).getDirectoryId() == Directory.DEFAULT)
165 Partition partition = getPartition(i); local
185 Partition partition = getPartition(i); local
203 Partition partition = getPartition(i); local
364 DirectoryPartition partition = new DirectoryPartition(false, true); local
378 Partition partition = getPartition(i); local
398 Partition partition = getPartition(partitionIndex); local
477 Partition partition = getPartition(i); local
503 Partition partition = getPartition(i); local
525 Partition partition = getPartition(partitionIndex); local
570 int partition = getPartitionForPosition(position); local
601 Partition partition = getPartition(partitionIndex); local
    [all...]
ContactEntryListFragment.java 47 import com.android.common.widget.CompositeCursorAdapter.Partition;
296 Partition partition = mAdapter.getPartition(i); local
297 if (partition instanceof DirectoryPartition) {
298 DirectoryPartition directoryPartition = (DirectoryPartition)partition;
336 DirectoryPartition partition = (DirectoryPartition)mAdapter.getPartition(partitionIndex); local
337 partition.setStatus(DirectoryPartition.STATUS_LOADING);
338 long directoryId = partition.getDirectoryId();
341 loadDirectoryPartition(partitionIndex, partition);
343 loadDirectoryPartitionDelayed(partitionIndex, partition);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_qsort.c 222 #define Partition(swapper,sz) { \
340 /* Partition. */
341 Partition(SWAP_nonaligned,size);
371 /* Partition. */
372 Partition(SWAP_aligned,size);
409 /* Partition. */
410 Partition(SWAP_words,WORD_BYTES);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactBrowseListFragment.java 37 import com.android.common.widget.CompositeCursorAdapter.Partition;
439 Partition partition = adapter.getPartition(i); local
440 if (partition instanceof DirectoryPartition) {
441 DirectoryPartition directory = (DirectoryPartition) partition;
  /external/guava/guava/src/com/google/common/collect/
Lists.java 468 * 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) {
488 : new Partition<T>(list, size);
491 private static class Partition<T> extends AbstractList<List<T>> {
495 Partition(List<T> list, int size) {
522 private static class RandomAccessPartition<T> extends Partition<T>
  /build/tools/releasetools/
common.py 175 class Partition(object):
193 p = Partition()
234 p = Partition()
947 # map recovery.fstab's fs_types to mount/format "partition types"
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 113 /// \brief A partition of an alloca.
115 /// This structure represents a contiguous partition of the alloca. These are
119 struct Partition : public ByteRange {
120 /// \brief Whether this partition is splittable into smaller partitions.
126 /// \brief Test whether a partition has been marked as dead.
135 /// \brief Kill a partition.
143 Partition() : ByteRange(), IsSplittable() {}
144 Partition(uint64_t BeginOffset, uint64_t EndOffset, bool IsSplittable)
148 /// \brief A particular use of a partition of the alloca.
150 /// This structure is used to associate uses of a partition with it. The
    [all...]
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 94 * Model object for a {@link Directory} row. There is a partition in the
98 public final static class DirectoryPartition extends CompositeCursorAdapter.Partition {
309 DirectoryPartition partition = (DirectoryPartition)getPartition(partitionIndex); local
310 return partition.loading ? 1 : 0;
316 DirectoryPartition partition = (DirectoryPartition)getPartition(partitionIndex); local
317 if (partition.loading) {
325 protected void bindView(View v, int partition, Cursor cursor, int position) {
326 DirectoryPartition directoryPartition = (DirectoryPartition)getPartition(partition);
381 DirectoryPartition partition = new DirectoryPartition(); local
382 partition.directoryId = id
443 DirectoryPartition partition = (DirectoryPartition) getPartition(i); local
463 DirectoryPartition partition = (DirectoryPartition) getPartition(i); local
484 DirectoryPartition partition = (DirectoryPartition) getPartition(partitionIndex); local
503 DirectoryPartition partition = (DirectoryPartition) getPartition(partitionIndex); local
    [all...]
  /libcore/benchmarks/libs/
caliper.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar 

Completed in 720 milliseconds