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

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionResult.cpp 36 PassRefPtr<SpeechRecognitionResult> SpeechRecognitionResult::create(const Vector<RefPtr<SpeechRecognitionAlternative> >& alternatives, bool final)
38 return adoptRef(new SpeechRecognitionResult(alternatives, final));
49 SpeechRecognitionResult::SpeechRecognitionResult(const Vector<RefPtr<SpeechRecognitionAlternative> >& alternatives, bool final)
50 : m_alternatives(alternatives)
  /external/chromium_org/chrome/installer/linux/debian/
prerm 19 # Remove from the alternatives system
20 update-alternatives --remove x-www-browser /usr/bin/@@PACKAGE@@
21 update-alternatives --remove gnome-www-browser /usr/bin/@@PACKAGE@@
postinst 9 # Add to the alternatives system
13 # update-alternatives --query x-www-browser):
45 update-alternatives --install /usr/bin/x-www-browser x-www-browser \
47 update-alternatives --install /usr/bin/gnome-www-browser gnome-www-browser \
  /external/chromium_org/build/
install-build-deps-android.sh 26 # The temporary directory used to store output of update-java-alternatives
79 # Any errors in updating java alternatives which are not '*-javaplugin.so'
81 if ! sudo update-java-alternatives -s java-6-sun \
82 >& "${TEMPDIR}"/update-java-alternatives.out
85 if grep 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out >& \
89 echo 'WARNING: java-6-sun has no alternatives for the following plugins:'
90 grep 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out
93 if grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out \
97 echo 'ERRORS: Failed to update alternatives for java-6-sun:'
98 grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.ou
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebSpeechRecognitionResult.cpp 45 Vector<RefPtr<WebCore::SpeechRecognitionAlternative> > alternatives(transcripts.size());
47 alternatives[i] = WebCore::SpeechRecognitionAlternative::create(transcripts[i], confidences[i]);
49 m_private = WebCore::SpeechRecognitionResult::create(alternatives, final);
  /external/chromium_org/third_party/WebKit/Source/core/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/v8/src/
ast.cc 693 return ListCaptureRegisters(alternatives());
746 ZoneList<RegExpTree*>* alternatives = this->alternatives(); local
747 for (int i = 0; i < alternatives->length(); i++) {
748 if (!alternatives->at(i)->IsAnchoredAtStart())
756 ZoneList<RegExpTree*>* alternatives = this->alternatives(); local
757 for (int i = 0; i < alternatives->length(); i++) {
758 if (!alternatives->at(i)->IsAnchoredAtEnd())
806 for (int i = 0; i < that->alternatives()->length(); i++)
    [all...]
jsregexp.cc 3724 ZoneList<RegExpTree*>* alternatives = this->alternatives(); local
5149 ZoneList<GuardedAlternative>* alternatives = node->alternatives(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
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:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
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:
  /external/chromium_org/v8/src/
ast.cc 771 return ListCaptureRegisters(alternatives());
824 ZoneList<RegExpTree*>* alternatives = this->alternatives(); local
825 for (int i = 0; i < alternatives->length(); i++) {
826 if (!alternatives->at(i)->IsAnchoredAtStart())
834 ZoneList<RegExpTree*>* alternatives = this->alternatives(); local
835 for (int i = 0; i < alternatives->length(); i++) {
836 if (!alternatives->at(i)->IsAnchoredAtEnd())
885 for (int i = 0; i < that->alternatives()->length(); i++)
    [all...]
jsregexp.cc 4812 ZoneList<RegExpTree*>* alternatives = this->alternatives(); local
5902 ZoneList<GuardedAlternative>* alternatives = node->alternatives(); local
    [all...]
jsregexp.h 1057 ZoneList<GuardedAlternative>* alternatives() { return alternatives_; } function in class:v8::internal::ChoiceNode
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFix.java 200 List<LintFix> alternatives = fix.getAllFixes(); local
201 if (alternatives != null) {
202 return alternatives;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
en.stg 237 Decision can match input such as "<input>" using multiple alternatives:
240 Decision can match input such as "<input>" using multiple alternatives: <conflictingAlts; separator=", ">
250 The following alternatives can never be matched: <alts; separator=","><\n>
261 ANTLR could not analyze this decision in rule <enclosingRule>; often this is because of recursive rule references visible from the left edge of alternatives. ANTLR will re-analyze the decision with a fixed lookahead of k=1. Consider using "options {k=1;}" for that decision and possibly adding a syntactic predicate.
279 Decision can match input such as "<input>" using multiple alternatives:
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
ll-star.rb 24 * alternatives is not LL(k) for a fixed k. However, it is
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
profile-mode.rb 19 * alternatives is not LL(k) for a fixed k. However, it is
  /external/chromium_org/v8/test/webkit/
regexp-alternatives.js 25 'Test regular expression processing with alternatives.'
regexp-zero-length-alternatives.js 25 'Test regular expression processing with alternatives that match consuming no characters'
247 // Non-capturing two possibly empty alternatives greedy '*'
254 // Non-capturing two possibly empty non-greedy alternatives non-greedy '*'
263 // Three possibly empty alternatives with greedy +
  /external/icu4c/i18n/
identifier_info.cpp 284 ScriptSet *alternatives = static_cast<ScriptSet *>(hashEl->key.pointer); local
285 if (!container.intersects(*alternatives)) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
webbrowser.py 31 alternatives = [using]
33 alternatives = _tryorder
34 for browser in alternatives:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
webbrowser.py 31 alternatives = [using]
33 alternatives = _tryorder
34 for browser in alternatives:
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelineHandler.java 258 int alternatives = matches.size(); local
259 if (alternatives == 0) {
261 } else if (alternatives == 1) {
265 assert alternatives > 1; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
error.rb 385 the input does not suit any of the possible recognition alternatives.
391 block) that has multiple alternatives, the recognizer must decide which one of
dfa.rb 40 alternatives in a rule based upon lookahead symbols from an input stream.

Completed in 671 milliseconds

1 2