Searched refs:discard (Results 1 - 25 of 62) sorted by relevance

123

/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie2.java49 private boolean discard; field in class:BasicClientCookie2
79 public void setDiscard(boolean discard) { argument
80 this.discard = discard;
85 return !this.discard && super.isPersistent();
90 return this.discard || super.isExpired(date);
/external/apache-http/src/org/apache/http/cookie/
H A DSetCookie2.java63 void setDiscard(boolean discard); argument
/external/mesa3d/src/glsl/
H A Dopt_discard_simplification.cpp35 * discard;
39 * discard;
45 * discard
47 * Case 2: The "then" clause contains an unconditional discard:
52 * discard;
61 * discard;
66 * Case 3: The "else" clause contains an unconditional discard:
73 * discard;
82 * discard;
114 is_only_instruction(ir_discard *discard) argument
154 ir_discard *discard = find_unconditional_discard(ir->body_instructions); local
168 ir_discard *discard = find_unconditional_discard(*instructions); local
[all...]
H A Dlower_discard.cpp29 * Case 1: The "then" branch contains a conditional discard:
34 * discard cond2;
50 * discard temp;
52 * Case 2: The "else" branch contains a conditional discard:
59 * discard cond2;
73 * discard temp;
75 * Case 3: Both branches contain a conditional discard:
80 * discard cond2;
84 * discard cond3;
100 * discard tem
191 ir_discard *discard = then_discard != NULL ? then_discard : else_discard; local
[all...]
/external/aac/libFDK/include/arm/
H A Dfixmul_arm.h120 INT discard, result ; local
121 __asm__ ("smull %0, %1, %2, %3" : "=&r" (discard), "=r" (result)
H A Dcplx_mul.h197 LONG discard; local
203 : "=&r"(tmp1), "=&r"(tmp2), "=&r"(discard)
H A Dfixmadd_arm.h118 INT discard, result = x; local
120 : "=r" (discard), "+r" (result)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dprinting.py151 switches.discard('detailed-progress')
155 switches.discard('everything')
159 switches.discard('default')
163 switches.discard('one-line-progress')
166 switches.discard('detailed-progress')
167 switches.discard('one-line-progress')
168 switches.discard('trace-unexpected')
169 switches.discard('unexpected')
172 switches.discard('unexpected')
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DCommonTokenStream.js40 discard,
45 discard = false;
55 discard = true;
60 discard = true;
62 if ( !discard ) {
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DCommonTokenStream.as48 /** Set<tokentype>; discard any tokens with this type */
86 var discard:Boolean = false;
96 discard = true;
99 discard = true;
101 if ( !discard ) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DLegacyCommonTokenStream.cs66 /** <summary>Set<tokentype>; discard any tokens with this type</summary> */
135 bool discard = false;
151 discard = true;
153 discard = true;
155 if (!discard) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLegacyCommonTokenStream.cs65 /** <summary>Set<tokentype>; discard any tokens with this type</summary> */
143 bool discard = false;
160 discard = true;
164 discard = true;
166 if ( !discard )
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DLegacyCommonTokenStream.java50 /** Set<tokentype>; discard any tokens with this type */
99 boolean discard = false;
111 discard = true;
114 discard = true;
116 if ( !discard ) {
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DCommonTokenStream.pm80 my $discard = 0;
90 $discard = 1;
92 $discard = 1;
95 if (!$discard) {
/external/openssh/
H A Dcipher.c217 u_char *junk, *discard; local
268 discard = xmalloc(cipher->discard_len);
269 if (EVP_Cipher(&cc->evp, discard, junk,
271 fatal("evp_crypt: EVP_Cipher failed during discard");
272 memset(discard, 0, cipher->discard_len);
274 xfree(discard);
/external/linux-tools-perf/
H A Dbuiltin-lock.c72 int discard; /* flag of blacklist */ member in struct:lock_stat
439 if (ls->discard)
473 /* broken lock sequence, discard it */
474 ls->discard = 1;
504 if (ls->discard)
527 /* broken lock sequence, discard it */
528 ls->discard = 1;
559 if (ls->discard)
575 /* broken lock sequence, discard it */
576 ls->discard
[all...]
/external/zlib/src/examples/
H A Dzran.c251 unsigned char discard[WINSIZE]; local
298 strm.next_out = discard;
303 strm.next_out = discard;
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3tokenstream.h250 /** Add a particular token type to the discard set. If a token is found to belong
255 /** Signal to discard off channel tokens from here on in.
257 void (*discardOffChannelToks)(struct ANTLR3_COMMON_TOKEN_STREAM_struct * tokenStream, ANTLR3_BOOLEAN discard);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3tokenstream.c44 static void discardOffChannel (pANTLR3_COMMON_TOKEN_STREAM cts, ANTLR3_BOOLEAN discard);
694 discardOffChannel (pANTLR3_COMMON_TOKEN_STREAM tokenStream, ANTLR3_BOOLEAN discard) argument
696 tokenStream->discardOffChannel = discard;
953 ANTLR3_BOOLEAN discard; local
968 discard = ANTLR3_FALSE; /* Assume we are not discarding */
971 * store a pointer to a structure in the override map and discard set
979 discard = ANTLR3_TRUE;
985 discard = ANTLR3_TRUE;
1003 if (discard == ANTLR3_FALSE)
/external/linux-tools-perf/util/
H A Dconfig.c331 int discard; local
332 return !!perf_config_bool_or_int(name, value, &discard);
/external/v8/src/
H A Dfull-codegen.cc845 Label discard, restore; local
847 DoTest(left, &discard, &restore, &restore);
849 DoTest(left, &restore, &discard, &restore);
854 __ bind(&discard);
863 Label discard; local
865 DoTest(left, &discard, &done, &discard);
867 DoTest(left, &done, &discard, &discard);
869 __ bind(&discard);
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py638 # Set<tokentype>; discard any tokens with this type
688 discard = False
691 discard = True
694 discard = True
708 discard = True
710 if not discard:
/external/dbus/tools/
H A Ddbus-launch.c516 char discard[512]; local
520 bytes_read = read (tty_fd, discard, sizeof (discard));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jar ... Set unrestorable java.io.File file public void discard () private void close (boolean) throws java.io.IOException ...
/external/chromium/net/tools/testserver/
H A Dxmppserver.py518 self._connections.discard(xmpp_connection)
519 self._handshake_done_connections.discard(xmpp_connection)

Completed in 6675 milliseconds

123