Searched defs:split (Results 26 - 44 of 44) sorted by relevance

12

/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.cpp200 void MipsGOT::split() function in class:MipsGOT
256 split();
275 split();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAbsActionBarView.java95 * Sets whether the bar should be split right now, no questions asked.
96 * @param split true if the bar should split
98 public void setSplitToolbar(boolean split) { argument
99 mSplitActionBar = split;
103 * Sets whether the bar should split if we enter a narrow screen configuration.
104 * @param splitWhenNarrow true if the bar should check to split after a config change
H A DActionBarContextView.java113 public void setSplitToolbar(boolean split) { argument
114 if (mSplitActionBar != split) {
119 if (!split) {
126 // Allow full screen width in split mode.
141 super.setSplitToolbar(split);
240 // Allow full screen width in split mode.
H A DDecorToolbar.java55 void setSplitToolbar(boolean split); argument
H A DToolbarWidgetWrapper.java323 public void setSplitToolbar(boolean split) { argument
324 if (split) {
325 throw new UnsupportedOperationException("Cannot split an android.widget.Toolbar");
/frameworks/wilhelm/tools/permute/
H A Dpermute.c53 /** Global state during the split phase */
79 static unsigned split(State *s, unsigned frameStart, unsigned frameLength, unsigned segmentBudget) function
107 used = split(s, leftStart, leftLength, segmentBudget / 2);
108 used += split(s, rightStart, rightLength, segmentBudget - used);
110 used = split(s, rightStart, rightLength, segmentBudget / 2);
111 used += split(s, leftStart, leftLength, segmentBudget - used);
224 used = split(&s, 0, sfinfo_in.frames, s.mSegmentMax);
/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java101 * Sets whether the bar should be split right now, no questions asked.
102 * @param split true if the bar should split
104 public void setSplitToolbar(boolean split) { argument
105 mSplitActionBar = split;
109 * Sets whether the bar should split if we enter a narrow screen configuration.
110 * @param splitWhenNarrow true if the bar should check to split after a config change
H A DActionBarContextView.java120 public void setSplitToolbar(boolean split) { argument
121 if (mSplitActionBar != split) {
126 if (!split) {
133 // Allow full screen width in split mode.
148 super.setSplitToolbar(split);
247 // Allow full screen width in split mode.
H A DDecorToolbar.java57 void setSplitToolbar(boolean split); argument
H A DToolbarWidgetWrapper.java298 public void setSplitToolbar(boolean split) { argument
299 if (split) {
300 throw new UnsupportedOperationException("Cannot split an android.widget.Toolbar");
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp346 chunk_t* split = new chunk_t(free_chunk->start, extra); local
348 mList.insertBefore(free_chunk, split);
357 chunk_t* split = new chunk_t( local
359 mList.insertAfter(free_chunk, split);
/frameworks/native/libs/input/
H A DInputTransport.cpp526 ssize_t split = findSampleNoLaterThan(batch, sampleTime); local
527 if (split < 0) {
531 result = consumeSamples(factory, batch, split + 1, outSeq, outEvent);
/frameworks/base/core/java/android/text/
H A DTextUtils.java334 * String.split() returns [''] when the string to be split is empty. This returns []. This does
335 * not remove any empty strings from the result. For example split("a,", "," ) returns {"a", ""}.
337 * @param text the string to split
343 public static String[] split(String text, String expression) { method in class:TextUtils
347 return text.split(expression, -1);
352 * Splits a string on a pattern. String.split() returns [''] when the string to be
353 * split is empty. This returns []. This does not remove any empty strings from the result.
354 * @param text the string to split
360 public static String[] split(Strin method in class:TextUtils
[all...]
/frameworks/native/services/inputflinger/
H A DInputDispatcher.h97 /* This flag indicates that a motion event is being split across multiple windows. */
956 bool split; member in struct:android::InputDispatcher::TouchState
/frameworks/base/core/java/android/view/
H A DMotionEvent.java2933 public final MotionEvent split(int idBits) { method in class:MotionEvent
H A DViewGroup.java345 * When set, this ViewGroup will split MotionEvents to multiple child Views when appropriate.
1982 final boolean split = (mGroupFlags & FLAG_SPLIT_MOTION_EVENTS) != 0;
1996 || (split && actionMasked == MotionEvent.ACTION_POINTER_DOWN)
1999 final int idBitsToAssign = split ? 1 << ev.getPointerId(actionIndex)
2131 } else if (split && actionMasked == MotionEvent.ACTION_POINTER_UP) {
2413 transformedEvent = event.split(newPointerIdBits);
2440 * <p>When this option is enabled MotionEvents may be split and dispatched to different child
2445 * @param split <code>true</code> to allow MotionEvents to be split and dispatched to multiple
2450 public void setMotionEventSplittingEnabled(boolean split) { argument
[all...]
/frameworks/base/tools/aapt/
H A DCommand.cpp1038 String8 splitName = AaptXml::getAttribute(tree, NULL, "split");
1040 printf(" split='%s'", ResTable::normalizeForOutput(
2243 static String8 buildApkName(const String8& original, const sp<ApkSplit>& split) { argument
2244 if (split->isBase()) {
2252 split->getDirectorySafeName().string(),
2257 split->getDirectorySafeName().string());
2336 // If we are generating a Split APK, find out which configurations to split on.
2343 fprintf(stderr, "ERROR: failed to parse split configuration '%s'\n", splitStrs[i].string());
2456 const sp<ApkSplit>& split = splits[i]; local
2457 String8 outputPath = buildApkName(String8(outputAPKFile), split);
[all...]
H A DResource.cpp907 // Generate split name if feature is present.
912 status_t err = root->addAttribute(String16(), String16("split"), splitName);
914 ALOGE("Failed to insert split name into AndroidManifest.xml");
1060 const sp<ApkSplit>& split, sp<AaptFile>& outFile, ResourceTable* table) {
1091 // Add the 'split' attribute which describes the configurations included.
1093 splitName.append(split->getPackageSafeName());
1094 manifest->addAttribute(String16(), String16("split"), String16(splitName));
1591 sp<ApkSplit>& split = splits.editItemAt(i); local
1594 err = table.flatten(bundle, split->getResourceFilter(),
1595 flattenedTable, split
1059 generateAndroidManifestForSplit(Bundle* bundle, const sp<AaptAssets>& assets, const sp<ApkSplit>& split, sp<AaptFile>& outFile, ResourceTable* table) argument
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java2947 for (String s : split(str)) {
3032 for (String s : split(str)) {
3248 return split(str);
3289 return split(str);
3326 return split(str);
3380 return split(str);
3417 return split(str);
3457 return split(str);
4055 private ArrayList<String> split(String str) { method in class:Camera.Parameters

Completed in 279 milliseconds

12