Searched refs:shared (Results 1 - 25 of 250) sorted by relevance

12345678910

/external/webkit/JavaScriptGlue/
H A DMakefile1 include ../Makefile.shared
/external/webkit/WebCore/
H A DMakefile1 include ../Makefile.shared
/external/webkit/WebKit/
H A DMakefile1 include ../Makefile.shared
/external/webkit/WebKitTools/DumpRenderTree/
H A DMakefile2 include ../../Makefile.shared
H A DWorkQueue.h36 static WorkQueue* shared();
/external/webkit/WebCore/bindings/js/
H A DScriptDebugServer.cpp39 JavaScriptDebugServer::shared().recompileAllJSFunctions();
44 JavaScriptDebugServer::shared().recompileAllJSFunctionsSoon();
/external/webkit/JavaScriptCore/
H A DMakefile2 include ../Makefile.shared
/external/webkit/WebKit/chromium/src/
H A DWebCrossOriginPreflightResultCache.cpp40 WebCore::CrossOriginPreflightResultCache::shared().empty();
/external/webkit/WebKitTools/WebKitAPITest/
H A Dmain.cpp34 return !TestsController::shared().runAllTests();
H A DTest.h51 const bool TEST_CLASS_NAME(testCaseName, testName)::initialized = (TestsController::shared().addTest(new TEST_CLASS_NAME(testCaseName, testName)), true); \
55 #define TEST_ASSERT(expression) do { if (!(expression)) { TestsController::shared().testFailed(__FILE__, __LINE__, #expression); return; } } while (0)
H A DTestsController.cpp46 TestsController& TestsController::shared() function in class:WebKitAPITest::TestsController
48 static TestsController& shared = *new TestsController; local
49 return shared;
140 TestsController::shared().runNextTest();
H A DTestsController.h39 static TestsController& shared();
/external/chromium/base/
H A Dtools_sanity_unittest.cc34 bool shared = false; local
38 new TOOLS_SANITY_TEST_CONCURRENT_THREAD(&shared);
40 new TOOLS_SANITY_TEST_CONCURRENT_THREAD(&shared);
46 EXPECT_TRUE(shared);
/external/stlport/
H A DMakefile20 release-shared install-release-shared:
26 .PHONY: all install depend clean clobber distclean check release-shared install-release-shared
/external/skia/src/ports/
H A DSkFontHost_tables.cpp40 SkSharedTTHeader shared; local
41 if (stream->read(&shared, sizeof(shared)) != sizeof(shared)) {
49 uint32_t tag = SkEndian_SwapBE32(shared.fCollection.fTag);
51 if (shared.fCollection.fNumOffsets == 0) {
55 offset = SkEndian_SwapBE32(shared.fCollection.fOffset0);
60 if (stream->read(&shared, sizeof(shared)) != sizeof(shared)) {
[all...]
/external/v8/src/
H A Dcompiler.cc96 Handle<SharedFunctionInfo> shared = info->shared_info(); local
97 bool is_run_once = (shared.is_null())
99 : (shared->is_toplevel() || shared->try_full_codegen());
146 JSFunction::cast(it.frame()->function())->shared());
359 Handle<SharedFunctionInfo> shared = info->shared_info(); local
360 Handle<String> name(String::cast(shared->name()));
362 int start_position = shared->start_position();
363 int end_position = shared->end_position();
364 bool is_expression = shared
[all...]
/external/chromium/third_party/icu/source/config/
H A Dmh-irix7 SHAREDLIBCFLAGS = -shared
8 SHAREDLIBCXXFLAGS = -shared
22 ## Commands to make a shared library
23 SHLIB.c= $(CC) -shared $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS)
24 SHLIB.cc= $(CXX) -shared $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS)
39 ## Non-shared intermediate object suffix
H A Dmh-qnx10 # Create shared libs that "work" properly.
18 SHAREDLIBCFLAGS = -shared
19 SHAREDLIBCXXFLAGS = -shared
20 # SHAREDLIBCPPFLAGS = -shared
25 #CPPFLAGS+=-shared
40 ## Non-shared intermediate object suffix
70 ## QNX wants the SONAME in the shared lib to match the final "real" filename.
/external/icu4c/config/
H A Dmh-irix7 SHAREDLIBCFLAGS = -shared
8 SHAREDLIBCXXFLAGS = -shared
22 ## Commands to make a shared library
23 SHLIB.c= $(CC) -shared $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS)
24 SHLIB.cc= $(CXX) -shared $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS)
39 ## Non-shared intermediate object suffix
H A Dmh-qnx10 # Create shared libs that "work" properly.
18 SHAREDLIBCFLAGS = -shared
19 SHAREDLIBCXXFLAGS = -shared
20 # SHAREDLIBCPPFLAGS = -shared
25 #CPPFLAGS+=-shared
40 ## Non-shared intermediate object suffix
70 ## QNX wants the SONAME in the shared lib to match the final "real" filename.
/external/dropbear/libtomcrypt/
H A Dupdatemakes.sh11 perl filter.pl makefile.shared tmplist
12 mv -f tmp.delme makefile.shared
/external/grub/stage2/
H A Dconsole.c21 #include <shared.h>
/external/webkit/WebCore/platform/graphics/win/
H A DWKCACFContextFlusher.h41 static WKCACFContextFlusher& shared();
/external/webkit/WebCore/platform/network/cf/
H A DDNSCFNet.cpp61 static DNSResolveQueue& shared();
79 DNSResolveQueue& DNSResolveQueue::shared() function in class:WebCore::DNSResolveQueue
120 DNSResolveQueue::shared().decrementRequestCount(); // It's ok to call shared() from a secondary thread, the static variable has already been initialized by now.
152 DNSResolveQueue::shared().add(hostname);
/external/webkit/WebCore/inspector/
H A DInspectorBackend.cpp174 JavaScriptDebugServer::shared().addBreakpoint(sourceIDValue, lineNumber, condition);
180 JavaScriptDebugServer::shared().updateBreakpoint(sourceIDValue, lineNumber, condition);
186 JavaScriptDebugServer::shared().removeBreakpoint(sourceIDValue, lineNumber);
191 JavaScriptDebugServer::shared().pauseProgram();
202 JavaScriptDebugServer::shared().stepOverStatement();
207 JavaScriptDebugServer::shared().stepIntoStatement();
212 JavaScriptDebugServer::shared().stepOutOfFunction();
217 return JavaScriptDebugServer::shared().pauseOnExceptionsState();
222 JavaScriptDebugServer::shared().setPauseOnExceptionsState(static_cast<JavaScriptDebugServer::PauseOnExceptionsState>(pauseState));
227 return JavaScriptDebugServer::shared()
[all...]

Completed in 221 milliseconds

12345678910