/external/srec/doc/logs/srec/ |
out_SHIP_set_get_param.txt | 13 Get Parameter : SREC.Recognizer.utterance_timeout : 400 14 Get Parameter : SREC.Recognizer.utterance_timeout : 100 15 Get Parameter : CREC.Recognizer.terminal_timeout : 30 16 Get Parameter : CREC.Recognizer.terminal_timeout : 100 17 Get Parameter : CREC.Recognizer.optional_terminal_timeout : 45 18 Get Parameter : CREC.Recognizer.optional_terminal_timeout : 100 19 Get Parameter : CREC.Recognizer.non_terminal_timeout : 90 20 Get Parameter : CREC.Recognizer.non_terminal_timeout : 100 21 Get Parameter : CREC.Recognizer.eou_threshold : 120 22 Get Parameter : CREC.Recognizer.eou_threshold : 10 [all...] |
/packages/apps/Email/tests/src/com/android/email/mail/ |
PackedStringTests.java | 41 assertEquals("val1", ps.get("tag1")); 42 assertEquals("val2", ps.get("tag2")); 43 assertEquals("val3", ps.get("tag3")); 44 assertEquals("val4", ps.get("tag4")); 45 assertNull(ps.get("tag100")); 59 assertEquals("value1", b2.get("tag1")); 60 assertEquals("value2", b2.get("tag2")); 61 assertEquals("value3", b2.get("tag3")); 62 assertEquals("value4", b2.get("tag4")); 63 assertNull(b2.get("tag100")) [all...] |
/external/webkit/LayoutTests/http/tests/appcache/ |
access-via-redirect-expected.txt | 1 This tests that the start of redirect chain doesn't get into an application cache if the end of the chain has a manifest.
|
local-content-expected.txt | 2 Test that documents loaded from application cache don't get access to local resources accidentally.
|
/external/kernel-headers/original/asm-x86/ |
sockios.h | 10 #define SIOCGSTAMP 0x8906 /* Get stamp (timeval) */ 11 #define SIOCGSTAMPNS 0x8907 /* Get stamp (timespec) */
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
HanziToPinyinTest.java | 44 ArrayList<Token> tokens = HanziToPinyin.getInstance().get(ONE_HANZI); 46 assertEquals(tokens.get(0).type, Token.PINYIN); 47 assertTrue(tokens.get(0).target.equalsIgnoreCase("DU")); 49 tokens = HanziToPinyin.getInstance().get(TWO_HANZI); 51 assertEquals(tokens.get(0).type, Token.PINYIN); 52 assertEquals(tokens.get(1).type, Token.PINYIN); 53 assertTrue(tokens.get(0).target.equalsIgnoreCase("DU")); 54 assertTrue(tokens.get(1).target.equalsIgnoreCase("JUAN")); 56 tokens = HanziToPinyin.getInstance().get(ASSIC); 58 assertEquals(tokens.get(0).type, Token.LATIN) [all...] |
/frameworks/base/tests/CoreTests/android/core/ |
NIOTest.java | 131 assertEquals((byte) 0xA7, b.get(7)); 133 b.get(12); 139 b.get(-10); 147 assertEquals((byte) 0xA0, b.get()); 148 assertEquals((byte) 0xA1, b.get()); 149 assertEquals((byte) 0xA2, b.get()); 150 assertEquals((byte) 0xA3, b.get()); 151 assertEquals((byte) 0xA4, b.get()); 152 assertEquals((byte) 0xA5, b.get()); 153 assertEquals((byte) 0xA6, b.get()); [all...] |
/external/webkit/JavaScriptCore/runtime/ |
Protect.h | 75 T* get() const { return m_ptr; } function in class:JSC::ProtectedPtr 99 JSValue get() const { return m_value; } function in class:JSC::ProtectedJSValue 120 : m_ptr(o.get()) 131 : m_ptr(o.get()) 160 : m_value(o.get()) 171 : m_value(o.get()) 193 template <class T> inline bool operator==(const ProtectedPtr<T>& a, const ProtectedPtr<T>& b) { return a.get() == b.get(); } 194 template <class T> inline bool operator==(const ProtectedPtr<T>& a, const T* b) { return a.get() == b; } 195 template <class T> inline bool operator==(const T* a, const ProtectedPtr<T>& b) { return a == b.get(); } [all...] |
WeakGCPtr.h | 34 // A smart pointer whose get() function returns 0 for cells awaiting destruction. 40 T* get() const function in class:JSC::WeakGCPtr 53 T& operator*() const { return *get(); } 54 T* operator->() const { return get(); } 56 bool operator!() const { return !get(); } 63 operator UnspecifiedBoolType() const { return get() ? &WeakGCPtr::m_ptr : 0; } 87 return a.get() == b.get(); 92 return a.get() == b; 97 return a == b.get(); [all...] |
/system/core/toolbox/ |
sendevent.c | 20 #define EVIOCGVERSION _IOR('E', 0x01, int) /* get driver version */ 21 #define EVIOCGID _IOR('E', 0x02, struct input_id) /* get device ID */ 22 #define EVIOCGKEYCODE _IOR('E', 0x04, int[2]) /* get keycode */ 25 #define EVIOCGNAME(len) _IOC(_IOC_READ, 'E', 0x06, len) /* get device name */ 26 #define EVIOCGPHYS(len) _IOC(_IOC_READ, 'E', 0x07, len) /* get physical location */ 27 #define EVIOCGUNIQ(len) _IOC(_IOC_READ, 'E', 0x08, len) /* get unique identifier */ 29 #define EVIOCGKEY(len) _IOC(_IOC_READ, 'E', 0x18, len) /* get global keystate */ 30 #define EVIOCGLED(len) _IOC(_IOC_READ, 'E', 0x19, len) /* get all LEDs */ 31 #define EVIOCGSND(len) _IOC(_IOC_READ, 'E', 0x1a, len) /* get all sounds status */ 32 #define EVIOCGSW(len) _IOC(_IOC_READ, 'E', 0x1b, len) /* get all switch states * [all...] |
/dalvik/libcore/luni/src/test/java/tests/api/java/io/ |
ObjectInputStreamGetFieldTest.java | 38 * {@code ObjectInputStream.GetField}. The only way to get an implementation is 80 notes = "Verifies the get(String, X) methods with valid arguments.", 81 method = "get", 86 notes = "Verifies the get(String, X) methods with valid arguments.", 87 method = "get", 92 notes = "Verifies the get(String, X) methods with valid arguments.", 93 method = "get", 98 notes = "Verifies the get(String, X) methods with valid arguments.", 99 method = "get", 104 notes = "Verifies the get(String, X) methods with valid arguments." [all...] |
/external/webkit/WebCore/platform/network/cf/ |
ResourceErrorCF.cpp | 74 CFStringRef domain = CFErrorGetDomain(m_platformError.get()); 86 m_errorCode = CFErrorGetCode(m_platformError.get()); 88 RetainPtr<CFDictionaryRef> userInfo(AdoptCF, CFErrorCopyUserInfo(m_platformError.get())); 89 if (userInfo.get()) { 90 CFStringRef failingURLString = (CFStringRef) CFDictionaryGetValue(userInfo.get(), failingURLStringKey); 94 CFURLRef failingURL = (CFURLRef) CFDictionaryGetValue(userInfo.get(), failingURLKey); 97 if (absoluteURLRef.get()) { 98 failingURLString = CFURLGetString(absoluteURLRef.get()); 103 m_localizedDescription = (CFStringRef) CFDictionaryGetValue(userInfo.get(), kCFErrorLocalizedDescriptionKey); 126 CFDictionarySetValue(userInfo.get(), kCFErrorLocalizedDescriptionKey, localizedDescriptionString.get()) [all...] |
SocketStreamHandleCFNet.cpp | 91 CFReadStreamSetClient(m_readStream.get(), static_cast<CFOptionFlags>(-1), readStreamCallback, &clientContext); 92 CFWriteStreamSetClient(m_writeStream.get(), static_cast<CFOptionFlags>(-1), writeStreamCallback, &clientContext); 95 CFReadStreamScheduleWithRunLoop(m_readStream.get(), loaderRunLoop(), kCFRunLoopDefaultMode); 96 CFWriteStreamScheduleWithRunLoop(m_writeStream.get(), loaderRunLoop(), kCFRunLoopDefaultMode); 98 CFReadStreamScheduleWithRunLoop(m_readStream.get(), CFRunLoopGetCurrent(), kCFRunLoopCommonModes); 99 CFWriteStreamScheduleWithRunLoop(m_writeStream.get(), CFRunLoopGetCurrent(), kCFRunLoopCommonModes); 102 CFReadStreamOpen(m_readStream.get()); 103 CFWriteStreamOpen(m_writeStream.get()); 147 m_pacRunLoopSource.adoptCF(CFNetworkExecuteProxyAutoConfigurationURL(pacFileURL, m_httpsURL.get(), pacExecutionCallback, &clientContext)); 149 CFRunLoopAddSource(loaderRunLoop(), m_pacRunLoopSource.get(), kCFRunLoopDefaultMode) [all...] |
ResourceRequestCFNet.cpp | 78 return m_cfRequest.get(); 85 CFIndex oldHeaderFieldCount = CFDictionaryGetCount(oldHeaderFields.get()); 88 CFDictionaryGetKeysAndValues(oldHeaderFields.get(), reinterpret_cast<const void**>(&oldHeaderFieldNames[0]), 0); 110 cfRequest = CFURLRequestCreateMutableCopy(0, m_cfRequest.get()); 111 CFURLRequestSetURL(cfRequest, url.get()); 112 CFURLRequestSetMainDocumentURL(cfRequest, firstPartyForCookies.get()); 116 cfRequest = CFURLRequestCreateMutable(0, url.get(), (CFURLRequestCachePolicy)cachePolicy(), timeoutInterval(), firstPartyForCookies.get()); 120 CFURLRequestSetHTTPRequestMethod(cfRequest, requestMethod.get()); 130 CFStringEncoding encoding = CFStringConvertIANACharSetNameToEncoding(encodingName.get()); [all...] |
/external/webkit/WebCore/platform/network/mac/ |
NetworkStateNotifierMac.cpp | 47 RetainPtr<CFPropertyListRef> propertyList(AdoptCF, SCDynamicStoreCopyValue(m_store.get(), str.get())); 52 if (CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID()) 55 CFArrayRef netInterfaces = (CFArrayRef)CFDictionaryGetValue((CFDictionaryRef)propertyList.get(), kSCDynamicStorePropNetInterfaces); 70 RetainPtr<CFArrayRef> keyList(AdoptCF, SCDynamicStoreCopyKeyList(m_store.get(), key.get())); 72 if (keyList && CFArrayGetCount(keyList.get())) { 112 RetainPtr<CFRunLoopSourceRef> configSource = SCDynamicStoreCreateRunLoopSource(0, m_store.get(), 0); 116 CFRunLoopAddSource(CFRunLoopGetMain(), configSource.get(), kCFRunLoopCommonModes); 125 CFArrayAppendValue(keys.get(), key.get()) [all...] |
/external/elfutils/tests/ |
ChangeLog | 13 * get-aranges.c: Rewrite to use libdw. 14 * Makefile.am: Reenable get-aranges test. 18 * get-lines.c: New file. 19 * get-files.c: Adjust for libdw. 20 * run-get-files.sh: Adjust expected result. 21 * run-get-lines.sh: Likewise. 22 * Makefile.am: Run get-lines test. Don't run get-aranges and 23 get-ciefde test for now.
|
/external/stlport/test/unit/ |
reference_wrapper_test.cpp | 39 CPPUNIT_CHECK( r1.get() == 1 ); 43 CPPUNIT_CHECK( r1.get() == 2 ); 47 CPPUNIT_CHECK( r1.get() == 2 ); 51 CPPUNIT_CHECK( r1.get() == 4 ); 53 r1.get() = 5; 70 CPPUNIT_CHECK( r1.get() == 1 ); 74 CPPUNIT_CHECK( r1.get() == 2 ); 78 CPPUNIT_CHECK( r1.get() == 2 ); 82 CPPUNIT_CHECK( r1.get() == 4 );
|
/external/webkit/WebKit/win/ |
WebCache.cpp | 117 CFDictionaryAddValue(dictionary.get(), imagesKey, value.get()); 120 CFDictionaryAddValue(dictionary.get(), stylesheetsKey, value.get()); 127 CFDictionaryAddValue(dictionary.get(), xslKey, value.get()); 130 CFDictionaryAddValue(dictionary.get(), scriptsKey, value.get()); 133 propBag->setDictionary(dictionary.get()); 139 CFDictionaryAddValue(dictionary.get(), imagesKey, value.get()) [all...] |
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/ref/ |
PhantomReferenceTest.java | 41 * @tests java.lang.ref.PhantomReference#get() 46 method = "get", 53 assertNull("get() should return null.", pr.get()); 55 assertNull("get() should return null.", pr.get()); 57 assertNull("get() should return null.", pr.get()); 66 method = "get", 105 assertNull("get() should return null.", tprs[0].get()) [all...] |
/cts/tests/tests/util/src/android/util/cts/ |
EventLogTest.java | 41 assertEquals(ANSWER_TAG, events.get(0).getTag()); 42 assertEquals(12345, events.get(0).getData()); 43 assertEquals(23456L, events.get(1).getData()); 44 assertEquals("Test", events.get(2).getData()); 46 Object[] arr = (Object[]) events.get(3).getData(); 75 String val0 = (String) events.get(0).getData(); 79 Object[] arr1 = (Object[]) events.get(1).getData(); 85 Object[] arr2 = (Object[]) events.get(2).getData(); 91 Object[] arr3 = (Object[]) events.get(3).getData(); 97 Object[] arr4 = (Object[]) events.get(4).getData() [all...] |
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
AtomicBooleanTest.java | 28 assertEquals(true,ai.get()); 36 assertEquals(false,ai.get()); 40 * get returns the last value set 44 assertEquals(true,ai.get()); 46 assertEquals(false,ai.get()); 48 assertEquals(true,ai.get()); 58 assertEquals(false,ai.get()); 60 assertEquals(false,ai.get()); 62 assertFalse((ai.get())); 64 assertEquals(true,ai.get()); [all...] |
/external/dbus/test/data/valid-service-files/ |
debug-shell-echo-success.service | 3 Exec=/home/quinticent/devel/dbus-branch/dbus_1_0/test/test-shell-service -test "that" 'we get' back --what "we put in"
|
debug-shell-echo-success.service.in | 3 Exec=@TEST_SHELL_SERVICE_BINARY@ -test "that" 'we get' back --what "we put in"
|
/external/kernel-headers/original/asm-arm/ |
sockios.h | 10 #define SIOCGSTAMP 0x8906 /* Get stamp */
|
/external/tcpdump/ |
TODO | 4 4. get PLATFORMS filled in
|