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

1 2 3 4 5 6 7 8 91011

  /frameworks/base/tools/split-select/
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);
Grouper.h 28 groupByMutualExclusivity(const android::Vector<SplitDescription>& splits);
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);
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...]
SplitSelector.h 32 SplitSelector(const android::Vector<SplitDescription>& splits);
Grouper.cpp 31 groupByMutualExclusivity(const Vector<SplitDescription>& splits) {
34 // Find mutually exclusive splits and group them.
37 const size_t splitCount = splits.size();
39 const SplitDescription& split = splits[i];
  /frameworks/base/tools/aapt2/split/
TableSplitter.h 50 TableSplitter(const std::vector<SplitConstraints>& splits,
52 mSplitConstraints(splits), mPreferredDensity(options.preferredDensity),
  /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)) {
  /external/v8/build/android/
adb_install_apk.py 39 dest='splits',
40 help='A glob matching the apk splits. '
97 if args.splits:
98 splits = []
100 for split_glob in args.splits:
108 splits.append(f)
118 if args.splits:
119 device.InstallSplitApk(apk, splits, reinstall=args.keep_data,
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
TextureUnpacker.java 72 /** Splits an atlas into seperate image and ninepatch files. */
99 if (region.splits == null) {
171 // Draw the four lines to save the ninepatch's padding and splits
172 int startX = region.splits[0] + NINEPATCH_PADDING;
173 int endX = region.width - region.splits[1] + NINEPATCH_PADDING - 1;
174 int startY = region.splits[2] + NINEPATCH_PADDING;
175 int endY = region.height - region.splits[3] + NINEPATCH_PADDING - 1;
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...]
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...]
  /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]);
  /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/icu/icu4c/source/test/intltest/
fldset.cpp 68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits)
72 splits = 1;
74 splits += 1;
77 UnicodeString *result = new UnicodeString[splits];
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...]
  /external/v8/build/android/incremental_install/
installer.py 96 split_globs: Glob patterns for any required apk splits (optional).
119 splits = []
121 splits.extend((f for f in glob.glob(split_glob)))
122 device.InstallSplitApk(apk, splits, reinstall=True,
234 dest='splits',
235 help='A glob matching the apk splits. '
309 Install(device, apk, split_globs=args.splits, native_libs=args.native_libs,
create_install_script.py 44 splits = {splits}
51 splits=[_ResolvePath(p) for p in splits])
66 for split in params['splits']:
95 dest='splits',
97 help='A glob matching the apk splits. '
145 'splits': pformat([relativize(p) for p in options.splits]),
  /external/v8/tools/gyp/tools/
pretty_gyp.py 63 """Masks out the quotes and comments, and then splits appropriate
  /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/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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
insns9s12xg.s 15 add r7,#val1 ;splits out to addh, addl
  /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

Completed in 867 milliseconds

1 2 3 4 5 6 7 8 91011