HomeSort by relevance Sort by last modified time
    Searched refs:consumed (Results 126 - 150 of 452) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/linux-x86/src/go/scanner/
scanner.go 168 // initial '/' already consumed; s.ch == '/' || s.ch == '*'
214 // initial '/' already consumed
426 // '\'' opening already consumed
462 // '"' opening already consumed
496 // '`' opening already consumed
633 s.insertSemi = false // EOF consumed
641 s.insertSemi = false // newline consumed
710 s.insertSemi = false // newline consumed
716 s.insertSemi = false // newline consumed
  /build/make/tools/
fat16copy.py 159 (dent, consumed) = self.backing.fs.read_dentry(self.backing)
160 to_read -= consumed
516 consumed = 1
528 consumed += 1
545 return (None, consumed)
554 return (None, consumed)
572 size), consumed)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
formatter.h 68 integer, and returns the number of digits consumed.
181 Py_ssize_t consumed; local
231 consumed = get_integer(&ptr, end, &format->width);
232 if (consumed == -1)
236 /* If consumed is 0, we didn't consume any characters for the
240 if (consumed == 0)
253 consumed = get_integer(&ptr, end, &format->precision);
254 if (consumed == -1)
259 if (consumed == 0) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
formatter.h 68 integer, and returns the number of digits consumed.
183 Py_ssize_t consumed; local
231 consumed = get_integer(&ptr, end, &format->width);
232 if (consumed == -1)
236 /* If consumed is 0, we didn't consume any characters for the
240 if (consumed == 0)
253 consumed = get_integer(&ptr, end, &format->precision);
254 if (consumed == -1)
259 if (consumed == 0) {
    [all...]
  /external/nos/host/android/hals/keymaster/
KeymasterDevice.cpp 755 uint32_t consumed; local
759 error_code = buffer_append(operationHandle, input, &consumed);
774 _hidl_cb(ErrorCode::OK, consumed, params, output);
798 if (buffer_advance(operationHandle, response.consumed()) != ErrorCode::OK) {
808 _hidl_cb(ErrorCode::OK, consumed, params, output);
838 uint32_t consumed; local
840 error_code = buffer_append(operationHandle, input, &consumed);
    [all...]
  /external/python/cpython2/Objects/stringlib/
formatter.h 68 integer, and returns the number of digits consumed.
181 Py_ssize_t consumed; local
231 consumed = get_integer(&ptr, end, &format->width);
232 if (consumed == -1)
236 /* If consumed is 0, we didn't consume any characters for the
240 if (consumed == 0)
253 consumed = get_integer(&ptr, end, &format->precision);
254 if (consumed == -1)
259 if (consumed == 0) {
    [all...]
  /external/python/cpython3/Python/
formatter_unicode.c 52 integer, and returns the number of digits consumed.
176 Py_ssize_t consumed; local
226 consumed = get_integer(format_spec, &pos, end, &format->width);
227 if (consumed == -1)
231 /* If consumed is 0, we didn't consume any characters for the
235 if (consumed == 0)
261 consumed = get_integer(format_spec, &pos, end, &format->precision);
262 if (consumed == -1)
267 if (consumed == 0) {
    [all...]
  /frameworks/base/core/java/android/widget/
ListPopupWindow.java 928 boolean consumed;
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
ListPopupWindow.java     [all...]
  /hardware/interfaces/keymaster/4.0/vts/functional/
KeymasterHidlTest.cpp 390 size_t consumed = 0; local
394 Update(op_handle_, update_params, message, &update_out_params, &output, &consumed));
399 EXPECT_EQ(ErrorCode::OK, Finish(op_handle_, finish_params, message.substr(consumed), unused,
495 size_t consumed; local
497 Update(op_handle_, update_params, message, &update_out_params, &output, &consumed));
499 EXPECT_GT(consumed, 0U);
504 EXPECT_EQ(ErrorCode::OK, Finish(op_handle_, finish_params, message.substr(consumed), signature,
  /frameworks/support/compat/src/main/java/androidx/core/view/
ViewCompat.java     [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
WriteIndicCharts.java 120 boolean consumed =false;
137 if(temp[j].indexOf(":CONSUMED")>=0){
139 consumed=true;
164 }else if(consumed){
334 arr[index] = UTF16.valueOf(start+(((byte)iter.codepoint)&0xFF))+":CONSUMED";
340 arr[index] = UTF16.valueOf(start+(((byte)iter.codepoint)&0xFF))+":CONSUMED";
  /frameworks/support/compat/src/main/java/androidx/core/widget/
NestedScrollView.java 242 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow,
244 return mChildHelper.dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow, type);
282 public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) {
283 return dispatchNestedPreScroll(dx, dy, consumed, offsetInWindow, ViewCompat.TYPE_TOUCH);
287 public boolean dispatchNestedFling(float velocityX, float velocityY, boolean consumed) {
288 return mChildHelper.dispatchNestedFling(velocityX, velocityY, consumed);
329 public void onNestedPreScroll(@NonNull View target, int dx, int dy, @NonNull int[] consumed,
331 dispatchNestedPreScroll(dx, dy, consumed, null, type);
359 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) {
360 onNestedPreScroll(target, dx, dy, consumed, ViewCompat.TYPE_TOUCH)
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
Consumed.h 1 //===- Consumed.h ----------------------------------------------*- C++ --*-===//
10 // A intra-procedural analysis for checking consumed properties. This is based,
26 namespace consumed { namespace in namespace:clang
104 /// \brief Warn about use-while-consumed errors.
115 /// \brief Warn about use-while-consumed errors.
158 /// \brief Get the consumed state of a given variable.
161 /// \brief Get the consumed state of a given temporary value.
182 /// \brief Set the consumed state of a given variable.
185 /// \brief Set the consumed state of a given temporary value.
259 /// \brief Check a function's CFG for consumed violations
    [all...]
  /external/python/cpython3/Modules/_io/
_iomodule.h 57 `*consumed`.
58 If not found, returns -1 and sets `*consumed` to the number of characters
70 int kind, const char *start, const char *end, Py_ssize_t *consumed);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ActivityTest.java 380 boolean consumed = activity.onKeyUp(KeyEvent.KEYCODE_0, new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_0));
382 assertFalse(consumed);
392 boolean consumed = activity.onKeyUp(KeyEvent.KEYCODE_BACK, new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_BACK));
394 assertTrue(consumed);
  /external/skia/include/private/
GrAuditTrail.h 86 void opsCombined(const GrOp* consumer, const GrOp* consumed);
  /external/skqp/include/private/
GrAuditTrail.h 86 void opsCombined(const GrOp* consumer, const GrOp* consumed);
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
AsyncListDifferTest.kt 44 val consumed = !mTasks.isEmpty()
51 return consumed
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLSocketFactory.java 224 * already been consumed/removed from the {@link Socket}'s
234 * {@code consumed} stream before this method is called, perhaps
237 * {@code consumed} until it reaches {@code EOF}, then all further
247 * @param consumed
248 * the consumed inbound network data that has already been
266 public Socket createSocket(Socket s, InputStream consumed,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Analyses/
Consumed.h 1 //===- Consumed.h ----------------------------------------------*- C++ --*-===//
10 // A intra-procedural analysis for checking consumed properties. This is based,
26 namespace consumed { namespace in namespace:clang
104 /// \brief Warn about use-while-consumed errors.
115 /// \brief Warn about use-while-consumed errors.
158 /// \brief Get the consumed state of a given variable.
161 /// \brief Get the consumed state of a given temporary value.
182 /// \brief Set the consumed state of a given variable.
185 /// \brief Set the consumed state of a given temporary value.
254 /// \brief Check a function's CFG for consumed violations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Analysis/Analyses/
Consumed.h 1 //===- Consumed.h ----------------------------------------------*- C++ --*-===//
10 // A intra-procedural analysis for checking consumed properties. This is based,
26 namespace consumed { namespace in namespace:clang
104 /// \brief Warn about use-while-consumed errors.
115 /// \brief Warn about use-while-consumed errors.
158 /// \brief Get the consumed state of a given variable.
161 /// \brief Get the consumed state of a given temporary value.
182 /// \brief Set the consumed state of a given variable.
185 /// \brief Set the consumed state of a given temporary value.
254 /// \brief Check a function's CFG for consumed violations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Analysis/Analyses/
Consumed.h 1 //===- Consumed.h ----------------------------------------------*- C++ --*-===//
10 // A intra-procedural analysis for checking consumed properties. This is based,
26 namespace consumed { namespace in namespace:clang
104 /// \brief Warn about use-while-consumed errors.
115 /// \brief Warn about use-while-consumed errors.
158 /// \brief Get the consumed state of a given variable.
161 /// \brief Get the consumed state of a given temporary value.
182 /// \brief Set the consumed state of a given variable.
185 /// \brief Set the consumed state of a given temporary value.
254 /// \brief Check a function's CFG for consumed violations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Analysis/Analyses/
Consumed.h 1 //===- Consumed.h ----------------------------------------------*- C++ --*-===//
10 // A intra-procedural analysis for checking consumed properties. This is based,
26 namespace consumed { namespace in namespace:clang
104 /// \brief Warn about use-while-consumed errors.
115 /// \brief Warn about use-while-consumed errors.
158 /// \brief Get the consumed state of a given variable.
161 /// \brief Get the consumed state of a given temporary value.
182 /// \brief Set the consumed state of a given variable.
185 /// \brief Set the consumed state of a given temporary value.
254 /// \brief Check a function's CFG for consumed violations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Analysis/Analyses/
Consumed.h 1 //===- Consumed.h ----------------------------------------------*- C++ --*-===//
10 // A intra-procedural analysis for checking consumed properties. This is based,
26 namespace consumed { namespace in namespace:clang
104 /// \brief Warn about use-while-consumed errors.
115 /// \brief Warn about use-while-consumed errors.
158 /// \brief Get the consumed state of a given variable.
161 /// \brief Get the consumed state of a given temporary value.
182 /// \brief Set the consumed state of a given variable.
185 /// \brief Set the consumed state of a given temporary value.
254 /// \brief Check a function's CFG for consumed violations
    [all...]

Completed in 852 milliseconds

1 2 3 4 56 7 8 91011>>