Searched refs:_context (Results 1 - 25 of 33) sorted by relevance

12

/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSValue.mm134 return valueToObject(_context, m_value);
145 return JSValueToBoolean([_context JSGlobalContextRef], m_value);
151 double result = JSValueToNumber([_context JSGlobalContextRef], m_value, &exception);
153 [_context notifyException:exception];
173 id result = valueToNumber([_context JSGlobalContextRef], m_value, &exception);
175 [_context notifyException:exception];
182 id result = valueToString([_context JSGlobalContextRef], m_value, &exception);
184 [_context notifyException:exception];
191 id result = valueToDate([_context JSGlobalContextRef], m_value, &exception);
193 [_context notifyExceptio
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/
H A DWebNetscapeContainerCheckContextInfo.mm40 _context = context;
56 return _context;
H A DWebNetscapeContainerCheckContextInfo.h36 void *_context; variable
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Lib/objc/
H A D__init__.py37 from _context import *
/macosx-10.9.5/libauto-185.5/
H A DInUseEnumerator.h44 void *_context; // context passed back to callbacks member in class:Auto::InUseEnumerator
58 , _context(context)
99 _recorder(_task, _context, type & _type_mask, &range, 1);
/macosx-10.9.5/CF-855.17/
H A DCFBase.c72 CFAllocatorContext _context; member in struct:__CFAllocator
402 return CFStringCreateWithFormat(allocator, NULL, CFSTR("<CFAllocator %p [%p]>{info = %p}"), cf, allocator, self->_context.info);
415 CFAllocatorReleaseCallBack releaseFunc = __CFAllocatorGetReleaseFunction(&self->_context);
419 CFAllocatorDeallocateCallBack deallocateFunc = __CFAllocatorGetDeallocateFunction(&self->_context);
420 void *info = self->_context.info;
429 INVOKE_CALLBACK1(releaseFunc, self->_context.info);
459 __kCFAllocatorSystemDefault._context.info = (kCFUseCollectableAllocator ? objc_collectableZone() : malloc_default_zone());
469 __kCFAllocatorMallocZone._context.info = malloc_default_zone();
567 memory->_context.version = context->version;
568 memory->_context
[all...]
H A DCFRunLoop.c952 } _context; member in struct:__CFRunLoopSource
989 CFRunLoopObserverContext _context; /* immutable, except invalidation */ member in struct:__CFRunLoopObserver
1061 CFRunLoopTimerContext _context; /* immutable, except invalidation */ member in struct:__CFRunLoopTimer
1173 if (0 == rls->_context.version0.version) {
1174 if (NULL != rls->_context.version0.cancel) {
1175 rls->_context.version0.cancel(rls->_context.version0.info, rl, rlm->_name); /* CALLOUT */
1177 } else if (1 == rls->_context.version0.version) {
1178 __CFPort port = rls->_context.version1.getPort(rls->_context
[all...]
H A DCFMachPort.c70 CFMachPortContext _context; /* immutable */ member in struct:__CFMachPort
126 if (NULL != mp->_context.info && NULL != mp->_context.copyDescription) {
127 contextDesc = mp->_context.copyDescription(mp->_context.info);
130 contextDesc = CFStringCreateWithFormat(kCFAllocatorSystemDefault, NULL, CFSTR("<CFMachPort context %p>"), mp->_context.info);
147 cb(mp, mp->_context.info);
156 void *info = mp->_context.info;
158 mp->_context.info = NULL;
370 memory->_context
[all...]
H A DCFTree.c260 if (info == tree->_context.info || (tree->_context.equal && tree->_context.equal(info, tree->_context.info))) {
272 if (info == tree->_context.info || (tree->_context.equal && tree->_context.equal(info, tree->_context.info))) {
282 if (info == tree->_context.info || (tree->_context
[all...]
H A DCFBinaryHeap.c53 CFBinaryHeapCompareContext _context; member in struct:__CFBinaryHeap
139 if (!compare(val1, val2, heap1->_context.info)) return false;
258 if (compareContext) memcpy(&memory->_context, compareContext, sizeof(CFBinaryHeapCompareContext));
274 return __CFBinaryHeapInit(allocator, kCFBinaryHeapMutable, capacity, (const void **)heap->_buckets, __CFBinaryHeapCount(heap), &(heap->_callbacks), &(heap->_context));
291 if (value == item || (compare && kCFCompareEqualTo == compare(value, item, heap->_context.info))) {
307 if (value == item || (compare && kCFCompareEqualTo == compare(value, item, heap->_context.info))) {
392 if ((!compare && item <= value) || (compare && kCFCompareGreaterThan != compare(item, value, heap->_context.info))) break;
425 if ((!compare && item > item2) || (compare && kCFCompareGreaterThan == compare(item, item2, heap->_context.info))) {
430 if ((!compare && item > val) || (compare && kCFCompareGreaterThan == compare(item, val, heap->_context.info))) break;
H A DCFMessagePort.c82 CFMessagePortContext _context; /* not part of remote port; immutable; invalidated */ member in struct:__CFMessagePort
224 if (NULL != ms->_context.info && NULL != ms->_context.copyDescription) {
225 contextDesc = ms->_context.copyDescription(ms->_context.info);
228 contextDesc = CFStringCreateWithFormat(kCFAllocatorSystemDefault, NULL, CFSTR("<CFMessagePort context %p>"), ms->_context.info);
400 memory->_context.info = NULL;
401 memory->_context.retain = NULL;
402 memory->_context.release = NULL;
403 memory->_context
[all...]
H A DCFPreferences.c57 CFTypeRef _context; member in struct:__CFPreferencesDomain
409 domain->_callBacks->freeDomain(alloc, domain->_context, domain->_domain);
410 if (domain->_context) CFRelease(domain->_context);
704 newDomain->_context = context;
711 return domain->_callBacks->fetchValue(domain->_context, domain->_domain, key);
715 domain->_callBacks->writeValue(domain->_context, domain->_domain, key, value);
719 return domain->_callBacks->synchronize(domain->_context, domain->_domain);
724 domain->_callBacks->setIsWorldReadable(domain->_context, domain->_domain, isWorldReadable);
757 CFDictionaryRef result = domain->_callBacks->copyDomainDictionary(domain->_context, domai
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DTimelineOverviewPane.js536 this._context = this._canvas.getContext("2d");
541 this._fillStyles[category] = WebInspector.TimelinePresentationModel.createFillStyleForCategory(this._context, 0, WebInspector.TimelineEventOverview._innerStripHeight, categories[category]);
543 this._disabledCategoryFillStyle = WebInspector.TimelinePresentationModel.createFillStyle(this._context, 0, WebInspector.TimelineEventOverview._innerStripHeight,
573 this._context.fillStyle = "rgba(0, 0, 0, 0.05)";
575 this._context.fillRect(0.5, i * WebInspector.TimelineEventOverview._stripHeight + 0.5, this._canvas.width, WebInspector.TimelineEventOverview._stripHeight);
616 this._context.save();
617 this._context.translate(x, y);
618 this._context.fillStyle = category.hidden ? this._disabledCategoryFillStyle : this._fillStyles[category.name];
619 this._context.fillRect(0, 0, width, WebInspector.TimelineEventOverview._innerStripHeight);
620 this._context
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIBevelSample/
H A DSampleCIView.py20 _context = objc.ivar() variable in class:SampleCIView
110 if self._context is None:
115 self._context=CIContext.contextWithCGLContext_pixelFormat_options_(
138 self.drawRect_inCIContext_(rr, self._context)
141 self._context.drawImage_atPoint_fromRect_(
156 self.drawRect_inCIContext_(ir, self._context)
159 cgImage = self._context.createCGImage_fromRect_(
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIMicroPaint/
H A DSampleCIView.py20 _context = objc.ivar() variable in class:SampleCIView
110 if self._context is None:
115 self._context=CIContext.contextWithCGLContext_pixelFormat_options_(
138 self.drawRect_inCIContext_(rr, self._context)
141 self._context.drawImage_atPoint_fromRect_(
156 self.drawRect_inCIContext_(ir, self._context)
159 cgImage = self._context.createCGImage_fromRect_(
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIBevelSample/
H A DSampleCIView.py20 _context = objc.ivar() variable in class:SampleCIView
110 if self._context is None:
115 self._context=CIContext.contextWithCGLContext_pixelFormat_options_(
138 self.drawRect_inCIContext_(rr, self._context)
141 self._context.drawImage_atPoint_fromRect_(
156 self.drawRect_inCIContext_(ir, self._context)
159 cgImage = self._context.createCGImage_fromRect_(
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIMicroPaint/
H A DSampleCIView.py20 _context = objc.ivar() variable in class:SampleCIView
110 if self._context is None:
115 self._context=CIContext.contextWithCGLContext_pixelFormat_options_(
138 self.drawRect_inCIContext_(rr, self._context)
141 self._context.drawImage_atPoint_fromRect_(
156 self.drawRect_inCIContext_(ir, self._context)
159 cgImage = self._context.createCGImage_fromRect_(
/macosx-10.9.5/DiskArbitration-266/diskarbitrationd/
H A DDAServer.defs90 _context : mach_vm_offset_t;
95 _context : mach_vm_offset_t;
103 _context : mach_vm_offset_t;
119 _context : mach_vm_offset_t );
H A DDAServer.c1531 mach_vm_offset_t _context,
1573 callback = DACallbackCreate( kCFAllocatorDefault, session, _address, _context, _kind, 0, NULL, NULL );
1619 _context,
1650 _context,
1661 mach_vm_offset_t _context,
1693 DALogDebug( " dispatched response, id = %016llX:%016llX, kind = %s, disk = %s, orphaned.", _address, _context, _DACallbackKindGetName( _kind ), _disk );
1707 DALogDebug( "unable to dispatch response, id = %016llX:%016llX, disk = %s (status code 0x%08X).", _address, _context, _disk, status );
1715 mach_vm_offset_t _context,
1753 callback = DACallbackCreate( kCFAllocatorDefault, session, _address, _context, _kind, _order, match, watch );
1759 DALogDebug( " registered callback, id = %016llX:%016llX, kind = %s.", _address, _context, _DACallbackKindGetNam
1522 _DAServerSessionQueueRequest( mach_port_t _session, int32_t _kind, caddr_t _argument0, int32_t _argument1, vm_address_t _argument2, mach_msg_type_number_t _argument2Size, vm_address_t _argument3, mach_msg_type_number_t _argument3Size, mach_vm_offset_t _address, mach_vm_offset_t _context, security_token_t _token ) argument
1659 _DAServerSessionQueueResponse( mach_port_t _session, mach_vm_offset_t _address, mach_vm_offset_t _context, int32_t _kind, caddr_t _disk, vm_address_t _response, mach_msg_type_number_t _responseSize, int32_t _responseID ) argument
1713 _DAServerSessionRegisterCallback( mach_port_t _session, mach_vm_offset_t _address, mach_vm_offset_t _context, int32_t _kind, int32_t _order, vm_address_t _match, mach_msg_type_number_t _matchSize, vm_address_t _watch, mach_msg_type_number_t _watchSize ) argument
[all...]
H A DDADisk.c50 CFTypeRef _context; member in struct:__DADisk
123 disk->_context = NULL;
167 if ( disk->_context ) CFRelease( disk->_context );
1065 return disk->_context;
1242 if ( disk->_context )
1244 CFRelease( disk->_context );
1246 disk->_context = NULL;
1253 disk->_context = context;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Lib/objc/
H A D__init__.py41 from objc._context import *
/macosx-10.9.5/xnu-2422.115.4/libkern/kxld/
H A Dkxld_stubs.c43 kxld_create_context(KXLDContext **_context __unused,
H A Dkxld.c105 kxld_create_context(KXLDContext **_context, argument
116 check(_context);
119 *_context = NULL;
185 *_context = context;
/macosx-10.9.5/Heimdal-323.92.1/kcm/
H A Dkcm_locl.h46 #define KCM_LOG_REQUEST(_context, _client, _opcode) do { \
51 #define KCM_LOG_REQUEST_NAME(_context, _client, _opcode, _name) do { \
/macosx-10.9.5/llvmCore-3425.0.33/tools/lto/
H A DLTOCodeGenerator.h68 llvm::LLVMContext& _context; member in struct:LTOCodeGenerator

Completed in 472 milliseconds

12