HomeSort by relevance Sort by last modified time
    Searched defs:consumed (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /prebuilts/misc/windows/sdl2/test/
testdropfile.c 44 int consumed; local
46 consumed = SDLTest_CommonArg(state, i);
49 consumed = 1;
51 if (consumed == 0) {
52 consumed = -1;
54 if (consumed < 0) {
58 i += consumed;
testautomation.c 51 int consumed; local
53 consumed = SDLTest_CommonArg(state, i);
54 if (consumed == 0) {
55 consumed = -1;
60 consumed = 2;
66 consumed = 2;
72 consumed = 2;
78 consumed = 2;
82 if (consumed < 0) {
88 i += consumed;
    [all...]
testwm2.c 63 int consumed; local
65 consumed = SDLTest_CommonArg(state, i);
66 if (consumed == 0) {
67 consumed = -1;
69 if (consumed < 0) {
73 i += consumed;
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;
testgles.c 126 int consumed; local
128 consumed = SDLTest_CommonArg(state, i);
129 if (consumed == 0) {
132 consumed = 1;
135 consumed = 1;
139 consumed = -1;
142 consumed = 1;
145 consumed = -1;
148 if (consumed < 0) {
153 i += consumed;
    [all...]
testrendercopyex.c 151 int consumed; local
153 consumed = SDLTest_CommonArg(state, i);
154 if (consumed == 0) {
158 i += consumed;
testscale.c 141 int consumed; local
143 consumed = SDLTest_CommonArg(state, i);
144 if (consumed == 0) {
148 i += consumed;
testdraw2.c 191 int consumed; local
193 consumed = SDLTest_CommonArg(state, i);
194 if (consumed == 0) {
195 consumed = -1;
200 consumed = 2;
203 consumed = 2;
206 consumed = 2;
209 consumed = 2;
214 consumed = 1;
217 consumed = 1
    [all...]
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;
testrendertarget.c 236 int consumed; local
238 consumed = SDLTest_CommonArg(state, i);
239 if (consumed == 0) {
240 consumed = -1;
243 consumed = 1;
246 if (consumed < 0) {
251 i += consumed;
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...]
  /external/clang/test/SemaCXX/
warn-consumed-parsing.cpp 9 // FIXME: This test is here because the warning is issued by the Consumed
14 int returnTypestateForUnconsumable() RETURN_TYPESTATE(consumed); // expected-warning {{return state set for an unconsumable type 'int'}} variable
25 int var0 SET_TYPESTATE(consumed); // expected-warning {{'set_typestate' attribute only applies to methods}}
26 int var1 TEST_TYPESTATE(consumed); // expected-warning {{'test_typestate' attribute only applies to methods}}
27 int var2 CALLABLE_WHEN("consumed"); // expected-warning {{'callable_when' attribute only applies to methods}}
28 int var3 CONSUMABLE(consumed); // expected-warning {{'consumable' attribute only applies to classes}}
29 int var4 RETURN_TYPESTATE(consumed); // expected-warning {{'return_typestate' attribute only applies to functions}}
31 void function0() SET_TYPESTATE(consumed); // expected-warning {{'set_typestate' attribute only applies to methods}} variable
32 void function1() TEST_TYPESTATE(consumed); // expected-warning {{'test_typestate' attribute only applies to methods}} variable
33 void function2() CALLABLE_WHEN("consumed"); // expected-warning {{'callable_when' attribute only applies to methods}
34 void function3() CONSUMABLE(consumed); \/\/ expected-warning {{'consumable' attribute only applies to classes}} variable
41 void consumes() SET_TYPESTATE(consumed); variable
42 bool testUnconsumed() TEST_TYPESTATE(consumed); variable
    [all...]
  /frameworks/wilhelm/src/android/
android_AudioToCbRenderer.cpp 65 size_t consumed = 0; local
68 consumed = mDecodeCbf(
73 offset += consumed;
74 //SL_LOGV("consumed=%u, offset=%u, full=%u", consumed, offset, full);
75 if (consumed == 0) {
76 // decoded data is not being consumed, skip this buffer
android_StreamPlayer.cpp 141 // (either because there was a command with no data, or all the data has been consumed)
210 // 2/ keep track of how much has been consumed
218 size_t consumed = oldFront->mDataSize - oldFront->mDataSizeConsumed; local
219 //SL_LOGD("consuming rest of buffer: enqueueing=%u", consumed);
232 if (consumed > 0) {
234 memcpy(bufferLoc, pSrc, consumed);
235 // 2/ keep track of how much has been consumed
238 receivedBuffer_l(bufferId, consumed);
242 // data has been consumed, and the buffer queue state has been updated
257 // here a buffer is only dequeued when fully consumed
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
miniopt.h 43 int consumed; /* number of argv entries cosumed in member in struct:miniopt
  /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/pcre/dist/
pcre_scanner.cc 128 int consumed; local
129 return re.DoMatch(input_, RE::ANCHOR_START, &consumed, 0, 0);
  /external/apache-http/src/org/apache/http/entity/
InputStreamEntity.java 58 private boolean consumed = false; field in class:InputStreamEntity
105 this.consumed = true;
110 return !this.consumed;
115 this.consumed = true;
  /external/boringssl/src/ssl/
d1_pkt.c 153 size_t len, consumed; local
154 switch (dtls_open_record(ssl, &type, out, &len, &consumed, &alert, max_out,
157 ssl_read_buffer_consume(ssl, consumed);
171 ssl_read_buffer_consume(ssl, consumed);
331 /* The record has been consumed, so we may now clear the buffer. */
s3_pkt.c 147 size_t len, consumed; local
148 switch (tls_open_record(ssl, &type, out, &len, &consumed, &alert, max_out,
151 ssl_read_buffer_consume(ssl, consumed);
165 ret = ssl_read_buffer_extend_to(ssl, consumed);
172 ssl_read_buffer_consume(ssl, consumed);
468 /* The record has been consumed, so we may now clear the buffer. */
  /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/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;
  /external/minijail/
minijail0.c 348 int consumed = parse_args(j, argc, argv, &exit_immediately); local
350 argc -= consumed;
351 argv += consumed;
  /external/webrtc/webrtc/base/
base64_unittest.cc 919 size_t consumed = 0, encoded_len = strlen(encoded); local
    [all...]
  /external/regex-re2/re2/testing/
tester.cc 414 int consumed; local
426 &consumed,

Completed in 442 milliseconds

1 2 3 4 5