HomeSort by relevance Sort by last modified time
    Searched refs:consumed (Results 26 - 50 of 397) sorted by null

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
utf_8_sig.py 22 (output, consumed) = codecs.utf_8_decode(input, errors, True)
23 return (output, consumed+prefix)
64 (output, consumed) = codecs.utf_8_decode(input[3:], errors, final)
65 return (output, consumed+3)
100 (output, consumed) = codecs.utf_8_decode(input[3:],errors)
101 return (output, consumed+3)
utf_32.py 55 (output, consumed, byteorder) = \
61 elif consumed >= 4:
63 return (output, consumed)
129 (object, consumed, byteorder) = \
135 elif consumed>=4:
137 return (object, consumed)
  /external/python/cpython2/Lib/encodings/
utf_16.py 60 (output, consumed, byteorder) = \
66 elif consumed >= 2:
68 return (output, consumed)
105 (object, consumed, byteorder) = \
111 elif consumed>=2:
113 return (object, consumed)
utf_8_sig.py 22 (output, consumed) = codecs.utf_8_decode(input, errors, True)
23 return (output, consumed+prefix)
64 (output, consumed) = codecs.utf_8_decode(input[3:], errors, final)
65 return (output, consumed+3)
100 (output, consumed) = codecs.utf_8_decode(input[3:],errors)
101 return (output, consumed+3)
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
utf_16.py 60 (output, consumed, byteorder) = \
66 elif consumed >= 2:
68 return (output, consumed)
105 (object, consumed, byteorder) = \
111 elif consumed>=2:
113 return (object, consumed)
utf_8_sig.py 22 (output, consumed) = codecs.utf_8_decode(input, errors, True)
23 return (output, consumed+prefix)
64 (output, consumed) = codecs.utf_8_decode(input[3:], errors, final)
65 return (output, consumed+3)
100 (output, consumed) = codecs.utf_8_decode(input[3:],errors)
101 return (output, consumed+3)
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
utf_16.py 60 (output, consumed, byteorder) = \
66 elif consumed >= 2:
68 return (output, consumed)
105 (object, consumed, byteorder) = \
111 elif consumed>=2:
113 return (object, consumed)
utf_8_sig.py 22 (output, consumed) = codecs.utf_8_decode(input, errors, True)
23 return (output, consumed+prefix)
64 (output, consumed) = codecs.utf_8_decode(input[3:], errors, final)
65 return (output, consumed+3)
100 (output, consumed) = codecs.utf_8_decode(input[3:],errors)
101 return (output, consumed+3)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
utf_16.py 60 (output, consumed, byteorder) = \
66 elif consumed >= 2:
68 return (output, consumed)
105 (object, consumed, byteorder) = \
111 elif consumed>=2:
113 return (object, consumed)
utf_8_sig.py 22 (output, consumed) = codecs.utf_8_decode(input, errors, True)
23 return (output, consumed+prefix)
64 (output, consumed) = codecs.utf_8_decode(input[3:], errors, final)
65 return (output, consumed+3)
100 (output, consumed) = codecs.utf_8_decode(input[3:],errors)
101 return (output, consumed+3)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
utf_16.py 60 (output, consumed, byteorder) = \
66 elif consumed >= 2:
68 return (output, consumed)
105 (object, consumed, byteorder) = \
111 elif consumed>=2:
113 return (object, consumed)
utf_8_sig.py 22 (output, consumed) = codecs.utf_8_decode(input, errors, True)
23 return (output, consumed+prefix)
64 (output, consumed) = codecs.utf_8_decode(input[3:], errors, final)
65 return (output, consumed+3)
100 (output, consumed) = codecs.utf_8_decode(input[3:],errors)
101 return (output, consumed+3)
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
BrowseFrameLayout.java 136 boolean consumed = super.dispatchKeyEvent(event);
138 if (!consumed) {
142 return consumed;
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/test/
NestedScrollingParent2Adapter.java 49 @Nullable int[] consumed, @ViewCompat.NestedScrollType int type) {
63 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) {
64 onNestedPreScroll(target, dx, dy, consumed, ViewCompat.TYPE_TOUCH);
81 boolean consumed) {
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
miniopt.c 63 t->consumed = 0;
77 t->consumed++;
86 t->consumed++;
137 t->consumed++;
  /prebuilts/misc/windows/sdl2/test/
testsprite2.c 252 int consumed; local
254 consumed = SDLTest_CommonArg(state, i);
255 if (consumed == 0) {
256 consumed = -1;
261 consumed = 2;
264 consumed = 2;
267 consumed = 2;
270 consumed = 2;
277 consumed = 2;
281 consumed = 1
    [all...]
testviewport.c 96 int consumed; local
98 consumed = SDLTest_CommonArg(state, i);
99 if (consumed == 0) {
100 consumed = -1;
103 consumed = 1;
106 if (consumed < 0) {
111 i += consumed;
testscale.c 141 int consumed; local
143 consumed = SDLTest_CommonArg(state, i);
144 if (consumed == 0) {
148 i += consumed;
testgl2.c 235 int consumed; local
237 consumed = SDLTest_CommonArg(state, i);
238 if (consumed == 0) {
241 consumed = 2;
244 consumed = 2;
246 consumed = -1;
249 if (consumed < 0) {
254 i += consumed;
  /external/pcre/pcrecpp/include/
pcrecpp.h 583 int consumed; local
584 if (DoMatchImpl(*input, ANCHOR_START, &consumed, args,
586 input->remove_prefix(consumed);
597 int consumed; local
598 if (DoMatchImpl(*input, UNANCHORED, &consumed, args,
600 input->remove_prefix(consumed);
639 // "*consumed" if successful.
642 int* consumed,
681 int* consumed,
  /external/libxml2/
testReader.c 42 static int consumed = 0; variable
49 printf("\t --consumed: count the number of bytes consumed\n");
92 if (consumed)
93 printf("%ld bytes consumed by parser\n", xmlTextReaderByteConsumed(reader));
120 else if ((!strcmp(argv[i], "-consumed")) || (!strcmp(argv[i], "--consumed")))
121 consumed++;
  /external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
Decoder.java 32 boolean consumed; field in class:Decoder
150 consumed = true;
173 if (consumed)
174 throw new RuntimeException("Content already consumed!");
231 consumed = true;
236 // if(!consumed)
267 // consumed = false;
  /frameworks/support/compat/java/android/support/v4/view/
NestedScrollingChild2.java 62 * parent at least partially consumed the scroll and the caller should adjust the amount it
67 * both the delta consumed and the delta unconsumed. A nested scrolling parent may treat
118 * @param dxConsumed Horizontal distance in pixels consumed by this view during this scroll step
119 * @param dyConsumed Vertical distance in pixels consumed by this view during this scroll step
120 * @param dxUnconsumed Horizontal scroll distance in pixels not consumed by this view
121 * @param dyUnconsumed Horizontal scroll distance in pixels not consumed by this view
144 * @param consumed Output. If not null, consumed[0] will contain the consumed component of dx
145 * and consumed[1] the consumed dy
    [all...]
NestedScrollingParent2.java 109 * <p>Both the consumed and unconsumed portions of the scroll distance are reported to the
110 * ViewParent. An implementation may choose to use the consumed portion to match or chase scroll
117 * @param dxConsumed Horizontal scroll distance in pixels already consumed by target
118 * @param dyConsumed Vertical scroll distance in pixels already consumed by target
119 * @param dxUnconsumed Horizontal scroll distance in pixels not consumed by target
120 * @param dyUnconsumed Vertical scroll distance in pixels not consumed by target
136 * report how any pixels of the scroll reported by dx, dy were consumed in the
137 * <code>consumed</code> array. Index 0 corresponds to dx and index 1 corresponds to dy.
138 * This parameter will never be null. Initial values for consumed[0] and consumed[1
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
utf_32.py 55 (output, consumed, byteorder) = \
61 elif consumed >= 4:
63 return (output, consumed)
129 (object, consumed, byteorder) = \
135 elif consumed>=4:
137 return (object, consumed)

Completed in 779 milliseconds

12 3 4 5 6 7 8 91011>>