Searched defs:decision (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXTableRow.cpp85 AXObjectInclusion decision = defaultObjectInclusion(); local
86 if (decision == IncludeObject)
88 if (decision == IgnoreObject)
H A DAXTableCell.cpp56 AXObjectInclusion decision = defaultObjectInclusion(); local
57 if (decision == IncludeObject)
59 if (decision == IgnoreObject)
H A DAXTable.cpp543 AXObjectInclusion decision = defaultObjectInclusion(); local
544 if (decision == IncludeObject)
546 if (decision == IgnoreObject)
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestCharDFAConversion.java219 // with the enter/exit decision
510 int decision,
524 DFA dfa = g.getLookaheadDFA(decision);
525 assertNotNull("unknown decision #"+decision, dfa);
509 checkDecision(Grammar g, int decision, String expecting, int[] expectingUnreachableAlts) argument
H A DTestSemanticPredicates.java496 // rule A decision can't test p from s0->1 because 'a' is valid
786 int decision,
815 DFA dfa = g.getLookaheadDFA(decision);
785 checkDecision(Grammar g, int decision, String expecting, int[] expectingUnreachableAlts, int[] expectingNonDetAlts, String expectingAmbigInput, int[] expectingInsufficientPredAlts, int[] expectingDanglingAlts, int expectingNumWarnings, boolean hasPredHiddenByAction) argument
H A DTestDFAConversion.java863 checkDecision(g, 1, expecting, null, null, null, null, 0); // loopback decision
927 checkDecision(g, 1, expecting, null, null, null, null, 0); // loopback decision
937 checkDecision(g, 1, expecting, null, null, null, null, 0); // loopback decision
1424 ".s1-{synpred1_t}?->:s2=>1\n" + // hoists into decision
1612 int decision,
1640 DFA dfa = g.getLookaheadDFA(decision);
1641 assertNotNull("no DFA for decision "+decision, dfa);
1611 checkDecision(Grammar g, int decision, String expecting, int[] expectingUnreachableAlts, int[] expectingNonDetAlts, String expectingAmbigInput, int[] expectingDanglingAlts, int expectingNumWarnings) argument
/external/chromium_org/content/browser/speech/endpointer/
H A Denergy_endpointer.cc56 void Insert(int64 time_us, bool decision);
61 // Returns the sum of all intervals during which 'decision' is true within
69 bool decision; member in struct:content::EnergyEndpointer::HistoryRing::DecisionPoint
85 void EnergyEndpointer::HistoryRing::Insert(int64 time_us, bool decision) { argument
87 decision_points_[insertion_index_].decision = decision;
107 bool is_on = decision_points_[ind].decision;
119 is_on = decision_points_[ind].decision;
244 bool decision = false; local
247 decision
[all...]
/external/chromium_org/ui/keyboard/resources/
H A Dtouch_fuzzing.js51 * Regenerates a decision tree using the keys in the keyset.
185 this.decision = line;
193 decision: undefined,
196 * The branch for nodes that failed the decision test.
202 * The branch for nodes that passed the decision test.
215 return node.decision.testPoint(x, y) >= 0;
220 * Populates the decision tree with elements.
229 var result = this.decision.test(data[i]);
236 var currentRotation = this.decision.rotated;
252 // All elements that passed the decision tes
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Ddenoising.c199 enum vp8_denoiser_decision decision = FILTER_BLOCK; local
283 decision = COPY_BLOCK;
286 if (decision == FILTER_BLOCK)
289 decision = vp8_denoiser_filter(&denoiser->yv12_mc_running_avg,
295 if (decision == COPY_BLOCK)
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_denoiser.c325 VP9_DENOISER_DECISION decision = FILTER_BLOCK; local
333 decision = perform_motion_compensation(denoiser, mb, bs,
338 if (decision == FILTER_BLOCK) {
339 decision = denoiser_filter(src.buf, src.stride,
345 if (decision == FILTER_BLOCK) {
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_blocking_page.cc497 void SafeBrowsingBlockingPage::RecordUserDecision(Decision decision) { argument
500 UMA_HISTOGRAM_ENUMERATION("interstitial.malware.decision",
501 decision,
505 UMA_HISTOGRAM_ENUMERATION("interstitial.harmful.decision",
506 decision,
510 UMA_HISTOGRAM_ENUMERATION("interstitial.phishing.decision",
511 decision,
518 switch (decision) {
539 if (decision == PROCEED || decision
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Ddenoising.c511 enum vp8_denoiser_decision decision = FILTER_BLOCK; local
615 decision = COPY_BLOCK;
617 if (decision == FILTER_BLOCK)
627 decision = vp8_denoiser_filter(mc_running_avg_y, mc_avg_y_stride,
636 decision == FILTER_BLOCK) {
660 if (decision == COPY_BLOCK)
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.cpp83 const struct ContextDecision* decision = nullptr; local
87 decision = &ONEBYTE_SYM;
90 decision = &TWOBYTE_SYM;
93 decision = &THREEBYTE38_SYM;
96 decision = &THREEBYTE3A_SYM;
99 decision = &XOP8_MAP_SYM;
102 decision = &XOP9_MAP_SYM;
105 decision = &XOPA_MAP_SYM;
109 return decision->opcodeDecisions[insnContext].modRMDecisions[opcode].
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_i.h46 * decision - Authentication decision (OUT)
48 EapDecision decision; member in struct:eap_method_ret
295 EapDecision decision; member in struct:eap_sm
H A Deap.c48 static const char * eap_sm_decision_txt(EapDecision decision);
168 sm->decision = DECISION_FAIL;
379 * Get ignore, methodState, decision, allowNotifications, and
389 * (methodState, decision, allowNotifications) = m.process(eapReqData)
395 ret.decision = sm->decision;
402 "methodState=%s decision=%s eapRespData=%p",
405 eap_sm_decision_txt(ret.decision),
412 sm->decision = ret.decision;
1569 eap_sm_decision_txt(EapDecision decision) argument
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_i.h46 * decision - Authentication decision (OUT)
48 EapDecision decision; member in struct:eap_method_ret
295 EapDecision decision; member in struct:eap_sm
H A Deap.c48 static const char * eap_sm_decision_txt(EapDecision decision);
168 sm->decision = DECISION_FAIL;
379 * Get ignore, methodState, decision, allowNotifications, and
389 * (methodState, decision, allowNotifications) = m.process(eapReqData)
395 ret.decision = sm->decision;
402 "methodState=%s decision=%s eapRespData=%p",
405 eap_sm_decision_txt(ret.decision),
412 sm->decision = ret.decision;
1569 eap_sm_decision_txt(EapDecision decision) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_i.h46 * decision - Authentication decision (OUT)
48 EapDecision decision; member in struct:eap_method_ret
295 EapDecision decision; member in struct:eap_sm
H A Deap.c48 static const char * eap_sm_decision_txt(EapDecision decision);
168 sm->decision = DECISION_FAIL;
379 * Get ignore, methodState, decision, allowNotifications, and
389 * (methodState, decision, allowNotifications) = m.process(eapReqData)
395 ret.decision = sm->decision;
402 "methodState=%s decision=%s eapRespData=%p",
405 eap_sm_decision_txt(ret.decision),
412 sm->decision = ret.decision;
1569 eap_sm_decision_txt(EapDecision decision) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DProfiler.cs84 // Record a DecisionData for each decision we hit while parsing
171 descriptor.decision = decisionNumber;
182 d.decision = descriptor;
195 d.decision.maxk = Math.Max(d.decision.maxk, depth);
198 Console.WriteLine("exitDecision " + decisionNumber + " in " + d.decision.ruleName +
202 decisionEvents.Add(d); // done with decision; track all
226 d.decision.ruleName + "-" + d.decision.decision
706 public int decision; field in class:Antlr.Runtime.Debug.Profiler.DecisionDescriptor
722 public DecisionDescriptor decision; field in class:Antlr.Runtime.Debug.Profiler.DecisionEvent
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DProfiler.cs84 // Record a DecisionData for each decision we hit while parsing
184 descriptor.decision = decisionNumber;
195 d.decision = descriptor;
209 d.decision.maxk = Math.Max(d.decision.maxk, depth);
213 Console.WriteLine("exitDecision " + decisionNumber + " in " + d.decision.ruleName +
217 decisionEvents.Add(d); // done with decision; track all
245 d.decision.ruleName + "-" + d.decision.decision
769 public int decision; field in class:Antlr.Runtime.Debug.Profiler.DecisionDescriptor
786 public DecisionDescriptor decision; field in class:Antlr.Runtime.Debug.Profiler.DecisionEvent
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DProfiler.java86 public int decision; field in class:Profiler.DecisionDescriptor
94 public float avgk; // avg across all decision events
100 // all about a specific exec of a single decision
102 public DecisionDescriptor decision; field in class:Profiler.DecisionEvent
140 // Record a DecisionData for each decision we hit while parsing
227 descriptor.decision = decisionNumber;
238 d.decision = descriptor;
251 d.decision.maxk = Math.max(d.decision.maxk, depth);
253 if (dump) System.out.println("exitDecision "+decisionNumber+" in "+d.decision
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_i.h136 } decision; member in struct:eap_sm
/external/wpa_supplicant_8/src/eap_server/
H A Deap_i.h136 } decision; member in struct:eap_sm
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_i.h136 } decision; member in struct:eap_sm

Completed in 1123 milliseconds

12