HomeSort by relevance Sort by last modified time
    Searched defs:splits (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/base/tools/split-select/
SplitSelector_test.cpp 29 static ::testing::AssertionResult addSplit(Vector<SplitDescription>& splits, const char* str) {
34 splits.add(split);
39 Vector<SplitDescription> splits; local
40 ASSERT_TRUE(addSplit(splits, "hdpi"));
41 ASSERT_TRUE(addSplit(splits, "xhdpi"));
42 ASSERT_TRUE(addSplit(splits, "xxhdpi"));
43 ASSERT_TRUE(addSplit(splits, "mdpi"));
48 SplitSelector selector(splits);
Grouper_test.cpp 32 Vector<SplitDescription> splits; local
33 addSplit(splits, "en-rUS-sw600dp-hdpi");
34 addSplit(splits, "fr-rFR-sw600dp-hdpi");
35 addSplit(splits, "fr-rFR-sw600dp-xhdpi");
36 addSplit(splits, ":armeabi");
37 addSplit(splits, "en-rUS-sw300dp-xhdpi");
38 addSplit(splits, "large");
39 addSplit(splits, "pl-rPL");
40 addSplit(splits, "fr-rCA");
41 addSplit(splits, "fr")
134 Vector<SplitDescription> splits; local
    [all...]
SplitSelector.cpp 33 SplitSelector::SplitSelector(const Vector<SplitDescription>& splits)
34 : mGroups(groupByMutualExclusivity(splits)) {
37 static void selectBestFromGroup(const SortedVector<SplitDescription>& splits,
41 const size_t splitCount = splits.size();
43 const SplitDescription& thisSplit = splits[j];
73 const SortedVector<SplitDescription>& splits = mGroups[i]; local
74 const size_t splitCount = splits.size();
76 sp<Rule> rule = Rule::simplify(RuleGenerator::generate(splits, j));
78 rules.add(splits[j], rule);
Main.cpp 66 Vector<SplitDescription> select(const SplitDescription& target, const Vector<SplitDescription>& splits) {
67 const SplitSelector selector(splits);
71 void generate(const KeyedVector<String8, Vector<SplitDescription> >& splits, const String8& base) {
73 const size_t apkSplitCount = splits.size();
75 allSplits.appendVector(splits[i]);
83 if (splits.keyAt(i) == base) {
95 const Vector<SplitDescription>& splitDescriptions = splits[i];
102 splits.keyAt(i).string(),
207 Vector<SplitDescription> splits; local
210 return splits;
337 Vector<SplitDescription> splits = extractSplitDescriptionsFromApk(splitApkPaths[i]); local
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
ApplicationResolver.java 53 String[] splits = receiverClassName.split("\\."); local
55 if (splits[splits.length - 1].matches(staticInnerClassRegex) && splits[splits.length - 2].matches(staticInnerClassRegex)) {
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
StreamSpliteratorTest.java 68 int splits = 0; field in class:StreamSpliteratorTest.ProxyNoExactSizeSpliterator
80 splits++;
128 splits++;
169 splits++;
211 splits++;
272 Assert.assertTrue(psp.splits > 0,
273 String.format("Number of splits should be greater that zero when proxyEstimateSize is %s",
276 String.format("Number of non-null prefix splits should be greater that zero when proxyEstimateSize is %s",
368 Assert.assertTrue(psp.splits > 0,
369 String.format("Number of splits should be greater that zero when proxyEstimateSize is %s"
    [all...]
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
ImageProcessor.java 142 int[] splits = null, pads = null; local
147 splits = getSplits(image, name);
148 pads = getPads(image, name, splits);
177 rect.splits = splits;
270 /** Returns the splits, or null if the image had no splits or the splits were only a single region. Splits are an int[4] that
284 // No splits, or all splits
    [all...]
TexturePacker.java 334 if (rect.splits != null) {
336 + rect.splits[0] + ", " + rect.splits[1] + ", " + rect.splits[2] + ", " + rect.splits[3] + "\n");
339 if (rect.splits == null) writer.write(" split: 0, 0, 0, 0\n");
382 public int[] splits; field in class:TexturePacker.Alias
389 splits = rect.splits;
400 rect.splits = splits;
422 public int[] splits; field in class:TexturePacker.Rect
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Skin.java 230 * region and stored in the skin. If the region is an {@link AtlasRegion} then the {@link AtlasRegion#splits} are used,
239 int[] splits = ((AtlasRegion)region).splits; local
240 if (splits != null) {
241 patch = new NinePatch(region, splits[0], splits[1], splits[2], splits[3]);
282 // Use texture or texture region. If it has splits, use ninepatch. If it has rotation or whitespace stripping, use sprite.
287 if (region.splits != null)
    [all...]
  /external/icu/icu4c/source/test/intltest/
csdetest.cpp 112 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits)
116 splits = 1;
118 splits += 1;
121 UnicodeString *result = new UnicodeString[splits];
159 int32_t splits = 0; local
161 UnicodeString *eSplit = split(encoding, CH_SLASH, splits);
212 if (splits > 1 && lang.compare(eSplit[1]) != 0) {
    [all...]
regextst.cpp 3126 UText *splits[10] = {NULL}; local
5570 UnicodeString splits[10]; local
    [all...]
  /external/opencv3/modules/ml/
precomp.hpp 344 virtual const std::vector<Split>& getSplits() const { return splits; }
356 vector<Split> splits; member in class:cv::ml::DTreesImpl
  /external/opencv3/modules/ml/src/
precomp.hpp 344 virtual const std::vector<Split>& getSplits() const { return splits; }
356 vector<Split> splits; member in class:cv::ml::DTreesImpl
  /libcore/luni/src/test/java/libcore/java/lang/
StringTest.java 425 String[] splits = "test\0message\0\0\0\0\0\0".split("\0", -1); local
426 assertEquals("test", splits[0]);
427 assertEquals("message", splits[1]);
428 assertEquals("", splits[2]);
429 assertEquals("", splits[3]);
430 assertEquals("", splits[4]);
431 assertEquals("", splits[5]);
432 assertEquals("", splits[6]);
433 assertEquals("", splits[7]);
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
SpliteratorTestHelper.java 488 List<T> splits = new ArrayList<>(); local
489 Consumer<T> c = boxingAdapter.apply(splits::add);
492 asserter.assertContents(splits, exp, isOrdered);
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
SpliteratorTestHelper.java 488 List<T> splits = new ArrayList<>(); local
489 Consumer<T> c = boxingAdapter.apply(splits::add);
492 asserter.assertContents(splits, exp, isOrdered);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
TextureAtlas.java 95 public int[] splits; field in class:TextureAtlas.TextureAtlasData.Region
161 region.splits = new int[] {Integer.parseInt(tuple[0]), Integer.parseInt(tuple[1]),
164 if (readTuple(reader) == 4) { // pad is optional, but only present with splits
268 atlasRegion.splits = region.splits;
392 * ninepatch splits. This method uses string comparison to find the region and constructs a new ninepatch, so the result should
399 int[] splits = region.splits; local
400 if (splits == null) throw new IllegalArgumentException("Region does not have ninepatch splits: " + name);
491 public int[] splits; field in class:TextureAtlas.AtlasRegion
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp 705 std::list<Instruction *> splits; member in class:nv50_ir::GCRA
938 splits.push_back(insn);
    [all...]
  /external/opencv/ml/src/
mltree.cpp 270 // create memory storage that will keep nodes and splits of the decision tree
3288 CvFileNode* splits; local
    [all...]
  /frameworks/base/tools/aapt/
Command.cpp 2678 const Vector<sp<ApkSplit> >& splits = builder->getSplits(); local
    [all...]
Resource.cpp 1647 Vector<sp<ApkSplit> >& splits = builder->getSplits(); local
    [all...]
  /external/opencv3/apps/traincascade/
old_ml_tree.cpp 346 // create memory storage that will keep nodes and splits of the decision tree
4022 CvFileNode* splits; local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.4.0-alpha1/
gradle-1.4.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/2.0.0/
gradle-2.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/2.0.0-alpha3/
gradle-2.0.0-alpha3.jar 

Completed in 829 milliseconds

1 2 3 4 5 6 7 8 9