Searched defs:split (Results 1 - 18 of 18) sorted by relevance

/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DViewGroupCompatHC.java26 public static void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { argument
27 group.setMotionEventSplittingEnabled(split);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewGroupCompat.java50 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split); argument
61 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { argument
78 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { argument
79 ViewGroupCompatHC.setMotionEventSplittingEnabled(group, split);
150 * <p>When this option is enabled MotionEvents may be split and dispatched to different child
156 * @param split <code>true</code> to allow MotionEvents to be split and dispatched to multiple
160 public static void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { argument
161 IMPL.setMotionEventSplittingEnabled(group, split);
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DEncodedStringValue.java212 public EncodedStringValue[] split(String pattern) { method in class:EncodedStringValue
213 String[] temp = getString().split(pattern);
231 String[] values = src.split(";");
/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java81 * Sets whether the bar should be split right now, no questions asked.
82 * @param split true if the bar should split
84 public void setSplitActionBar(boolean split) { argument
85 mSplitActionBar = split;
89 * Sets whether the bar should split if we enter a narrow screen configuration.
90 * @param splitWhenNarrow true if the bar should check to split after a config change
H A DActionBarContextView.java107 public void setSplitActionBar(boolean split) { argument
108 if (mSplitActionBar != split) {
113 if (!split) {
120 // Allow full screen width in split mode.
135 super.setSplitActionBar(split);
234 // Allow full screen width in split mode.
/frameworks/base/libs/hwui/
H A DGradientCache.cpp251 ChannelSplitter split = gSplitters[mUseFloatTexture]; local
260 (this->*split)(colors[0], start);
263 (this->*split)(colors[1], end);
278 (this->*split)(colors[currentPos], end);
/frameworks/base/services/java/com/android/server/wm/
H A DStackBox.java168 TaskStack split(int stackId, int relativeStackBoxId, int position, float weight) { method in class:StackBox
174 // Propagate the split to see if the targeted StackBox is in either sub box.
175 TaskStack stack = mFirst.split(stackId, relativeStackBoxId, position, weight);
179 return mSecond.split(stackId, relativeStackBoxId, position, weight);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.cpp199 void MipsGOT::split() function in class:MipsGOT
250 split();
270 split();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAbsActionBarView.java81 * Sets whether the bar should be split right now, no questions asked.
83 * @param split true if the bar should split
85 public void setSplitActionBar(boolean split) { argument
86 mSplitActionBar = split;
90 * Sets whether the bar should split if we enter a narrow screen configuration.
92 * @param splitWhenNarrow true if the bar should check to split after a config change
H A DActionBarContextView.java92 public void setSplitActionBar(boolean split) { argument
93 if (mSplitActionBar != split) {
99 if (!split) {
108 // Allow full screen width in split mode.
125 super.setSplitActionBar(split);
225 // Allow full screen width in split mode.
/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/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.cpp525 ssize_t split = findSampleNoLaterThan(batch, sampleTime); local
526 if (split < 0) {
530 result = consumeSamples(factory, batch, split + 1, outSeq, outEvent);
/frameworks/base/core/java/android/text/
H A DTextUtils.java322 * String.split() returns [''] when the string to be split is empty. This returns []. This does
323 * not remove any empty strings from the result. For example split("a,", "," ) returns {"a", ""}.
325 * @param text the string to split
331 public static String[] split(String text, String expression) { method in class:TextUtils
335 return text.split(expression, -1);
340 * Splits a string on a pattern. String.split() returns [''] when the string to be
341 * split is empty. This returns []. This does not remove any empty strings from the result.
342 * @param text the string to split
348 public static String[] split(Strin method in class:TextUtils
[all...]
/frameworks/base/services/input/
H A DInputDispatcher.h97 /* This flag indicates that a motion event is being split across multiple windows. */
944 bool split; member in struct:android::InputDispatcher::TouchState
/frameworks/base/core/java/android/view/
H A DMotionEvent.java2898 public final MotionEvent split(int idBits) { method in class:MotionEvent
H A DViewGroup.java339 * When set, this ViewGroup will split MotionEvents to multiple child Views when appropriate.
1875 final boolean split = (mGroupFlags & FLAG_SPLIT_MOTION_EVENTS) != 0;
1880 || (split && actionMasked == MotionEvent.ACTION_POINTER_DOWN)
1883 final int idBitsToAssign = split ? 1 << ev.getPointerId(actionIndex)
1984 } else if (split && actionMasked == MotionEvent.ACTION_POINTER_UP) {
2224 transformedEvent = event.split(newPointerIdBits);
2251 * <p>When this option is enabled MotionEvents may be split and dispatched to different child
2256 * @param split <code>true</code> to allow MotionEvents to be split and dispatched to multiple
2261 public void setMotionEventSplittingEnabled(boolean split) { argument
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java2657 for (String s : split(str)) {
2742 for (String s : split(str)) {
2959 return split(str);
3000 return split(str);
3037 return split(str);
3091 return split(str);
3128 return split(str);
3168 return split(str);
3766 private ArrayList<String> split(String str) { method in class:Camera.Parameters

Completed in 476 milliseconds