Searched refs:object (Results 76 - 100 of 2072) sorted by relevance

1234567891011>>

/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_usekvo.py15 def observeValueForKeyPath_ofObject_change_context_(self, path, object, change, context):
16 self.observations.append((path, object))
26 def areChangesEmitted(self, object):
28 object.addObserver_forKeyPath_options_context_(
32 object.value = 42
35 object.removeObserver_forKeyPath_(observer, "value")
39 def assertChangesEmitted(self, object):
40 if not self.areChangesEmitted(object):
41 self.fail("Setting 'value' on %r doesn't emit KVO" % object)
43 def assertNoChangesEmitted(self, object)
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/json/lib/json/add/
H A Dexception.rb8 # Deserializes JSON string by constructing new Exception object with message
10 def self.json_create(object)
11 result = new(object['m'])
12 result.set_backtrace object['b']
16 # Returns a hash, that will be turned into a JSON object and represent this
17 # object.
H A Dostruct.rb9 # Deserializes JSON string by constructing new Struct object with values
11 def self.json_create(object)
12 new(object['t'] || object[:t])
15 # Returns a hash, that will be turned into a JSON object and represent this
16 # object.
H A Dbigdecimal.rb7 # Import a JSON Marshalled object.
10 def self.json_create(object)
11 BigDecimal._load object['b']
14 # Marshal the object to JSON.
H A Drange.rb8 # Deserializes JSON string by constructing new Range object with arguments
10 def self.json_create(object)
11 new(*object['a'])
14 # Returns a hash, that will be turned into a JSON object and represent this
15 # object.
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/bind/serial/
H A DTupleSerialBinding.java19 * a tuple and its data entry as a serialized object.
24 * concrete subclass to convert these objects to/from an entity object.</p>
70 public void objectToKey(Object object, DatabaseEntry key) { argument
72 TupleOutput output = getTupleOutput(object);
73 objectToKey(object, output);
78 public void objectToData(Object object, DatabaseEntry data) { argument
80 object = objectToData(object);
81 dataBinding.objectToEntry(object, data);
85 * Constructs an entity object fro
105 objectToKey(Object object, TupleOutput keyOutput) argument
114 objectToData(Object object) argument
[all...]
/macosx-10.10.1/CPANInternal-159.1/JSON-XS-3.01/t/
H A D21_evans.t16 my $object = $j->incr_parse ($js);
18 die "no object" if !$object;
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/
H A DJSVirtualMachine.h32 @discussion An instance of JSVirtualMachine represents a single JavaScript "object space"
58 @abstract Notify the JSVirtualMachine of an external object relationship.
60 arbitrary external Objective-C object graphs. The runtime can then use
62 from somewhere in said object graph.
64 For correct behavior clients must make their external object graphs
65 reachable from within the JavaScript runtime. If an Objective-C object is
69 @param object The object that the owner points to.
70 @param owner The object that owns the pointed to object
[all...]
/macosx-10.10.1/Security-57031.1.35/Keychain/
H A Dutilities.h31 bool testPutObjectInCloud(CFStringRef key, CFTypeRef object, CFErrorRef *error, dispatch_group_t dgroup, dispatch_queue_t processQueue);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DScopeChainNode.js26 WebInspector.ScopeChainNode = function(type, object)
31 console.assert(object instanceof WebInspector.RemoteObject);
37 this._object = object || null;
58 get object()
/macosx-10.10.1/kext_tools-384.1.4/
H A Dkextd_watchvol.h41 const void * object,
48 const void * object,
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-nm/
H A DMakefile12 LINK_COMPONENTS := archive bitreader object
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-readobj/
H A DMakefile12 LINK_COMPONENTS := archive bitreader object
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-size/
H A DMakefile12 LINK_COMPONENTS := object
/macosx-10.10.1/llvmCore-3425.0.34/tools/macho-dump/
H A DMakefile12 LINK_COMPONENTS := support object
/macosx-10.10.1/ruby-106/extras/dtrace_sample/
H A Dprint_memory_usage.d8 ruby*:::object-create-start
10 printf("Creating object of type `%s'\n", copyinstr(arg0));
13 ruby*:::object-free
15 printf("Freeing object of type `%s'\n", copyinstr(arg0));
/macosx-10.10.1/xnu-2782.1.97/osfmk/vm/
H A Dvm_purgeable.c489 * object is ripe to be purged. It is not purged immediately, because that
545 * grab any ripe object and purge it obsolete queue first. then, go through
548 * 1. Look at queue. Is there an object?
550 * No - check other queue. Is there an object?
678 /* Find an object that can be locked. Returns locked object. */
686 vm_object_t object, best_object; local
704 for (object = (vm_object_t) queue_first(&queue->objq[group]);
705 !queue_end(&queue->objq[group], (queue_entry_t) object);
706 object
783 vm_object_t object; local
864 vm_object_t object = 0; local
987 vm_purgeable_object_add(vm_object_t object, purgeable_q_t queue, int group) argument
1040 vm_purgeable_object_remove(vm_object_t object) argument
1110 vm_object_t object; local
1155 vm_object_t object; local
1206 vm_object_t object; local
1323 vm_object_t object; local
1433 vm_purgeable_nonvolatile_enqueue( vm_object_t object, task_t owner) argument
1489 vm_purgeable_nonvolatile_dequeue( vm_object_t object) argument
1526 vm_purgeable_accounting( vm_object_t object, vm_purgable_t old_state, boolean_t disown) argument
1714 vm_purgeable_compressed_update( vm_object_t object, int delta) argument
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/bind/
H A DEntityBinding.java14 * A binding between a key-value entry pair and an entity object.
40 * @param object is the source Object.
44 void objectToKey(Object object, DatabaseEntry key); argument
49 * @param object is the source Object.
53 void objectToData(Object object, DatabaseEntry data); argument
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DTupleInputBinding.java16 * object as the key or data object.
41 public void objectToEntry(Object object, DatabaseEntry entry) { argument
43 TupleBinding.inputToEntry((TupleInput) object, entry);
/macosx-10.10.1/JavaScriptCore-7600.1.17/bindings/
H A DScriptObject.cpp41 ScriptObject::ScriptObject(ExecState* scriptState, JSObject* object) argument
42 : ScriptValue(scriptState->vm(), object)
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/
H A DIGEN_DOMObject.idl35 object,
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKTypeRefWrapper.h36 - (id)initWithObject:(WKTypeRef)object;
38 @property(readonly) WKTypeRef object; variable
/macosx-10.10.1/bmalloc-7600.1.17/bmalloc/
H A DObjectType.h38 inline bool isSmallOrMedium(void* object) argument
40 return test(object, smallOrMediumTypeMask);
/macosx-10.10.1/swig-12/Lib/guile/
H A Dguile_scm.swg27 #define SWIG_APPEND_VALUE(object) \
29 gswig_result = object; \
33 gswig_result = scm_listify(gswig_result, object, SCM_UNDEFINED); \
36 gswig_result = scm_append(scm_listify(gswig_result, scm_listify(object, SCM_UNDEFINED), SCM_UNDEFINED)); \
/macosx-10.10.1/libauto-186/auto_tester/
H A DWeakReferenceUnregistration.m45 - (void)didFinalize:(WeakSlotObject *)object {
47 if (object->test != self) [self fail:@"object->slot not pointing to self."];
61 static volatile WeakSlotObject* object;
62 object = [WeakSlotObject new];
63 slot = (uintptr_t)&object->test;
64 object->test = self;
66 object = nil;
69 [self fail:@"object not finalized."];

Completed in 288 milliseconds

1234567891011>>