/external/chromium/base/ |
hmac_nss.cc | 59 if (plat_->slot_.get()) { 66 if (!plat_->slot_.get()) { 76 plat_->sym_key_.reset(PK11_ImportSymKey(plat_->slot_.get(), 82 if (!plat_->sym_key_.get()) { 96 if (!plat_->sym_key_.get()) { 105 plat_->sym_key_.get(), 107 if (!context.get()) { 112 if (PK11_DigestBegin(context.get()) != SECSuccess) { 117 if (PK11_DigestOp(context.get(), 125 if (PK11_DigestFinal(context.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...] |
/external/webkit/WebCore/platform/mac/ |
ContextMenuItemMac.mm | 56 [m_platformDescription.get() setTag:ContextMenuItemTagNoAction]; 72 [m_platformDescription.get() setTag:action]; 83 NSMenuItem* item = [m_platformDescription.get() retain]; 90 if ([m_platformDescription.get() isSeparatorItem]) 92 if ([m_platformDescription.get() hasSubmenu]) 99 return static_cast<ContextMenuAction>([m_platformDescription.get() tag]); 104 return [m_platformDescription.get() title]; 109 return menuToArray([m_platformDescription.get() submenu]); 120 [m_platformDescription.get() setTag:action]; 125 [m_platformDescription.get() setTitle:title] [all...] |
PopupMenuMac.mm | 48 [m_popup.get() setControlView:nil]; 54 [m_popup.get() removeAllItems]; 63 [m_popup.get() release]; // release here since the RetainPtr has retained the object already 64 [m_popup.get() setUsesItemFromMenu:NO]; 65 [m_popup.get() setAutoenablesItems:NO]; 68 BOOL messagesEnabled = [[m_popup.get() menu] menuChangedMessagesEnabled]; 69 [[m_popup.get() menu] setMenuChangedMessagesEnabled:NO]; 73 [m_popup.get() addItemWithTitle:@""]; 80 [[m_popup.get() menu] addItem:[NSMenuItem separatorItem]]; 97 [m_popup.get() addItemWithTitle:@""] [all...] |
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/ |
BitSetTest.java | 108 assertFalse("Clear didn't clear bit " + i, eightbs.get(i)); 129 assertFalse("Failed to clear bit", eightbs.get(7)); 133 assertTrue("Clear cleared incorrect bits", eightbs.get(i)); 136 assertFalse("Failed to clear bit", eightbs.get(165)); 195 assertFalse("Shouldn't have flipped bit " + i, bs.get(i)); 197 assertTrue("Shouldn't have cleared bit " + i, bs.get(i)); 200 assertFalse("Failed to clear bit " + i, bs.get(i)); 204 assertFalse("Shouldn't have flipped bit " + i, bs.get(i)); 206 assertTrue("Shouldn't have cleared bit " + i, bs.get(i)); 210 assertFalse("Shouldn't have flipped bit " + i, bs.get(i)) [all...] |
/external/chromium/net/proxy/ |
proxy_config_service_mac.cc | 53 GetBoolFromDictionary(config_dict.get(), 59 if (GetBoolFromDictionary(config_dict.get(), 63 config_dict.get(), 72 if (GetBoolFromDictionary(config_dict.get(), 77 config_dict.get(), 85 if (GetBoolFromDictionary(config_dict.get(), 90 config_dict.get(), 98 if (GetBoolFromDictionary(config_dict.get(), 103 config_dict.get(), 111 if (GetBoolFromDictionary(config_dict.get(), [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
BitSetTest.java | 163 assertTrue("Clear didn't clear bit " + i, !eightbs.get(i)); 190 assertTrue("Failed to clear bit", !eightbs.get(7)); 194 assertTrue("Clear cleared incorrect bits", eightbs.get(i)); 197 assertTrue("Failed to clear bit", !eightbs.get(165)); 232 assertTrue("Shouldn't have flipped bit " + i, !bs.get(i)); 234 assertTrue("Shouldn't have cleared bit " + i, bs.get(i)); 237 assertTrue("Failed to clear bit " + i, !bs.get(i)); 241 assertTrue("Shouldn't have flipped bit " + i, !bs.get(i)); 243 assertTrue("Shouldn't have cleared bit " + i, bs.get(i)); 247 assertTrue("Shouldn't have flipped bit " + i, !bs.get(i)) [all...] |
/external/webkit/JavaScriptCore/wtf/ |
PassOwnPtr.h | 54 PtrType get() const { return m_ptr; } function in class:WTF::PassOwnPtr 108 return a.get() == b.get(); 113 return a.get() == b.get(); 118 return a.get() == b.get(); 123 return a.get() == b; 128 return a == b.get(); 133 return a.get() != b.get(); [all...] |
/external/webkit/WebCore/bindings/v8/ |
V8IsolatedContext.cpp | 59 if (m_context->get().IsEmpty()) 63 v8::Context::Scope contextScope(m_context->get()); 65 getGlobalObject(m_context->get())->SetPointerInInternalField(V8DOMWindow::enteredIsolatedWorldIndex, this); 67 V8DOMWindowShell::installHiddenObjectPrototype(m_context->get()); 69 proxy->windowShell()->installDOMWindow(m_context->get(), proxy->frame()->domWindow()); 77 m_context->get()->UseDefaultSecurityToken(); 84 m_context->get().MakeWeak(this, &contextWeakReferenceCallback);
|
/external/webkit/WebKit/cf/WebCoreSupport/ |
WebInspectorClientCF.cpp | 66 return CFStringCreateWithFormat(0, 0, CFSTR("WebKit Web Inspector Setting - %@"), keyCFString.get()); 72 RetainPtr<CFPropertyListRef> value(AdoptCF, CFPreferencesCopyAppValue(preferencesKey.get(), kCFPreferencesCurrentApplication)); 77 CFTypeID type = CFGetTypeID(value.get()); 79 *setting = static_cast<String>(static_cast<CFStringRef>(value.get())); 81 *setting = static_cast<bool>(CFBooleanGetValue(static_cast<CFBooleanRef>(value.get()))) ? "true" : "false"; 93 CFPreferencesSetAppValue(preferencesKey.get(), objectToStore.get(), kCFPreferencesCurrentApplication);
|
/external/chromium/base/json/ |
json_reader_unittest.cc | 17 ASSERT_TRUE(root.get()); 22 ASSERT_FALSE(root.get()); 26 ASSERT_TRUE(root.get()); 31 ASSERT_TRUE(root.get()); 34 ASSERT_TRUE(root.get()); 37 ASSERT_TRUE(root.get()); 41 ASSERT_TRUE(root.get()); 49 ASSERT_TRUE(root.get()); 57 ASSERT_FALSE(root.get()); 59 ASSERT_FALSE(root.get()); [all...] |
/dalvik/dx/src/com/android/dx/dex/code/form/ |
Form12x.java | 55 return regs.get(sz - 2).regString() + ", " + 56 regs.get(sz - 1).regString(); 85 rs1 = regs.get(0); 86 rs2 = regs.get(1); 94 rs1 = regs.get(1); 95 rs2 = regs.get(2); 96 if (rs1.getReg() != regs.get(0).getReg()) { 129 makeByte(regs.get(sz - 2).getReg(), 130 regs.get(sz - 1).getReg())));
|
/packages/apps/Email/src/org/apache/james/mime4j/field/address/ |
MailboxList.java | 54 public Mailbox get(int index) {
method in class:MailboxList 57 return (Mailbox) mailboxes.get(index);
66 Mailbox mailbox = get(i);
|
/external/webkit/WebCore/platform/network/cf/ |
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...] |
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...] |
/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/dx/src/com/android/dx/cf/iface/ |
AttributeList.java | 24 * Get whether this instance is mutable. Note that the 34 * Get the number of attributes in the list. 41 * Get the {@code n}th attribute. 46 public Attribute get(int n); method in interface:AttributeList 49 * Get the total length of this list in bytes, when part of a 58 * Get the first attribute in the list with the given name, if any. 67 * Get the next attribute in the list after the given one, with the same
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
ConstantPool.java | 25 * Get the "size" of the constant pool. This corresponds to the 35 * Get the {@code n}th entry in the constant pool, which must 43 public Constant get(int n); method in interface:ConstantPool 46 * Get the {@code n}th entry in the constant pool, which must 58 * Get the {@code n}th entry in the constant pool, or
|
/external/chromium/third_party/icu/source/test/perf/usetperf/ |
bitset.h | 28 UBool get(int32_t bitIndex) const;
|
/external/guava/src/com/google/common/util/concurrent/ |
ForwardingFuture.java | 57 public V get() throws InterruptedException, ExecutionException { method in class:ForwardingFuture 58 return delegate().get(); 62 public V get(long timeout, TimeUnit unit) method in class:ForwardingFuture 64 return delegate().get(timeout, unit);
|
/external/icu4c/samples/datecal/ |
cal.cpp | 36 gc->get(UCAL_YEAR, status), 37 gc->get(UCAL_MONTH, status) + 1, 38 gc->get(UCAL_MONTH, status), 39 gc->get(UCAL_DATE, status)); 42 puts("Calendar::get failed");
|
/external/icu4c/test/perf/usetperf/ |
bitset.h | 28 UBool get(int32_t bitIndex) const;
|
/external/skia/src/images/ |
SkImageEncoder.cpp | 40 return enc.get() && enc.get()->encodeFile(file, bm, quality); 46 return enc.get() && enc.get()->encodeStream(stream, bm, quality);
|
/external/webkit/WebCore/css/ |
Rect.h | 31 CSSPrimitiveValue* top() const { return m_top.get(); } 32 CSSPrimitiveValue* right() const { return m_right.get(); } 33 CSSPrimitiveValue* bottom() const { return m_bottom.get(); } 34 CSSPrimitiveValue* left() const { return m_left.get(); }
|
/external/webkit/WebCore/history/android/ |
HistoryItemAndroid.cpp | 37 return m_bridge.get();
|