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

1234567891011>>

/external/webkit/Source/WebKit2/UIProcess/mac/
H A DChunkedUpdateDrawingAreaProxyMac.mm52 m_bitmapContext.adoptCF(CGBitmapContextCreate(0, viewSize.width(), viewSize.height(), 8, viewSize.width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));
55 CGContextTranslateCTM(m_bitmapContext.get(), 0, viewSize.height());
56 CGContextScaleCTM(m_bitmapContext.get(), 1, -1);
79 RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(m_bitmapContext.get()));
80 CGContextDrawImage(context, CGRectMake(0, 0, CGImageGetWidth(image.get()), CGImageGetHeight(image.get())), image.get());
93 CGContextSaveGState(m_bitmapContext.get());
96 CGContextSetBlendMode(m_bitmapContext.get(), kCGBlendModeCopy);
99 CGContextScaleCTM(m_bitmapContext.get(),
[all...]
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DCanHandleRequest.cpp59 setInjectedBundleClient(context.get());
61 _WKContextRegisterURLSchemeAsEmptyDocument(context.get(), Util::toWK("emptyscheme").get());
63 PlatformWebView webView(context.get());
65 WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple", "html")).get());
67 WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("CheckCanHandleRequest").get(), 0);
/external/webkit/Source/WebKit2/Platform/mac/
H A DModuleMac.mm34 RetainPtr<CFURLRef> bundleURL(AdoptCF, CFURLCreateWithFileSystemPath(kCFAllocatorDefault, bundlePath.get(), kCFURLPOSIXPathStyle, FALSE));
38 RetainPtr<CFBundleRef> bundle(AdoptCF, CFBundleCreate(kCFAllocatorDefault, bundleURL.get()));
42 if (!CFBundleLoadExecutable(bundle.get()))
55 CFBundleCloseBundleResourceMap(m_bundle.get(), m_bundleResourceMap);
67 return CFBundleGetFunctionPointerForName(m_bundle.get(), functionNameString.get());
74 m_bundleResourceMap = CFBundleOpenBundleResourceMap(m_bundle.get());
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptengine.cpp62 return QScriptSyntaxCheckResultPrivate::get(engine->checkSyntax(program));
92 return QScriptValuePrivate::get(d_ptr->evaluate(program, fileName, lineNumber));
97 return QScriptValuePrivate::get(d_ptr->evaluate(QScriptProgramPrivate::get(program)));
127 return QScriptValuePrivate::get(d_ptr->uncaughtException());
217 return QScriptStringPrivate::get(d_ptr->toStringHandle(str));
239 return QScriptValuePrivate::get(QScriptValuePrivate::get(value)->toObject(d_ptr.data()));
307 return QScriptValuePrivate::get(d_ptr->newFunction(fun, 0, length));
337 return QScriptValuePrivate::get(d_pt
[all...]
/external/webkit/Source/WebCore/platform/network/mac/
H A DNetworkStateNotifierMac.cpp47 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(), ke
[all...]
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DPlatformContextCairo.cpp43 cairo_pop_group_to_source(m_cr.get());
44 cairo_mask_surface(m_cr.get(), maskInformation.maskSurface(), maskRect.x(), maskRect.y());
48 cairo_restore(m_cr.get());
55 cairo_save(m_cr.get());
72 cairo_surface_t* currentTarget = cairo_get_target(m_cr.get());
76 cairo_push_group(m_cr.get());
77 cairo_set_operator(m_cr.get(), CAIRO_OPERATOR_SOURCE);
79 cairo_set_source_surface(m_cr.get(), currentTarget, 0, 0);
80 cairo_rectangle(m_cr.get(), rect.x(), rect.y(), rect.width(), rect.height());
81 cairo_fill(m_cr.get());
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DIntStream.as44 * when passed to rewind() you get back to the same spot.
55 function get index():int;
69 * before starting a sem/syn predicate to get the
114 function get size():int;
120 function get sourceName():String;
H A DCharStream.as46 function get line():int;
54 function get charPositionInLine():int;
/external/llvm/include/llvm/MC/
H A DMCInstrAnalysis.h32 return Info->get(Inst.getOpcode()).isBranch();
36 return Info->get(Inst.getOpcode()).isConditionalBranch();
40 return Info->get(Inst.getOpcode()).isUnconditionalBranch();
44 return Info->get(Inst.getOpcode()).isIndirectBranch();
48 return Info->get(Inst.getOpcode()).isCall();
52 return Info->get(Inst.getOpcode()).isReturn();
55 /// evaluateBranch - Given a branch instruction try to get the address the
/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/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm23x.java47 return regs.get(0).regString() + ", " + regs.get(1).regString() +
48 ", " + regs.get(2).regString();
71 unsignedFitsInByte(regs.get(0).getReg()) &&
72 unsignedFitsInByte(regs.get(1).getReg()) &&
73 unsignedFitsInByte(regs.get(2).getReg());
82 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
83 bits.set(1, unsignedFitsInByte(regs.get(1).getReg()));
84 bits.set(2, unsignedFitsInByte(regs.get(2).getReg()));
93 opcodeUnit(insn, regs.get(
[all...]
H A DForm33x.java47 return regs.get(0).regString() + ", " + regs.get(1).regString() +
48 ", " + regs.get(2).regString();
75 unsignedFitsInByte(regs.get(0).getReg()) &&
76 unsignedFitsInByte(regs.get(1).getReg()) &&
77 unsignedFitsInShort(regs.get(2).getReg());
86 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
87 bits.set(1, unsignedFitsInByte(regs.get(1).getReg()));
88 bits.set(2, unsignedFitsInShort(regs.get(2).getReg()));
98 codeUnit(regs.get(
[all...]
/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());
/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/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
H A DDigestCalculatorProvider.java7 DigestCalculator get(AlgorithmIdentifier digestAlgorithmIdentifier) method in interface:DigestCalculatorProvider
/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/guava/src/com/google/common/base/
H A DSupplier.java37 T get(); method in interface:Supplier
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestIteratorGenerator.java31 Iterator<E> get(); method in interface:TestIteratorGenerator
/external/guava/guava-tests/test/com/google/common/collect/
H A DCountTest.java29 assertEquals(20, new Count(20).get());
35 assertEquals(21, holder.get());
46 assertEquals(20, holder.get());
52 assertEquals(20, holder.get());
/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}

Completed in 3518 milliseconds

1234567891011>>