Searched refs:get (Results 26 - 50 of 5674) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/html/canvas/
H A DCanvasPixelArray.h45 ByteArray* data() { return m_data.get(); }
46 const ByteArray* data() const { return m_data.get(); }
59 bool get(unsigned index, unsigned char& result) const function in class:WebCore::CanvasPixelArray
61 return m_data->get(index, result);
64 unsigned char get(unsigned index) const function in class:WebCore::CanvasPixelArray
66 return m_data->get(index);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
H A DPluginProxyMac.mm43 [m_pluginLayer.get() setGeometryFlipped:YES];
46 [m_pluginLayer.get() addSublayer:renderLayer];
49 return m_pluginLayer.get();
/external/chromium/base/
H A Dcallback_internal.cc11 return invoker_storage_.get() == NULL;
20 return invoker_storage_.get() == other.invoker_storage_.get() &&
/external/v8/test/mjsunit/regress/
H A Dregress-992.js31 var obj = { get p() { return 42; } };
33 var getter = desc.get;
40 assertEquals(desc.get, getter);
/external/webkit/Source/WebCore/platform/gtk/
H A DLanguageGtk.cpp43 char* ptr = strchr(normalizedDefault.get(), '_');
48 ptr = strchr(normalizedDefault.get(), '.');
53 return String(normalizedDefault.get());
H A DDragImageGtk.cpp53 cairo_scale(context.get(), scale.width(), scale.height());
54 cairo_pattern_set_extend(cairo_get_source(context.get()), CAIRO_EXTEND_PAD);
55 cairo_pattern_set_filter(cairo_get_source(context.get()), CAIRO_FILTER_BEST);
56 cairo_set_operator(context.get(), CAIRO_OPERATOR_SOURCE);
57 cairo_set_source_surface(context.get(), image, 0, 0);
58 cairo_paint(context.get());
70 cairo_set_operator(context.get(), CAIRO_OPERATOR_DEST_IN);
71 cairo_set_source_rgba(context.get(), 0, 0, 0, fraction);
72 cairo_paint(context.get());
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dmetered_stream_unittest.py53 self.assertEquals(a.get(), exp)
58 self.assertEquals(a.get(), exp)
62 self.assertEquals(a.get(), exp)
70 self.assertEquals(a.get(), exp)
75 self.assertEquals(a.get(), exp)
81 self.assertEquals(a.get(), exp)
86 # i.e., write()s do not get erased.
90 self.assertEquals(a.get(), ['foo\nbar', '\b\b\b \b\b\b', 'baz'])
97 self.assertEquals(a.get(), ['foo'])
106 self.assertEquals(a.get(), ['fo
[all...]
/external/chromium/chrome/browser/
H A Dcrash_handler_host_linux_stub.cc37 return Singleton<GpuCrashHandlerHostLinux>::get();
48 return Singleton<PluginCrashHandlerHostLinux>::get();
59 return Singleton<RendererCrashHandlerHostLinux>::get();
70 return Singleton<PpapiCrashHandlerHostLinux>::get();
/external/chromium/net/base/
H A Dkeygen_handler_nss.cc25 if (!slot.get()) {
26 LOG(ERROR) << "Couldn't get private key slot from NSS!";
31 if (SECSuccess != PK11_Authenticate(slot.get(), PR_TRUE,
32 crypto_module_password_delegate_.get())) {
38 slot.get(), stores_key_);
/external/clang/test/CodeGenCXX/
H A Dstatic-init-3.cpp12 static T & get() { function in struct:X1
21 template<class T> T & X1<T>::instance = X1<T>::get();
27 X2< B > bg = X1< X2< B > >::get();
28 X2< A > ag = X1< X2< A > >::get();
/external/guava/src/com/google/common/base/
H A DSupplier.java37 public T get(); method in interface:Supplier
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DOutputBufferProvider.java27 Appendable get(); method in interface:OutputBufferProvider
32 * @param buffer the Appendable object handed out by {@link #get}
H A DThreadLocalOutputBufferProvider.java41 public Appendable get() { method in class:ThreadLocalOutputBufferProvider
42 if (!available.get()) {
45 StringBuilder sb = pool.get();
53 if (buffer != pool.get()) {
/external/webkit/Source/WebCore/dom/
H A DTouchList.cpp38 return m_values[index].get();
/external/webkit/Source/WebCore/fileapi/
H A DFileList.cpp41 return m_files[index].get();
/external/stlport/test/unit/
H A Dreference_wrapper_test.cpp39 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/Source/WebKit/win/
H A DWebCache.cpp114 CFDictionaryAddValue(dictionary.get(), imagesKey, value.get());
117 CFDictionaryAddValue(dictionary.get(), stylesheetsKey, value.get());
124 CFDictionaryAddValue(dictionary.get(), xslKey, value.get());
127 CFDictionaryAddValue(dictionary.get(), scriptsKey, value.get());
130 propBag->setDictionary(dictionary.get());
136 CFDictionaryAddValue(dictionary.get(), imagesKe
[all...]
/external/webkit/Tools/TestWebKitAPI/
H A DPlatformUtilities.cpp37 WKContextRef context = WKContextCreateWithInjectedBundlePath(injectedBundlePath.get());
43 WKDictionaryAddItem(initializationDictionary.get(), testNameKey.get(), testNameString.get());
46 WKDictionaryAddItem(initializationDictionary.get(), userDataKey.get(), userData);
48 WKContextSetInitializationUserDataForInjectedBundle(context, initializationDictionary.get());
57 size_t stringLength = WKStringGetUTF8CString(string, buffer.get(), bufferSize);
58 return std::string(buffer.get(), stringLength - 1);
/external/webkit/Source/WebCore/platform/graphics/ca/mac/
H A DPlatformCALayerMac.mm114 [static_cast<WebAnimationDelegate*>(m_delegate.get()) setOwner:this];
192 [m_layer.get() setValue:[NSValue valueWithPointer:this] forKey:platformCALayerPointer];
195 [m_layer.get() setStyle:[NSDictionary dictionaryWithObject:nullActionsDictionary() forKey:@"actions"]];
199 WebTiledLayer* tiledLayer = static_cast<WebTiledLayer*>(m_layer.get());
211 [m_layer.get() setValue:nil forKey:platformCALayerPointer];
218 [static_cast<WebAnimationDelegate*>(m_delegate.get()) setOwner:nil];
236 return m_layer.get();
243 [m_layer.get() setNeedsDisplayInRect:*dirtyRect];
245 [m_layer.get() setNeedsDisplay];
252 [m_layer.get() setContentsChange
[all...]
/external/protobuf/gtest/test/
H A Dgtest-tuple_test.cc38 using ::std::tr1::get;
124 EXPECT_EQ(n, get<1>(t))
128 // the & operator for the return type of get<>().
129 EXPECT_EQ(&n, &(get<1>(t)))
133 get<1>(t) = 2;
151 EXPECT_EQ(&n, &(get<0>(a)));
155 EXPECT_EQ(5, get<0>(b));
156 EXPECT_EQ('a', get<1>(b));
161 EXPECT_TRUE(get<0>(c));
162 EXPECT_EQ(&m, &(get<
[all...]
/external/llvm/unittests/VMCore/
H A DValueMapTest.cpp32 ConstantV(ConstantInt::get(Type::getInt32Ty(getGlobalContext()), 0)),
51 VM[this->BitcastV.get()] = 7;
52 EXPECT_EQ(7, VM.lookup(this->BitcastV.get()));
53 EXPECT_EQ(0, VM.count(this->AddV.get()));
54 this->BitcastV->replaceAllUsesWith(this->AddV.get());
55 EXPECT_EQ(7, VM.lookup(this->AddV.get()));
56 EXPECT_EQ(0, VM.count(this->BitcastV.get()));
58 EXPECT_EQ(0, VM.count(this->AddV.get()));
59 EXPECT_EQ(0, VM.count(this->BitcastV.get()));
70 VM[this->BitcastV.get()]
[all...]
/external/llvm/include/llvm/MC/
H A DSectionKind.h200 static SectionKind get(Kind K) { function in class:llvm::SectionKind
207 static SectionKind getMetadata() { return get(Metadata); }
208 static SectionKind getText() { return get(Text); }
209 static SectionKind getReadOnly() { return get(ReadOnly); }
211 return get(Mergeable1ByteCString);
214 return get(Mergeable2ByteCString);
217 return get(Mergeable4ByteCString);
219 static SectionKind getMergeableConst() { return get(MergeableConst); }
220 static SectionKind getMergeableConst4() { return get(MergeableConst4); }
221 static SectionKind getMergeableConst8() { return get(MergeableConst
[all...]
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceErrorCF.cpp61 return reinterpret_cast<PCCERT_CONTEXT>(CFDataGetBytePtr(m_certificate.get()));
76 CFStringRef domain = CFErrorGetDomain(m_platformError.get());
88 m_errorCode = CFErrorGetCode(m_platformError.get());
90 RetainPtr<CFDictionaryRef> userInfo(AdoptCF, CFErrorCopyUserInfo(m_platformError.get()));
91 if (userInfo.get()) {
92 CFStringRef failingURLString = (CFStringRef) CFDictionaryGetValue(userInfo.get(), failingURLStringKey);
96 CFURLRef failingURL = (CFURLRef) CFDictionaryGetValue(userInfo.get(), failingURLKey);
99 if (absoluteURLRef.get()) {
100 failingURLString = CFURLGetString(absoluteURLRef.get());
105 m_localizedDescription = (CFStringRef) CFDictionaryGetValue(userInfo.get(), kCFErrorLocalizedDescriptionKe
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dcryptohome_op_unittest.cc54 test_api->SetCryptohomeLibrary(mock_library_.get(), false);
69 EXPECT_CALL(*(mock_library_.get()), AsyncMigrateKey(username_,
76 EXPECT_CALL(*(mock_library_.get()), AsyncMigrateKey(username_,
86 EXPECT_CALL(*(mock_library_.get()),
93 EXPECT_CALL(*(mock_library_.get()), AsyncMountForBwsi(_))
99 EXPECT_CALL(*(mock_library_.get()), AsyncRemove(username_, _))
105 EXPECT_CALL(*(mock_library_.get()),
114 EXPECT_CALL(*(resolver_.get()), Resolve())
141 CryptohomeOp::CreateMountAttempt(&state_, resolver_.get(), true));
142 RunTest(op.get(), tru
[all...]
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DBackingStoreMac.mm46 CGContextDrawLayerAtPoint(context, CGPointMake(0, -m_size.height()), m_cgLayer.get());
53 paintBitmapContext(context, m_bitmapContext.get(), rect.location(), rect);
59 return CGLayerGetContext(m_cgLayer.get());
64 CGContextRef layerContext = CGLayerGetContext(m_cgLayer.get());
74 paintBitmapContext(layerContext, m_bitmapContext.get(), CGPointZero, CGRectMake(0, 0, m_size.width(), m_size.height()));
84 m_bitmapContext.adoptCF(CGBitmapContextCreate(0, m_size.width(), m_size.height(), 8, m_size.width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));
86 CGContextSetBlendMode(m_bitmapContext.get(), kCGBlendModeCopy);
89 CGContextTranslateCTM(m_bitmapContext.get(), 0, m_size.height());
90 CGContextScaleCTM(m_bitmapContext.get(), 1, -1);
93 return m_bitmapContext.get();
[all...]

Completed in 589 milliseconds

1234567891011>>