/external/webkit/WebCore/editing/ |
DeleteButtonController.h | 45 HTMLElement* target() const { return m_target.get(); } 46 HTMLElement* containerElement() const { return m_containerElement.get(); }
|
RemoveFormatCommand.cpp | 54 String string = plainText(frame->selection()->selection().toNormalizedRange().get()); 56 // Get the default style for this editable root, it's the style that we'll give the 78 frame->setTypingStyle(defaultStyle.get());
|
/external/webkit/WebCore/platform/graphics/filters/ |
FEBlend.h | 51 virtual FloatRect uniteChildEffectSubregions(Filter* filter) { return calculateUnionOfChildEffectSubregions(filter, m_in.get(), m_in2.get()); }
|
/external/webkit/WebCore/platform/graphics/opentype/ |
OpenTypeSanitizer.cpp | 58 ots::MemoryStream output(transcodeRawBuffer.get(), m_buffer->size() + padLen); 63 return SharedBuffer::create(transcodeRawBuffer.get(), transcodeLen);
|
/external/webkit/WebCore/platform/haiku/ |
CookieJarHaiku.cpp | 52 return cookieJar.get(url.string()); 58 return cookieJar.get(url.string());
|
/external/webkit/WebCore/platform/network/cf/ |
AuthenticationChallenge.h | 42 AuthenticationClient* authenticationClient() const { return m_authenticationClient.get(); } 45 CFURLAuthChallengeRef cfURLAuthChallengeRef() const { return m_cfChallenge.get(); }
|
/external/webkit/WebCore/platform/network/curl/ |
CookieJarCurl.cpp | 39 return cookieJar.get(url.string()); 45 return cookieJar.get(url.string());
|
/external/webkit/WebCore/platform/network/mac/ |
AuthenticationChallenge.h | 48 id sender() const { return m_sender.get(); } 49 NSURLAuthenticationChallenge *nsURLAuthenticationChallenge() const { return m_nsChallenge.get(); } 57 RetainPtr<id> m_sender; // Always the same as [m_macChallenge.get() sender], cached here for performance.
|
/external/webkit/WebCore/rendering/ |
RenderLayerBacking.h | 66 GraphicsLayer* graphicsLayer() const { return m_graphicsLayer.get(); } 70 GraphicsLayer* clippingLayer() const { return m_clippingLayer.get(); } 72 // Layer to get clipped by ancestor 74 GraphicsLayer* ancestorClippingLayer() const { return m_ancestorClippingLayer.get(); } 77 GraphicsLayer* foregroundLayer() const { return m_foregroundLayer.get(); } 81 GraphicsLayer* parentForSublayers() const { return m_clippingLayer ? m_clippingLayer.get() : m_graphicsLayer.get(); } 82 GraphicsLayer* childForSuperlayers() const { return m_ancestorClippingLayer ? m_ancestorClippingLayer.get() : m_graphicsLayer.get(); }
|
/external/webkit/WebCore/rendering/style/ |
StyleCachedImage.h | 37 virtual WrappedImagePtr data() const { return m_image.get(); } 43 CachedImage* cachedImage() const { return m_image.get(); }
|
/external/webkit/WebKit/chromium/src/ |
ApplicationCacheHostInternal.h | 57 if (innerHost && innerHost->m_internal.get()) 58 return innerHost->m_internal->m_outerHost.get();
|
/frameworks/base/core/java/android/util/ |
EventLogTags.java | 48 public Description get(String name) { return null; } method in class:EventLogTags 50 public Description get(int tag) { return null; } method in class:EventLogTags
|
/frameworks/base/media/libstagefright/ |
OMXClient.cpp | 36 CHECK(service.get() != NULL); 39 CHECK(mOMX.get() != NULL);
|
/frameworks/base/tests/CoreTests/android/core/ |
ArrayListTest.java | 45 assertEquals(1, ((Integer) array.get(0)).intValue()); 46 assertEquals(2, ((Integer) array.get(1)).intValue()); 47 assertEquals(0, ((Integer) array.get(2)).intValue()); 48 assertEquals(3, ((Integer) array.get(3)).intValue()); 49 assertEquals(1, ((Integer) array.get(4)).intValue()); 64 assertEquals(1, ((Integer) array.get(0)).intValue()); 65 assertEquals(3, ((Integer) array.get(1)).intValue()); 66 assertEquals(1, ((Integer) array.get(2)).intValue());
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
LeafNodeImpl.java | 50 return parent.children.get(index + 1); 62 return parent.children.get(index - 1);
|
/libcore/luni/src/test/java/libcore/java/text/ |
SimpleDateFormatTest.java | 62 assertEquals(Calendar.JUNE, parseDate(en, "yyyy-MMMM-dd", "1980-June-12").get(Calendar.MONTH)); 63 assertEquals(Calendar.JUNE, parseDate(en, "yyyy-LLLL-dd", "1980-June-12").get(Calendar.MONTH)); 64 assertEquals(Calendar.JUNE, parseDate(pl, "yyyy-MMMM-dd", "1980-czerwca-12").get(Calendar.MONTH)); 65 assertEquals(Calendar.JUNE, parseDate(pl, "yyyy-LLLL-dd", "1980-czerwiec-12").get(Calendar.MONTH)); 67 assertEquals(Calendar.TUESDAY, parseDate(en, "EEEE", "Tuesday").get(Calendar.DAY_OF_WEEK)); 68 assertEquals(Calendar.TUESDAY, parseDate(en, "cccc", "Tuesday").get(Calendar.DAY_OF_WEEK)); 69 assertEquals(Calendar.TUESDAY, parseDate(ru, "EEEE", "\u0432\u0442\u043e\u0440\u043d\u0438\u043a").get(Calendar.DAY_OF_WEEK)); 70 assertEquals(Calendar.TUESDAY, parseDate(ru, "cccc", "\u0412\u0442\u043e\u0440\u043d\u0438\u043a").get(Calendar.DAY_OF_WEEK));
|
/libcore/luni/src/test/java/libcore/java/util/ |
CalendarTest.java | 27 // get(Calendar.ZONE_OFFSET) returns the zone offset of the time zone passed to setTimeZone. 29 assertEquals(0, cal.get(Calendar.ZONE_OFFSET)); 32 assertEquals(25200000, cal.get(Calendar.ZONE_OFFSET));
|
/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...] |
/libcore/luni/src/test/java/tests/api/java/util/concurrent/ |
AtomicReferenceArrayTest.java | 27 assertNull(ai.get(i)); 50 assertEquals(a[i], ai.get(i)); 55 * get and set for out of bound indices throw IndexOutOfBoundsException 60 ai.get(SIZE); 65 ai.get(-1); 82 * get returns the last value set at index 88 assertSame(one,ai.get(i)); 90 assertSame(two,ai.get(i)); 92 assertSame(m3,ai.get(i)); 97 * get returns the last value lazySet at index by same threa [all...] |
/external/webkit/WebCore/plugins/mac/ |
PluginPackageMac.cpp | 88 if (!CFURLCreateDataAndPropertiesFromResource(kCFAllocatorDefault, url.get(), &resource, 0, 0, &code)) 99 if (CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID()) 102 map = static_cast<CFDictionaryRef>(static_cast<CFPropertyListRef>(propertyList.get())); 126 list.append(str.get()); 141 if (mimeTypesFileName && CFGetTypeID(mimeTypesFileName.get()) == CFStringGetTypeID()) { 143 WTF::RetainPtr<CFStringRef> fileName = (CFStringRef)mimeTypesFileName.get(); 145 WTF::RetainPtr<CFStringRef> path = CFStringCreateWithFormat(0, 0, CFSTR("%@/Library/Preferences/%@"), homeDir.get(), fileName.get()); 147 WTF::RetainPtr<CFDictionaryRef> plist = readPListFile(path.get(), /*createFile*/ false, m_module); 151 (CFStringRef)CFDictionaryGetValue(plist.get(), CFSTR("WebPluginLocalizationName")) [all...] |
/external/webkit/WebKit/win/ |
WebHistory.cpp | 79 // get the entries for that date 80 CFArrayRef entries = m_entriesByDate.get(m_dateKeys[dateIndex]).get(); 105 CFDictionaryAddValue(dictionary.get(), key.get(), arrayItem); 108 result->setDictionary(dictionary.get()); 116 COMPtr<CFDictionaryPropertyBag> info = createUserInfoFromArray(notificationStr, itemList.get()); 215 return sharedHistoryStorage().get(); 249 hr = loadHistoryGutsFromURL(urlRef.get(), discardedItems.get(), error) [all...] |
/libcore/luni/src/main/native/ |
ICU.cpp | 61 UResourceBundle* get() { function in class:ScopedResourceBundle 99 ScopedResourceBundle currencyMap(ures_getByKey(supplData.get(), "CurrencyMap", NULL, &status)); 105 ScopedResourceBundle currency(ures_getByKey(currencyMap.get(), key.c_str(), NULL, &status)); 110 ScopedResourceBundle currencyElem(ures_getByIndex(currency.get(), 0, NULL, &status)); 116 ScopedResourceBundle currencyTo(ures_getByKey(currencyElem.get(), "to", NULL, &status)); 126 ScopedResourceBundle currencyId(ures_getByKey(currencyElem.get(), "id", NULL, &status)); 133 const jchar* id = ures_getString(currencyId.get(), &length, &status); 148 ScopedResourceBundle currencies(ures_getByKey(currLoc.get(), "Currencies", NULL, &status)); 154 ScopedResourceBundle currencyElems(ures_getByKey(currencies.get(), currency.c_str(), NULL, &status)); 160 const jchar* currSymbU = ures_getStringByIndex(currencyElems.get(), 0, &currSymbL, &status) [all...] |
/external/chromium/net/base/ |
network_change_notifier_mac.cc | 87 // Get a reference to the dynamic store. 96 store.get(), 101 source_.get(), 113 CFArrayAppendValue(notification_keys.get(), key.get()); 120 CFArrayAppendValue(notification_keys.get(), key.get()); 125 CFArrayAppendValue(notification_keys.get(), key.get()); 130 store.get(), notification_keys.get(), NULL)) [all...] |
/external/chromium/net/proxy/ |
proxy_resolver_mac.cc | 67 query_ref.get(), 69 if (!query_url_ref.get()) 75 pac_ref.get(), 77 if (!pac_url_ref.get()) 84 CFArrayRef dummy_result = CFNetworkCopyProxiesForURL(query_url_ref.get(), 97 CFNetworkExecuteProxyAutoConfigurationURL(pac_url_ref.get(), 98 query_url_ref.get(), 107 CFRunLoopAddSource(CFRunLoopGetCurrent(), runloop_source.get(), 110 CFRunLoopRemoveSource(CFRunLoopGetCurrent(), runloop_source.get(), 128 CFIndex proxy_array_count = CFArrayGetCount(proxy_array_ref.get()); [all...] |
/external/easymock/src/org/easymock/internal/ |
LastControl.java | 44 return threadToControl.get();
48 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get();
57 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get();
66 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get();
72 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get();
74 stack.push(new Not(popLastArgumentMatchers(1).get(0)));
78 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get();
98 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get();
104 Stack<Invocation> stack = threadToCurrentInvocation.get();
112 Stack<Invocation> stack = threadToCurrentInvocation.get();
[all...] |