HomeSort by relevance Sort by last modified time
    Searched refs:decision (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAConversionThread.java 50 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/
GrammarReport2.java 58 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+":");
Grammar.java 154 public static class Decision {
156 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
419 protected Vector<Decision> indexToDecision =
420 new Vector<Decision>(INITIAL_DECISION_LIST_SIZE);
    [all...]
  /external/llvm/utils/TableGen/
X86DisassemblerTables.h 57 /// 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) const
    [all...]
X86DisassemblerTables.cpp 304 /// 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.instructionIDs[index] != decision.instructionIDs[0x00])
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/experience_sampling_private/
experience_sampling.cc 77 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/
energy_endpointer.cc 56 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) {
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 = false
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableRow.cpp 85 AXObjectInclusion decision = defaultObjectInclusion(); local
86 if (decision == IncludeObject)
88 if (decision == IgnoreObject)
AXTableCell.cpp 56 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/
Profiler.cs 84 // 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 + " start index " + d.startIndex)
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/
Profiler.cs 84 // 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 + " start index " + d.startIndex)
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/
Profiler.java 86 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.ruleName
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 199 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)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
denoising.c 200 enum vp8_denoiser_decision decision = FILTER_BLOCK; local
284 decision = COPY_BLOCK;
287 if (decision == FILTER_BLOCK)
290 decision = vp8_denoiser_filter(&denoiser->yv12_mc_running_avg,
296 if (decision == COPY_BLOCK)
  /external/wpa_supplicant_8/src/eap_peer/
eap_peap.c 564 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 == DECISION_UNCOND_SUCC |
    [all...]
eap_otp.c 63 ret->decision = DECISION_COND_SUCC;
eap_ttls.c 296 (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 = DECISION_FAIL
    [all...]
eap_i.h 46 * decision - Authentication decision (OUT)
48 EapDecision decision; member in struct:eap_method_ret
295 EapDecision decision; member in struct:eap_sm
eap_vendor_test.c 128 ret->decision = DECISION_FAIL;
133 ret->decision = DECISION_UNCOND_SUCC;
eap.c 48 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;
    [all...]
eap_md5.c 73 ret->decision = DECISION_COND_SUCC;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Dbg.stg 69 False, # invalid decision
234 @blockBody.decision() ::= <<
238 <@super.decision()>
243 @ruleBlock.decision() ::= <<
247 <@super.decision()>
  /external/chromium_org/ui/keyboard/resources/
touch_fuzzing.js 51 * 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 test
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_blocking_page.cc 497 void SafeBrowsingBlockingPage::RecordUserDecision(Decision decision) {
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 == DONT_PROCEED)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageProcessor.java 214 boolean decision = Math.random() > 1.0 - threshold;
215 if ( decision ) {

Completed in 631 milliseconds

1 2 3 4 5