Searched refs:get (Results 1 - 25 of 5503) sorted by relevance

1234567891011>>

/macosx-10.9.5/llvmCore-3425.0.33/unittests/VMCore/
H A DTypeBuilderTest.cpp21 EXPECT_EQ(Type::getVoidTy(getGlobalContext()), (TypeBuilder<void, true>::get(getGlobalContext())));
22 EXPECT_EQ(Type::getVoidTy(getGlobalContext()), (TypeBuilder<void, false>::get(getGlobalContext())));
25 (TypeBuilder<void*, false>::get(getGlobalContext())));
27 (TypeBuilder<const void*, false>::get(getGlobalContext())));
29 (TypeBuilder<volatile void*, false>::get(getGlobalContext())));
31 (TypeBuilder<const volatile void*, false>::get(
36 EXPECT_EQ(Type::getInt8Ty(getGlobalContext()), (TypeBuilder<int8_t, false>::get(getGlobalContext())));
37 EXPECT_EQ(Type::getInt8Ty(getGlobalContext()), (TypeBuilder<uint8_t, false>::get(getGlobalContext())));
38 EXPECT_EQ(Type::getInt16Ty(getGlobalContext()), (TypeBuilder<int16_t, false>::get(getGlobalContext())));
39 EXPECT_EQ(Type::getInt16Ty(getGlobalContext()), (TypeBuilder<uint16_t, false>::get(getGlobalContex
187 static StructType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
210 static StructType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_propertiesforclass.py17 self.assertFalse(p.get('readonly', False))
18 self.assertFalse(p.get('copy', False))
19 self.assertFalse(p.get('retain', False))
20 self.assertFalse(p.get('nonatomic', False))
21 self.assertFalse(p.get('dynamic', False))
26 self.assertFalse(p.get('readonly', False))
27 self.assertFalse(p.get('copy', False))
28 self.assertFalse(p.get('retain', False))
29 self.assertFalse(p.get('nonatomic', False))
30 self.assertFalse(p.get('dynami
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/tests/
H A Dtest_ewk2_refptr_evas_object.cpp63 ASSERT_EQ(0, evas_object_ref_get(object.get()));
69 ASSERT_EQ(1, evas_object_ref_get(object.get()));
70 ASSERT_EQ(1, evas_object_ref_get(aRef.get()));
79 ASSERT_EQ(2, evas_object_ref_get(object.get()));
80 ASSERT_EQ(2, evas_object_ref_get(aRef.get()));
85 ASSERT_EQ(3, evas_object_ref_get(object.get()));
86 ASSERT_EQ(3, evas_object_ref_get(aRef.get()));
87 ASSERT_EQ(3, evas_object_ref_get(bRef.get()));
88 ASSERT_EQ(3, evas_object_ref_get(cRef.get()));
91 ASSERT_EQ(2, evas_object_ref_get(object.get()));
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/tests/
H A DTestWebKitAccessibility.cpp93 testServerArgv[0] = testServerPath.get();
130 g_assert_cmpstr(targetName, ==, name.get());
141 int childCount = atspi_accessible_get_child_count(desktop.get(), 0);
143 current = adoptGRef(atspi_accessible_get_child_at_index(desktop.get(), i, 0));
144 if (!g_strcmp0(atspi_accessible_get_name(current.get(), 0), kTestServerAppName))
155 g_assert(ATSPI_IS_ACCESSIBLE(testServerApp.get()));
156 checkAtspiAccessible(testServerApp.get(), "AccessibilityTestServer", ATSPI_ROLE_APPLICATION);
160 GRefPtr<AtspiAccessible> currentChild = adoptGRef(atspi_accessible_get_child_at_index(currentParent.get(), 0, 0));
161 g_assert(ATSPI_IS_ACCESSIBLE(currentChild.get()));
162 checkAtspiAccessible(currentChild.get(), "", ATSPI_ROLE_FRAM
[all...]
H A DTestPrinting.cpp34 test->assertObjectIsDeletedWhenTestFinishes(G_OBJECT(printOperation.get()));
36 g_assert(!webkit_print_operation_get_print_settings(printOperation.get()));
37 g_assert(!webkit_print_operation_get_page_setup(printOperation.get()));
40 test->assertObjectIsDeletedWhenTestFinishes(G_OBJECT(printSettings.get()));
43 test->assertObjectIsDeletedWhenTestFinishes(G_OBJECT(pageSetup.get()));
45 webkit_print_operation_set_print_settings(printOperation.get(), printSettings.get());
46 webkit_print_operation_set_page_setup(printOperation.get(), pageSetup.get());
48 g_assert(webkit_print_operation_get_print_settings(printOperation.get())
[all...]
/macosx-10.9.5/Heimdal-323.92.1/appl/dceutils/
H A Ddfspag.exp2 * kernel extentions used to get the pag
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cg/
H A DImageSourceCGMac.mm36 return adoptCF(UTTypeCopyPreferredTagWithClass(uti.createCFString().get(), kUTTagClassMIMEType)).get();
41 return adoptCF(UTTypeCopyPreferredTagWithClass(uti.createCFString().get(), kUTTagClassFilenameExtension)).get();
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/cxa_finalize/
H A Dfoo.cxx31 int get() { return f; } function in class:A
41 return a.get();
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DTypeBuilder.h45 /// Function::Create(TypeBuilder<types::i<8>(MyType*), true>::get(), ...)
47 /// complain that TypeBuilder<MyType, true>::get() doesn't exist. To fix this,
53 /// static StructType *get(LLVMContext &Context) {
56 /// return StructType::get(
57 /// TypeBuilder<types::i<32>, xcompile>::get(Context),
58 /// TypeBuilder<types::i<32>*, xcompile>::get(Context),
59 /// TypeBuilder<types::i<8>*[], xcompile>::get(Context),
106 static PointerType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
107 return PointerType::getUnqual(TypeBuilder<T,cross>::get(Context));
117 static ArrayType *get(LLVMContex function in class:llvm::TypeBuilder
124 static ArrayType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
183 static IntegerType *get(LLVMContext &C) { function in class:llvm::TypeBuilder
190 static Type *get(LLVMContext& C) { function in class:llvm::TypeBuilder
198 static Type *get(LLVMContext& C) { function in class:llvm::TypeBuilder
206 static Type *get(LLVMContext& C) { return Type::getFloatTy(C); } function in class:llvm::TypeBuilder
210 static Type *get(LLVMContext& C) { return Type::getDoubleTy(C); } function in class:llvm::TypeBuilder
214 static Type *get(LLVMContext& C) { return Type::getX86_FP80Ty(C); } function in class:llvm::TypeBuilder
218 static Type *get(LLVMContext& C) { return Type::getFP128Ty(C); } function in class:llvm::TypeBuilder
222 static Type *get(LLVMContext& C) { return Type::getPPC_FP128Ty(C); } function in class:llvm::TypeBuilder
226 static Type *get(LLVMContext& C) { return Type::getX86_MMXTy(C); } function in class:llvm::TypeBuilder
231 static Type *get(LLVMContext &C) { function in class:llvm::TypeBuilder
249 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
255 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
266 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
278 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
293 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
309 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
324 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
331 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
341 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
353 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
368 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
384 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/cf/
H A DCookieJarCFNet.cpp85 if (!CFStringGetLength(cookieName(cookie).get()))
91 CFArrayAppendValue(filteredCookies.get(), cookie);
115 headerFieldsCF.get(), urlCF.get()));
117 CFHTTPCookieStorageSetCookies(session.cookieStorage().get(), filterCookies(cookiesCF.get()).get(), urlCF.get(), firstPartyForCookiesCF.get());
125 RetainPtr<CFArrayRef> cookiesCF = adoptCF(CFHTTPCookieStorageCopyCookiesForURL(session.cookieStorage().get(), urlC
[all...]
H A DResourceErrorCF.cpp48 m_isTimeout = CFErrorGetCode(m_platformError.get()) == kCFURLErrorTimedOut;
64 return reinterpret_cast<PCCERT_CONTEXT>(CFDataGetBytePtr(m_certificate.get()));
84 CFStringRef domain = CFErrorGetDomain(m_platformError.get());
98 m_errorCode = CFErrorGetCode(m_platformError.get());
100 RetainPtr<CFDictionaryRef> userInfo = adoptCF(CFErrorCopyUserInfo(m_platformError.get()));
101 if (userInfo.get()) {
102 CFStringRef failingURLString = (CFStringRef) CFDictionaryGetValue(userInfo.get(), failingURLStringKey);
106 CFURLRef failingURL = (CFURLRef) CFDictionaryGetValue(userInfo.get(), failingURLKey);
109 if (absoluteURLRef.get()) {
112 failingURLString = CFURLGetString(absoluteURLRef.get());
[all...]
/macosx-10.9.5/CPANInternal-140/Variable-Magic/t/
H A D34-glob.t18 my %get = VMG_COMPAT_GLOB_GET ? (get => 1) : ();
24 [ qw/get set len clear free copy dup local fetch store exists delete/ ],
31 watch { local *b = *a } +{ %get }, 'assign to';
33 watch { *a = gensym() } +{ %get, set => 1 }, 'assign';
40 watch { undef *a } +{ %get }, 'undef';
42 watch { dispell *a, $wiz } +{ %get }, 'dispell';
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/cf/
H A DInbandTextTrackPrivateLegacyAVCF.cpp93 RetainPtr<AVCFAssetTrackRef> assetTrack = adoptCF(AVCFPlayerItemTrackCopyAssetTrack(m_playerItemTrack.get()));
94 RetainPtr<CFArrayRef> commonMetaData = adoptCF(AVCFAssetTrackCopyCommonMetadata(assetTrack.get()));
95 RetainPtr<CFArrayRef> titles = adoptCF(AVCFMetadataItemCopyItemsWithKeyAndKeySpace(commonMetaData.get(), AVCFMetadataCommonKeyTitle, AVCFMetadataKeySpaceCommon));
96 CFIndex titlesCount = CFArrayGetCount(titles.get());
99 RetainPtr<CFArrayRef> titlesForPreferredLanguages = adoptCF(AVCFMetadataItemCopyItemsWithLocale(titles.get(), currentLocale.get()));
100 CFIndex preferredTitlesCount = CFArrayGetCount(titlesForPreferredLanguages.get());
102 AVCFMetadataItemRef titleMetadata = static_cast<AVCFMetadataItemRef>(CFArrayGetValueAtIndex(titlesForPreferredLanguages.get(), 0));
107 AVCFMetadataItemRef titleMetadata = static_cast<AVCFMetadataItemRef>(CFArrayGetValueAtIndex(titles.get(), 0));
112 return title ? AtomicString(title.get())
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorController.cpp90 OwnPtr<InspectorAgent> inspectorAgentPtr(InspectorAgent::create(page, m_injectedScriptManager.get(), m_instrumentingAgents.get(), m_state.get()));
91 m_inspectorAgent = inspectorAgentPtr.get();
94 OwnPtr<InspectorPageAgent> pageAgentPtr(InspectorPageAgent::create(m_instrumentingAgents.get(), page, m_inspectorAgent, m_state.get(), m_injectedScriptManager.get(), inspectorClient, m_overlay.get()));
95 InspectorPageAgent* pageAgent = pageAgentPtr.get();
96 m_pageAgent = pageAgentPtr.get();
[all...]
H A DWorkerInspectorController.cpp97 , m_state(adoptPtr(new InspectorCompositeState(m_stateClient.get())))
102 OwnPtr<InspectorRuntimeAgent> runtimeAgent = WorkerRuntimeAgent::create(m_instrumentingAgents.get(), m_state.get(), m_injectedScriptManager.get(), workerContext);
103 m_runtimeAgent = runtimeAgent.get();
106 OwnPtr<InspectorConsoleAgent> consoleAgent = WorkerConsoleAgent::create(m_instrumentingAgents.get(), m_state.get(), m_injectedScriptManager.get());
108 OwnPtr<InspectorDebuggerAgent> debuggerAgent = WorkerDebuggerAgent::create(m_instrumentingAgents.get(), m_state.get(), workerContex
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitInjectedBundleClient.cpp37 WebFrameProxy* frame = static_cast<WebFrameProxy*>(message.get(String::fromUTF8("Frame")));
38 WebUInt64* resourceIdentifier = static_cast<WebUInt64*>(message.get(String::fromUTF8("Identifier")));
39 WebURLRequest* webRequest = static_cast<WebURLRequest*>(message.get(String::fromUTF8("Request")));
42 webkitWebViewResourceLoadStarted(webView, frame, resourceIdentifier->value(), request.get());
44 WebUInt64* resourceIdentifier = static_cast<WebUInt64*>(message.get(String::fromUTF8("Identifier")));
49 WebURLRequest* webRequest = static_cast<WebURLRequest*>(message.get(String::fromUTF8("Request")));
51 WebURLResponse* webRedirectResponse = static_cast<WebURLResponse*>(message.get(String::fromUTF8("RedirectResponse")));
54 webkitWebResourceSentRequest(resource.get(), request.get(), redirectResponse.get());
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DContentFilterMac.mm55 ASSERT(![m_replacementData.get() length]);
56 m_replacementData = wkFilterAddData(m_platformContentFilter.get(), [NSData dataWithBytesNoCopy:(void*)data length:length freeWhenDone:NO]);
57 ASSERT(needsMoreData() || [m_replacementData.get() length]);
63 ASSERT(![m_replacementData.get() length]);
64 m_replacementData = wkFilterDataComplete(m_platformContentFilter.get());
70 return wkFilterIsBuffering(m_platformContentFilter.get());
75 return wkFilterWasBlocked(m_platformContentFilter.get());
81 length = [m_replacementData.get() length];
82 return static_cast<const char*>([m_replacementData.get() bytes]);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/mac/
H A DNetworkStateNotifierMac.cpp43 RetainPtr<CFPropertyListRef> propertyList = adoptCF(SCDynamicStoreCopyValue(m_store.get(), str.get()));
48 if (CFGetTypeID(propertyList.get()) != CFDictionaryGetTypeID())
51 CFArrayRef netInterfaces = (CFArrayRef)CFDictionaryGetValue((CFDictionaryRef)propertyList.get(), kSCDynamicStorePropNetInterfaces);
66 RetainPtr<CFArrayRef> keyList = adoptCF(SCDynamicStoreCopyKeyList(m_store.get(), key.get()));
68 if (keyList && CFArrayGetCount(keyList.get())) {
108 RetainPtr<CFRunLoopSourceRef> configSource = adoptCF(SCDynamicStoreCreateRunLoopSource(0, m_store.get(), 0));
112 CFRunLoopAddSource(CFRunLoopGetMain(), configSource.get(), kCFRunLoopCommonModes);
121 CFArrayAppendValue(keys.get(), ke
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_auth_request.cpp55 WKRetainPtr<WKCredentialRef> credential = WKAuthenticationChallengeGetProposedCredential(m_authenticationChallenge.get());
58 WKRetainPtr<WKStringRef> suggestedUsername(AdoptWK, WKCredentialCopyUser(credential.get()));
59 if (!suggestedUsername || WKStringIsEmpty(suggestedUsername.get()))
62 m_suggestedUsername = suggestedUsername.get();
71 WKRetainPtr<WKProtectionSpaceRef> protectionSpace = WKAuthenticationChallengeGetProtectionSpace(m_authenticationChallenge.get());
74 WKRetainPtr<WKStringRef> realm(AdoptWK, WKProtectionSpaceCopyRealm(protectionSpace.get()));
75 if (!realm || WKStringIsEmpty(realm.get()))
78 m_realm = realm.get();
87 WKRetainPtr<WKProtectionSpaceRef> protectionSpace = WKAuthenticationChallengeGetProtectionSpace(m_authenticationChallenge.get());
90 WKRetainPtr<WKStringRef> host(AdoptWK, WKProtectionSpaceCopyHost(protectionSpace.get()));
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/InspectorServer/soup/
H A DWebSocketServerSoup.cpp46 GOwnPtr<gchar> addressString(g_inet_address_to_string(g_inet_socket_address_get_address(G_INET_SOCKET_ADDRESS(socketAddress.get()))));
47 LOG(InspectorServer, "New Connection from %s:%d.", addressString.get(), g_inet_socket_address_get_port(G_INET_SOCKET_ADDRESS(socketAddress.get())));
51 webSocketConnection->setSocketHandle(SocketStreamHandle::create(connection, webSocketConnection.get()));
60 g_signal_connect(m_socketService.get(), "incoming", G_CALLBACK(connectionCallback), this);
61 g_socket_service_start(m_socketService.get());
68 GRefPtr<GSocketAddress> socketAddress = adoptGRef(g_inet_socket_address_new(address.get(), port));
69 return g_socket_listener_add_address(G_SOCKET_LISTENER(m_socketService.get()), socketAddress.get(), G_SOCKET_TYPE_STREAM, G_SOCKET_PROTOCOL_TCP, 0, 0, 0);
74 g_socket_service_stop(m_socketService.get());
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKDOMDocument.mm43 return WebKit::toWKDOMElement(toDocument(_impl.get())->createElement(tagName, ec).get());
48 return WebKit::toWKDOMText(toDocument(_impl.get())->createTextNode(data).get());
53 return WebKit::toWKDOMElement(toDocument(_impl.get())->body());
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DRunLoopGtk.cpp42 GRefPtr<GMainLoop> innermostLoop = adoptGRef(g_main_loop_new(m_runLoopContext.get(), FALSE));
50 if (!g_main_loop_is_running(m_runLoopMainLoops[i].get()))
52 g_main_loop_quit(m_runLoopMainLoops[i].get());
76 return m_runLoopMainLoops[0].get();
98 if (g_main_loop_is_running(lastMainLoop.get()))
99 g_main_loop_quit(lastMainLoop.get());
111 g_source_set_priority(source.get(), G_PRIORITY_DEFAULT);
112 g_source_set_callback(source.get(), reinterpret_cast<GSourceFunc>(&RunLoop::queueWork), this, 0);
113 g_source_attach(source.get(), m_runLoopContext.get());
[all...]
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DCreateLinkCommand.cpp50 applyStyledElement(anchorElement.get());
52 insertNodeAt(anchorElement.get(), endingSelection().start());
54 appendNode(textNode.get(), anchorElement.get());
55 setEndingSelection(VisibleSelection(positionInParentBeforeNode(anchorElement.get()), positionInParentAfterNode(anchorElement.get()), DOWNSTREAM, endingSelection().isDirectional()));
/macosx-10.9.5/WebKit-7537.78.2/efl/tests/UnitTestUtils/
H A DEWKTestView.cpp41 ecore_evas_show(m_ecoreEvas.get());
42 Evas* evas = ecore_evas_get(m_ecoreEvas.get());
59 ewk_view_theme_set(m_webView.get(), Config::defaultThemePath);
61 evas_object_resize(m_webView.get(), width, height);
62 evas_object_show(m_webView.get());
63 evas_object_focus_set(m_webView.get(), EINA_TRUE);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtWebError.cpp41 WKRetainPtr<WKStringRef> errorDomainPtr = adoptWK(WKErrorCopyDomain(error.get()));
42 WTF::String errorDomain = toWTFString(errorDomainPtr.get());
55 return WKErrorGetErrorCode(error.get());
60 return adoptToQString(WKErrorCopyFailingURL(error.get()));
65 return adoptToQString(WKErrorCopyLocalizedDescription(error.get()));
70 return toImpl(error.get())->platformError().isCancellation();

Completed in 311 milliseconds

1234567891011>>