Searched defs:lang (Results 51 - 75 of 278) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DPlatformSpeechSynthesisVoice.cpp31 PassRefPtr<PlatformSpeechSynthesisVoice> PlatformSpeechSynthesisVoice::create(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault) argument
33 return adoptRef(new PlatformSpeechSynthesisVoice(voiceURI, name, lang, localService, isDefault));
41 PlatformSpeechSynthesisVoice::PlatformSpeechSynthesisVoice(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault) argument
44 , m_lang(lang)
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DAbstractMethodErrorTest.java18 package org.apache.harmony.luni.tests.java.lang;
25 * @tests {@link java.lang.AbstractMethodError#AbstractMethodError()}
28 // Test for method java.lang.AbstractMethodError()
35 * @tests {@link java.lang.AbstractMethodError#AbstractMethodError(String)}
38 // Test for method java.lang.AbstractMethodError(java.lang.String)
H A DArrayIndexOutOfBoundsExceptionTest.java18 package org.apache.harmony.luni.tests.java.lang;
25 * @tests java.lang.ArrayIndexOutOfBoundsException#ArrayIndexOutOfBoundsException(int)
36 * @tests java.lang.ArrayIndexOutOfBoundsException#ArrayIndexOutOfBoundsException()
45 * @tests java.lang.ArrayIndexOutOfBoundsException#ArrayIndexOutOfBoundsException(java.lang.String)
H A DAssertionErrorTest.java18 package org.apache.harmony.luni.tests.java.lang;
H A DCharacter_UnicodeBlockTest.java17 package org.apache.harmony.luni.tests.java.lang;
H A DClassNotFoundExceptionTest.java18 package org.apache.harmony.luni.tests.java.lang;
31 * @tests java.lang.ClassNotFoundException#ClassNotFoundException()
41 * @tests java.lang.ClassNotFoundException#ClassNotFoundException(java.lang.String)
50 * @tests java.lang.ClassNotFoundException#ClassNotFoundException(java.lang.String, java.lang.Throwable)
H A DCompilerTest.java18 package org.apache.harmony.luni.tests.java.lang;
25 * @tests java.lang.Compiler#command(java.lang.Object)
32 * @tests java.lang.Compiler#compileClass(java.lang.Class)
41 * @tests java.lang.Compiler#compileClasses(java.lang.String)
50 * @tests java.lang.Compiler#disable()
58 * @tests java.lang.Compiler#enable()
H A DEnumConstantNotPresentExceptionTest.java17 package org.apache.harmony.luni.tests.java.lang;
28 * @test java.lang.EnumConstantNotPresentException#EnumConstantNotPresentException(Class<?
40 * @test java.lang.EnumConstantNotPresentException#enumType()
48 * @test java.lang.EnumConstantNotPresentException#constantName()
H A DExceptionInInitializerErrorTest.java18 package org.apache.harmony.luni.tests.java.lang;
23 * @tests java.lang.ExceptionInInitializerError#ExceptionInInitializerError()
33 * @tests java.lang.ExceptionInInitializerError#ExceptionInInitializerError(java.lang.String)
42 * @tests java.lang.ExceptionInInitializerExceptionInInitializerError#ExceptionInInitializerError(java.lang.Throwable)
H A DIllegalArgumentExceptionTest.java18 package org.apache.harmony.luni.tests.java.lang;
27 * @tests java.lang.IllegalArgumentException#IllegalArgumentException()
37 * @tests java.lang.IllegalArgumentException#IllegalArgumentException(java.lang.String)
46 * @tests {@link java.lang.IllegalArgumentException#IllegalArgumentException(Throwable)}
63 * @tests java.lang.IllegalArgumentException#IllegalArgumentException(String,Throwable)
H A DIllegalStateExceptionTest.java18 package org.apache.harmony.luni.tests.java.lang;
27 * @tests java.lang.IllegalStateException#IllegalStateException()
37 * @tests java.lang.IllegalStateException#IllegalStateException(java.lang.String)
46 * @tests {@link java.land.IllegalStateException#IllIllegalStateException(java.lang.Throwable)}
63 * @tests {@link java.land.IllegalStateException#IllIllegalStateException(java.lang.String, java.lang.Throwable)}
H A DProcessTest.java18 package org.apache.harmony.luni.tests.java.lang;
29 * @tests java.lang.Process#getInputStream()
68 * @tests java.lang.Process#getOutputStream()
H A DRuntimeExceptionTest.java18 package org.apache.harmony.luni.tests.java.lang;
25 * @tests java.lang.RuntimeException#RuntimeException()
35 * @tests java.lang.RuntimeException#RuntimeException(java.lang.String)
44 * @tests {@link java.lang.RuntimeException#RuntimeException(Throwable)}
H A DSecurityExceptionTest.java18 package org.apache.harmony.luni.tests.java.lang;
27 * @tests java.lang.SecurityException#SecurityException()
37 * @tests java.lang.SecurityException#SecurityException(java.lang.String)
46 * @tests java.lang.SecurityException#SecurityException(String, Throwable)
57 * @tests java.lang.SecurityException#SecurityException(Throwable)
H A DThreadLocalTest.java18 package org.apache.harmony.luni.tests.java.lang;
25 * @tests java.lang.ThreadLocal#ThreadLocal()
32 * @tests java.lang.ThreadLocal#remove()
50 * @tests java.lang.ThreadLocal#get()
53 // Test for method java.lang.Object java.lang.ThreadLocal.get()
110 * @tests java.lang.ThreadLocal#set(java.lang.Object)
113 // Test for method void java.lang.ThreadLocal.set(java.lang
[all...]
H A DUnsupportedOperationExceptionTest.java18 package org.apache.harmony.luni.tests.java.lang;
27 * @tests java.lang.UnsupportedOperationException#UnsupportedOperationException()
37 * @tests java.lang.UnsupportedOperationException#UnsupportedOperationException(java.lang.String)
46 * @tests {@link java.land.UnsupportedOperationException#UnsupportedOperationException(java.lang.Throwable)}
64 * @tests {@link java.land.UnsupportedOperationException#UnsupportedOperationException(java.lang.String, java.lang.Throwable)}
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/
H A DPhantomReferenceTest.java18 package org.apache.harmony.luni.tests.java.lang.ref;
20 import java.lang.ref.PhantomReference;
21 import java.lang.ref.ReferenceQueue;
31 * @tests java.lang.ref.PhantomReference#get()
41 * @tests java.lang.ref.PhantomReference#PhantomReference(java.lang.Object,
42 * java.lang.ref.ReferenceQueue)
H A DSoftReferenceTest.java17 package org.apache.harmony.luni.tests.java.lang.ref;
19 import java.lang.ref.ReferenceQueue;
20 import java.lang.ref.SoftReference;
30 * @tests java.lang.ref.SoftReference#SoftReference(java.lang.Object,
31 * java.lang.ref.ReferenceQueue)
50 * @tests java.lang.ref.SoftReference#SoftReference(java.lang.Object)
60 * @tests java.lang.ref.SoftReference#get()
H A DWeakReferenceTest.java18 package org.apache.harmony.luni.tests.java.lang.ref;
20 import java.lang.ref.ReferenceQueue;
21 import java.lang.ref.WeakReference;
31 * @tests java.lang.ref.WeakReference#WeakReference(java.lang.Object,
32 * java.lang.ref.ReferenceQueue)
55 * @tests java.lang.ref.WeakReference#WeakReference(java.lang.Object)
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
H A DUndeclaredThrowableExceptionTest.java17 package org.apache.harmony.luni.tests.java.lang.reflect;
19 import java.lang.reflect.UndeclaredThrowableException;
26 * @tests {@link java.lang.reflect.UndeclaredThrowableException#UndeclaredThrowableException(java.lang.Throwable)}
38 * @tests {@link java.lang.reflect.UndeclaredThrowableException#UndeclaredThrowableException(java.lang.Throwable, java.lang.String)}
50 * @tests {@link java.lang.reflect.UndeclaredThrowableException#getUndeclaredThrowable()}
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_manager_impl_ll.h21 explicit TwoLetterLanguageCode(const char* lang) argument
22 : val(base::ToLowerASCII(lang[0]) * 256 + base::ToLowerASCII(lang[1])) {}
36 : lang(l), index(i) {}
39 return lang < r.lang;
41 bool operator<(const TwoLetterLanguageCode& r) const { return lang < r; }
43 TwoLetterLanguageCode lang; member in class:chromeos::input_method::TwoLetterLanguageCode2KBDList
57 const std::string& lang) const;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdemo/
H A Dttsdemo.js10 var lang; variable
21 lang = document.getElementById('lang');
103 if (lang.value) {
104 options.lang = lang.value;
/external/chromium_org/chrome/common/
H A Dtts_utterance_request.h19 std::string lang; member in struct:TtsUtteranceRequest
32 std::string lang; member in struct:TtsVoice
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionController.h39 void start(SpeechRecognition* recognition, const SpeechGrammarList* grammars, const String& lang, bool continuous, bool interimResults, unsigned long maxAlternatives) argument
41 m_client->start(recognition, grammars, lang, continuous, interimResults, maxAlternatives);
H A DSpeechSynthesisVoice.h44 const String& lang() const { return m_platformVoice->lang(); } function in class:WebCore::SpeechSynthesisVoice

Completed in 456 milliseconds

1234567891011>>