Searched refs:decision (Results 1 - 25 of 141) sorted by relevance

123456

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAConversionThread.java50 for (int decision=i; decision<=j; decision++) {
51 NFAState decisionStartState = grammar.getDecisionNFAStartState(decision);
53 grammar.createLookaheadDFA(decision,true);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarReport2.java58 for (int decision=1; decision<=numDec; decision++) {
59 Grammar.Decision d = g.getDecision(decision);
61 //System.err.println("no decision "+decision+" dfa for "+d.blockAST.toStringTree());
74 buf.append(" decision "+decision+":");
H A DGrammar.java156 public int decision; field in class:Grammar.Decision
302 * a global list of rules, token types, decision numbers, etc...
319 * decision DFA so it can display DFA.
335 /** Be able to assign a number to every decision in grammar;
376 /** At least one backtrack=true in rule or decision or grammar. */
415 /** Each subrule/rule is a decision point and we must track them so we
1016 /** For each decision in this grammar, compute a single DFA using the
1017 * NFA states associated with the decision. The DFA construction
1018 * determines whether or not the alternatives in the decision are
1051 for (int decision
1124 createLL_1_LookaheadDFA(int decision) argument
1299 createLookaheadDFA(int decision, boolean wackTempStructures) argument
2555 getUserMaxLookahead(int decision) argument
2576 getAutoBacktrackMode(int decision) argument
2745 getDecision(int decision) argument
2758 createDecision(int decision) argument
2780 getDecisionNFAStartState(int decision) argument
2788 getLookaheadDFA(int decision) argument
2796 getDecisionBlockAST(int decision) argument
2886 setLookaheadDFA(int decision, DFA lookaheadDFA) argument
2893 setDecisionNFA(int decision, NFAState state) argument
2898 setDecisionBlockAST(int decision, GrammarAST blockAST) argument
[all...]
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.h57 /// ModR/M decision. Compacts the ModR/M decision if possible. ModR/M
81 /// @param o2 - The output stream to print the decision structure to.
85 /// @param decision - The ModR/M decision to emit. This decision has 256
89 ModRMDecision &decision) const;
109 /// @param o2 - The output stream for the decision structure itself.
113 /// @param decision - The OpcodeDecision to emit along with its subsidiary
117 OpcodeDecision &decision) cons
[all...]
H A DX86DisassemblerTables.cpp304 /// getDecisionType - Determines whether a ModRM decision with 255 entries can
307 /// @param decision - The decision to be compacted.
308 /// @return - The compactest available representation for the decision.
309 static ModRMDecisionType getDecisionType(ModRMDecision &decision) {
316 if (decision.instructionIDs[index] != decision.instructionIDs[0])
320 (decision.instructionIDs[index] != decision.instructionIDs[0xc0]))
324 (decision
[all...]
/external/chromium_org/chrome/browser/extensions/api/experience_sampling_private/
H A Dexperience_sampling.cc77 api::experience_sampling_private::UserDecision decision;
78 decision.name = decision_name;
79 decision.learn_more = has_viewed_learn_more();
80 decision.details = has_viewed_details();
81 decision.time = base::Time::Now().ToJsTime();
85 args->Append(decision.ToValue().release());
/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/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)
/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/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/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_peap.c564 ret->decision = DECISION_FAIL;
567 ret->decision = DECISION_UNCOND_SUCC;
572 ret->decision = DECISION_FAIL;
577 ret->decision = DECISION_FAIL;
618 ret->decision = DECISION_FAIL;
624 ret->decision = iret.decision;
650 ret->decision = DECISION_FAIL;
706 ret->decision = DECISION_FAIL;
715 (iret.decision
[all...]
H A Deap_otp.c63 ret->decision = DECISION_COND_SUCC;
H A Deap_ttls.c296 (iret.decision == DECISION_UNCOND_SUCC ||
297 iret.decision == DECISION_COND_SUCC ||
298 iret.decision == DECISION_FAIL)) {
300 ret->decision = iret.decision;
588 ret->decision = DECISION_COND_SUCC;
642 ret->decision = DECISION_COND_SUCC;
718 ret->decision = DECISION_COND_SUCC;
786 ret->decision = DECISION_FAIL;
1068 ret->decision
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_peap.c564 ret->decision = DECISION_FAIL;
567 ret->decision = DECISION_UNCOND_SUCC;
572 ret->decision = DECISION_FAIL;
577 ret->decision = DECISION_FAIL;
618 ret->decision = DECISION_FAIL;
624 ret->decision = iret.decision;
650 ret->decision = DECISION_FAIL;
706 ret->decision = DECISION_FAIL;
715 (iret.decision
[all...]
H A Deap_otp.c63 ret->decision = DECISION_COND_SUCC;
H A Deap_ttls.c296 (iret.decision == DECISION_UNCOND_SUCC ||
297 iret.decision == DECISION_COND_SUCC ||
298 iret.decision == DECISION_FAIL)) {
300 ret->decision = iret.decision;
588 ret->decision = DECISION_COND_SUCC;
642 ret->decision = DECISION_COND_SUCC;
718 ret->decision = DECISION_COND_SUCC;
786 ret->decision = DECISION_FAIL;
1068 ret->decision
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_peap.c564 ret->decision = DECISION_FAIL;
567 ret->decision = DECISION_UNCOND_SUCC;
572 ret->decision = DECISION_FAIL;
577 ret->decision = DECISION_FAIL;
618 ret->decision = DECISION_FAIL;
624 ret->decision = iret.decision;
650 ret->decision = DECISION_FAIL;
706 ret->decision = DECISION_FAIL;
715 (iret.decision
[all...]
H A Deap_otp.c63 ret->decision = DECISION_COND_SUCC;
H A Deap_ttls.c296 (iret.decision == DECISION_UNCOND_SUCC ||
297 iret.decision == DECISION_COND_SUCC ||
298 iret.decision == DECISION_FAIL)) {
300 ret->decision = iret.decision;
588 ret->decision = DECISION_COND_SUCC;
642 ret->decision = DECISION_COND_SUCC;
718 ret->decision = DECISION_COND_SUCC;
786 ret->decision = DECISION_FAIL;
1068 ret->decision
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DDbg.stg69 False, # invalid decision
234 @blockBody.decision() ::= <<
238 <@super.decision()>
243 @ruleBlock.decision() ::= <<
247 <@super.decision()>
/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...]

Completed in 5828 milliseconds

123456