HomeSort by relevance Sort by last modified time
    Searched full:alternatives (Results 1 - 25 of 388) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
PatternGrammar.txt 12 Matcher: Alternatives ENDMARKER
14 Alternatives: Alternative ('|' Alternative)*
20 | '(' Alternatives ')' [Repeater]
21 | '[' Alternatives ']'
24 NegatedUnit: 'not' (STRING | NAME [Details] | '(' Alternatives ')')
28 Details: '<' Alternatives '>'
btm_utils.py 27 self.alternatives = []
41 node.alternatives.append(subp)
42 if len(node.alternatives) == len(node.children):
44 subp = [tuple(node.alternatives)]
45 node.alternatives = []
118 if node.type == syms.Alternatives :
124 #real alternatives
176 elif child.type == syms.Alternatives:
210 elif name_leaf.type == syms.Alternatives:
btm_matcher.py 56 #alternatives
57 #print("alternatives")
60 #add all alternatives, and add the rest of the pattern
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
PatternGrammar.txt 12 Matcher: Alternatives ENDMARKER
14 Alternatives: Alternative ('|' Alternative)*
20 | '(' Alternatives ')' [Repeater]
21 | '[' Alternatives ']'
24 NegatedUnit: 'not' (STRING | NAME [Details] | '(' Alternatives ')')
28 Details: '<' Alternatives '>'
btm_utils.py 27 self.alternatives = []
41 node.alternatives.append(subp)
42 if len(node.alternatives) == len(node.children):
44 subp = [tuple(node.alternatives)]
45 node.alternatives = []
118 if node.type == syms.Alternatives :
124 #real alternatives
176 elif child.type == syms.Alternatives:
210 elif name_leaf.type == syms.Alternatives:
btm_matcher.py 56 #alternatives
57 #print("alternatives")
60 #add all alternatives, and add the rest of the pattern
  /external/chromium_org/chrome/installer/linux/debian/
prerm 21 # Remove from the alternatives system
22 update-alternatives --remove x-www-browser /usr/bin/@@USR_BIN_SYMLINK_NAME@@
23 update-alternatives --remove gnome-www-browser /usr/bin/@@USR_BIN_SYMLINK_NAME@@
25 update-alternatives --remove google-chrome /usr/bin/@@USR_BIN_SYMLINK_NAME@@
postinst 11 # Add to the alternatives system
15 # update-alternatives --query x-www-browser):
47 update-alternatives --install /usr/bin/x-www-browser x-www-browser \
49 update-alternatives --install /usr/bin/gnome-www-browser gnome-www-browser \
52 update-alternatives --install /usr/bin/google-chrome google-chrome \
  /external/chromium_org/build/
install-build-deps-android.sh 24 # The temporary directory used to store output of update-java-alternatives
57 # thus are treated only as warnings. Any errors in updating java alternatives
60 if ! sudo update-java-alternatives -s java-1.7.0-openjdk-amd64 \
61 >& "${TEMPDIR}"/update-java-alternatives.out
64 if grep 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out >& \
68 echo 'WARNING: java-6-sun has no alternatives for the following plugins:'
69 grep 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out
72 if grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out \
76 echo 'ERRORS: Failed to update alternatives for java-6-sun:'
77 grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.ou
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionResult.cpp 36 SpeechRecognitionResult* SpeechRecognitionResult::create(const HeapVector<Member<SpeechRecognitionAlternative> >& alternatives, bool final)
38 return new SpeechRecognitionResult(alternatives, final);
49 SpeechRecognitionResult::SpeechRecognitionResult(const HeapVector<Member<SpeechRecognitionAlternative> >& alternatives, bool final)
51 , m_alternatives(alternatives)
  /external/srec/config/en.us/grammars/
boolean.grxml 4 Boolean yes/no grammar, alternatives for yes and no can be added
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_token_matcher.py 62 def score(self, alternatives):
63 return -sum([len(list(count)) ** 2 for _, count in itertools.groupby(sorted(alternatives))])
99 alternatives = list(set([c.identifier[pos] for c in cases]))
100 alternatives.sort()
113 self.write_selection(expression, alternatives, literal, response)
119 def write_selection(self, expression, alternatives, literal, response):
120 if len(alternatives) == 1:
121 self.output_file.write(u'if (LIKELY(%s == %s)) {\n' % (expression, literal(alternatives[0])))
122 response(alternatives[0])
124 elif len(alternatives) == 2
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebSpeechRecognitionResult.cpp 48 WebCore::HeapVector<WebCore::Member<WebCore::SpeechRecognitionAlternative> > alternatives(transcripts.size());
50 alternatives[i] = WebCore::SpeechRecognitionAlternative::create(transcripts[i], confidences[i]);
52 m_private = WebCore::SpeechRecognitionResult::create(alternatives, final);
  /external/proguard/docs/
sections.html 24 <li><a target="main" href="alternatives.html">Alternatives</a></li>
  /external/llvm/test/CodeGen/AArch64/
got-abuse.ll 7 ; load. Neither of these alternatives has the ELF relocations required to
  /external/wpa_supplicant_8/
COPYING 11 terms that allowed either of those license alternatives to be
  /libcore/luni/src/main/java/java/util/concurrent/
RejectedExecutionHandler.java 24 * <p>In the absence of other alternatives, the method may throw
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Choice.java 224 * an array of one or more ASN.1 type alternatives.
243 throw new IllegalArgumentException("ASN.1 choice type MUST have alternatives with distinct tags: " + getClass().getName()); // FIXME name
283 throw new IllegalArgumentException("ASN.1 choice type MUST have alternatives "
289 * Tests whether one of choice alternatives has the same identifier or not.
293 * @return - true if one of choice alternatives has the same identifier,
303 throw new ASN1Exception("Failed to decode ASN.1 choice type. No alternatives were found for " + getClass().getName());// FIXME message
  /external/chromium_org/v8/src/
ast.cc 715 return ListCaptureRegisters(alternatives());
768 ZoneList<RegExpTree*>* alternatives = this->alternatives(); local
769 for (int i = 0; i < alternatives->length(); i++) {
770 if (!alternatives->at(i)->IsAnchoredAtStart())
778 ZoneList<RegExpTree*>* alternatives = this->alternatives(); local
779 for (int i = 0; i < alternatives->length(); i++) {
780 if (!alternatives->at(i)->IsAnchoredAtEnd())
830 for (int i = 0; i < that->alternatives()->length(); i++)
    [all...]
  /external/chromium_org/ui/keyboard/resources/elements/
kb-altkey-data.js 55 * lists of alternatives.
96 // candiates in the alternatives popup.
  /prebuilts/tools/common/proguard/proguard4.7/docs/
sections.html 24 <li><a target="main" href="alternatives.html">Alternatives</a></li>
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t018llstar.g 19 * alternatives is not LL(k) for a fixed k. However, it is
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
simplec.g 12 * alternatives is not LL(k) for a fixed k. However, it is
  /external/antlr/antlr-3.4/runtime/Python/tests/
t018llstar.g 20 * alternatives is not LL(k) for a fixed k. However, it is
  /external/chromium_org/base/
safe_strerror_posix.h 15 // This file declares safe, portable alternatives to the POSIX strerror()

Completed in 751 milliseconds

1 2 3 4 5 6 7 8 91011>>