/external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
10.1.4-5.js | 24 ECMA Section: 10.1.4 Scope Chain and Identifier Resolution 26 Every execution context has associated with it a scope chain. This is 28 When control enters an execution context, the scope chain is created and 30 code. When control leaves the execution context, the scope chain is 33 During execution, the scope chain of the execution context is affected 35 specified in the with statement is added to the front of the scope chain. 37 continue statement, the object is removed from the scope chain. The object 38 being removed will always be the first object in the scope chain. 43 1. Get the next object in the scope chain. If there isn't one, go to step 5. 60 writeHeaderToLog( SECTION + " Scope Chain and Identifier Resolution") [all...] |
10.1.4-6.js | 24 ECMA Section: 10.1.4 Scope Chain and Identifier Resolution 26 Every execution context has associated with it a scope chain. This is 28 When control enters an execution context, the scope chain is created and 30 code. When control leaves the execution context, the scope chain is 33 During execution, the scope chain of the execution context is affected 35 specified in the with statement is added to the front of the scope chain. 37 continue statement, the object is removed from the scope chain. The object 38 being removed will always be the first object in the scope chain. 43 1. Get the next object in the scope chain. If there isn't one, go to step 5. 60 writeHeaderToLog( SECTION + " Scope Chain and Identifier Resolution") [all...] |
10.1.4-7.js | 24 ECMA Section: 10.1.4 Scope Chain and Identifier Resolution 26 Every execution context has associated with it a scope chain. This is 28 When control enters an execution context, the scope chain is created and 30 code. When control leaves the execution context, the scope chain is 33 During execution, the scope chain of the execution context is affected 35 specified in the with statement is added to the front of the scope chain. 37 continue statement, the object is removed from the scope chain. The object 38 being removed will always be the first object in the scope chain. 43 1. Get the next object in the scope chain. If there isn't one, go to step 5. 60 writeHeaderToLog( SECTION + " Scope Chain and Identifier Resolution") [all...] |
10.1.4-8.js | 24 ECMA Section: 10.1.4 Scope Chain and Identifier Resolution 26 Every execution context has associated with it a scope chain. This is 28 When control enters an execution context, the scope chain is created and 30 code. When control leaves the execution context, the scope chain is 33 During execution, the scope chain of the execution context is affected 35 specified in the with statement is added to the front of the scope chain. 37 continue statement, the object is removed from the scope chain. The object 38 being removed will always be the first object in the scope chain. 43 1. Get the next object in the scope chain. If there isn't one, go to step 5. 60 writeHeaderToLog( SECTION + " Scope Chain and Identifier Resolution") [all...] |
10.1.4-9.js | 24 ECMA Section: 10.1.4 Scope Chain and Identifier Resolution 26 Every execution context has associated with it a scope chain. This is 28 When control enters an execution context, the scope chain is created and 30 code. When control leaves the execution context, the scope chain is 33 During execution, the scope chain of the execution context is affected 35 specified in the with statement is added to the front of the scope chain. 37 continue statement, the object is removed from the scope chain. The object 38 being removed will always be the first object in the scope chain. 43 1. Get the next object in the scope chain. If there isn't one, go to step 5. 62 writeHeaderToLog( SECTION + " Scope Chain and Identifier Resolution") [all...] |
/external/iptables/libiptc/ |
libiptc.c | 6 * Each user chain starts with an ERROR node. 7 * Every chain ends with an unconditional jump: a RETURN for user chains, 16 * - Reimplementation of chain cache to use offsets instead of entries 19 * don't rebuild the chain cache after every operation, instead fix it 87 IPTCC_R_JUMP, /* jump to other chain */ 93 struct chain_head *chain; member in struct:rule_head 114 STRUCT_COUNTERS counters; /* per-chain counters */ 139 /* allocate a new chain head for the cache */ 162 r->chain = c; 270 /* Is the given chain builtin (1) or user-defined (0) * [all...] |
/external/iptables/ |
ip6tables-restore.c | 223 /* New chain. */ 224 char *policy, *chain; local 226 chain = strtok(buffer+1, " \t\n"); 227 DEBUGP("line %u, chain '%s'\n", line, chain); 228 if (!chain) { 230 "%s: line %u chain name invalid\n", 235 if (ip6tc_builtin(chain, handle) <= 0) { 236 if (noflush && ip6tc_is_chain(chain, handle)) { 237 DEBUGP("Flushing existing user defined chain '%s'\n", chain) [all...] |
iptables-restore.c | 226 /* New chain. */ 227 char *policy, *chain; local 229 chain = strtok(buffer+1, " \t\n"); 230 DEBUGP("line %u, chain '%s'\n", line, chain); 231 if (!chain) { 233 "%s: line %u chain name invalid\n", 238 if (iptc_builtin(chain, handle) <= 0) { 239 if (noflush && iptc_is_chain(chain, handle)) { 240 DEBUGP("Flushing existing user defined chain '%s'\n", chain) [all...] |
iptables.xslt | 15 <xsl:template match="iptables-rules/table/chain/rule/conditions/*"> 25 <xsl:template match="iptables-rules/table/chain/rule/actions|table/chain/rule/conditions"> 29 <xsl:template match="iptables-rules/table/chain/rule/actions/goto"> 34 <xsl:template match="iptables-rules/table/chain/rule/actions/call"> 40 <xsl:template match="iptables-rules/table/chain/rule/actions/*"> 47 <xsl:template match="iptables-rules/table/chain/rule/actions/*/*|iptables-rules/table/chain/rule/actions/*//*|iptables-rules/table/chain/rule/conditions/*/*|iptables-rules/table/chain/rule/conditions/*//*" [all...] |
ip6tables-save.c | 145 ip6tc_handle_t *h, const char *chain, int counters) 154 /* print chain name */ 155 printf("-A %s ", chain); 252 const char *chain = NULL; local 269 /* Dump out chain names first, 271 for (chain = ip6tc_first_chain(&h); 272 chain; 273 chain = ip6tc_next_chain(&h)) { 275 printf(":%s ", chain); 276 if (ip6tc_builtin(chain, h)) [all...] |
iptables.c | 115 { "new-chain", 1, 0, 'N' }, 116 { "delete-chain", 2, 0, 'X' }, 117 { "rename-chain", 1, 0, 'E' }, 417 "Usage: %s -[AD] chain rule-specification [options]\n" 418 " %s -[RI] chain rulenum rule-specification [options]\n" 419 " %s -D chain rulenum [options]\n" 420 " %s -[LFZ] [chain] [options]\n" 421 " %s -[NX] chain\n" 422 " %s -E old-chain-name new-chain-name\n 1670 const char *chain; local 1947 const char *chain = NULL; local [all...] |
ip6tables.c | 115 { "new-chain", 1, 0, 'N' }, 116 { "delete-chain", 2, 0, 'X' }, 117 { "rename-chain", 1, 0, 'E' }, 330 "Usage: %s -[AD] chain rule-specification [options]\n" 331 " %s -[RI] chain rulenum rule-specification [options]\n" 332 " %s -D chain rulenum [options]\n" 333 " %s -[LFZ] [chain] [options]\n" 334 " %s -[NX] chain\n" 335 " %s -E old-chain-name new-chain-name\n 1601 const char *chain; local 1863 const char *chain = NULL; local [all...] |
iptables.8.in | 28 .BR "iptables [-t table] -[AD] " "chain rule-specification [options]" 30 .BR "iptables [-t table] -I " "chain [rulenum] rule-specification [options]" 32 .BR "iptables [-t table] -R " "chain rulenum rule-specification [options]" 34 .BR "iptables [-t table] -D " "chain rulenum [options]" 36 .BR "iptables [-t table] -[LFZ] " "[chain] [options]" 38 .BR "iptables [-t table] -N " "chain" 40 .BR "iptables [-t table] -X " "[chain]" 42 .BR "iptables [-t table] -P " "chain target [options]" 44 .BR "iptables [-t table] -E " "old-chain-name new-chain-name [all...] |
iptables-xml.c | 98 typedef struct chain struct 100 char *chain; member in struct:chain 104 } chain; typedef in typeref:struct:chain 107 static chain chains[maxChains]; 239 printf(" </chain>\n"); 245 openChain(char *chain, char *policy, struct ipt_counters *ctr, char close) 249 strncpy(curChain, chain, IPT_CHAIN_MAXNAMELEN); 252 printf(" <chain "); 266 existsChain(char *chain) 268 /* open a saved chain */ 693 char *policy, *chain; local 728 char *chain = NULL; local [all...] |
ip6tables.8.in | 30 .BR "ip6tables [-t table] -[AD] " "chain rule-specification [options]" 32 .BR "ip6tables [-t table] -I " "chain [rulenum] rule-specification [options]" 34 .BR "ip6tables [-t table] -R " "chain rulenum rule-specification [options]" 36 .BR "ip6tables [-t table] -D " "chain rulenum [options]" 38 .BR "ip6tables [-t table] -[LFZ] " "[chain] [options]" 40 .BR "ip6tables [-t table] -N " "chain" 42 .BR "ip6tables [-t table] -X " "[chain]" 44 .BR "ip6tables [-t table] -P " "chain target [options]" 46 .BR "ip6tables [-t table] -E " "old-chain-name new-chain-name [all...] |
iptables-save.c | 161 iptc_handle_t *h, const char *chain, int counters) 170 /* print chain name */ 171 printf("-A %s ", chain); 263 const char *chain = NULL; local 280 /* Dump out chain names first, 282 for (chain = iptc_first_chain(&h); 283 chain; 284 chain = iptc_next_chain(&h)) { 286 printf(":%s ", chain); 287 if (iptc_builtin(chain, h)) [all...] |
/dalvik/libcore/xml/src/main/java/org/xmlpull/v1/ |
XmlPullParserException.java | 36 public XmlPullParserException(String msg, XmlPullParser parser, Throwable chain) { 39 + (chain == null ? "" : "caused by: "+chain)); 45 this.detail = chain;
|
/external/clearsilver/man/man3/ |
nerr_handle.3 | 31 of nerr_match, but it will also deallocate the error chain
|
nerr_pass.3 | 30 call chain (ie, if the error isn't handled at the
|
/external/icu4c/layout/ |
MorphTables.cpp | 27 le_uint32 chain; local 29 for (chain = 0; chain < chainCount; chain += 1) {
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
access-via-redirect.html | 3 <p>This tests that the start of redirect chain doesn't get into an application cache if the end of the chain has a manifest.</p> 27 document.getElementById('result').innerHTML = "FAILURE: Start of redirect chain is in cache."
|
/dalvik/libcore/luni/src/main/java/java/net/ |
SecureCacheResponse.java | 49 * Gets the local certificate chain. When the original connection retrieved 50 * the resource data, this certificate chain was sent to the server during 54 * @return the certificate chain that was sent to the server. If no 55 * certificate chain was sent, the method returns {@code null}. 60 * Gets the cached server's certificate chain. As part of defining the 61 * session, the certificate chain was established when the original 66 * @return the server's certificate chain.
|
/external/guava/src/com/google/common/collect/ |
ComparisonChain.java | 42 * nonzero</i> comparison result in the chain, or will be zero if every 137 * Comparable#compareTo}, <i>if</i> the result of this comparison chain 145 * comparison chain has not already been determined. 152 * <i>if</i> the result of this comparison chain has not already been 159 * <i>if</i> the result of this comparison chain has not already been 166 * Float#compare}, <i>if</i> the result of this comparison chain has not 173 * Double#compare}, <i>if</i> the result of this comparison chain has not 180 * Booleans#compare}, <i>if</i> the result of this comparison chain has not 186 * Ends this comparison chain and returns its result: a value having the 187 * same sign as the first nonzero comparison result in the chain, or zero i [all...] |
/external/wpa_supplicant/tests/ |
test_x509v3.c | 61 printf("\n\nValidating certificate chain\n"); 63 printf("\nCertificate chain validation failed: %d\n", reason); 66 printf("\nCertificate chain is valid\n");
|
/external/wpa_supplicant_6/wpa_supplicant/tests/ |
test_x509v3.c | 61 printf("\n\nValidating certificate chain\n"); 63 printf("\nCertificate chain validation failed: %d\n", reason); 66 printf("\nCertificate chain is valid\n");
|