| /libcore/luni/src/main/java/java/security/ |
| GuardedObject.java | 24 * {@code GuardedObject} controls access to an object, by checking all requests 25 * for the object with a {@code Guard}. 31 private final Object object; field in class:GuardedObject 37 * to the specified {@code Object} using the specified {@code Guard}. 39 * @param object 40 * the {@code Object} to protect. 42 * the {@code Guard} which protects the specified {@code Object}, 45 public GuardedObject(Object object, Guard guard) [all...] |
| /external/apache-xml/src/main/java/org/apache/xpath/objects/ |
| XNodeSetForDOM.java | 32 * This class overrides the XNodeSet#object() method to provide the original 33 * Node object, NodeList object, or NodeIterator. 38 Object m_origObj; 50 * Construct a XNodeSet object. 52 * @param val Value of the XNodeSet object 90 * Return the original DOM object that the user passed in. For use primarily 93 * @return The object that this class wraps 95 public Object object() method in class:XNodeSetForDOM [all...] |
| XBoolean.java | 24 * This class represents an XPath boolean object, and is capable of 33 * A true boolean object so we don't have to keep creating them. 39 * A true boolean object so we don't have to keep creating them. 44 /** Value of the object. 49 * Construct a XBoolean object. 51 * @param b Value of the boolean object 62 * Construct a XBoolean object. 64 * @param b Value of the boolean object 98 * Cast result object to a number. 100 * @return numeric value of the object valu 133 public Object object() method in class:XBoolean [all...] |
| /external/chromium/net/base/ |
| x509_openssl_util.cc | 26 ASN1_OBJECT* object = X509_NAME_ENTRY_get_object(entry); local 27 key->assign(OBJ_nid2sn(OBJ_obj2nid(object)));
|
| /external/llvm/include/llvm/Object/ |
| Binary.h | 18 #include "llvm/Object/Error.h" 25 namespace object { namespace in namespace:llvm 42 // Object and children.
|
| Error.h | 1 //===- Error.h - system_error extensions for Object -------------*- C++ -*-===// 10 // This declares a new error_category for the Object library. 20 namespace object { namespace in namespace:llvm 42 } // end namespace object. 44 template <> struct is_error_code_enum<object::object_error> : true_type { }; 46 template <> struct is_error_code_enum<object::object_error::_> : true_type { };
|
| /external/webkit/Source/JavaScriptCore/parser/ |
| ParserArena.cpp | 58 ParserArenaDeletable* object = m_deletableObjects[i]; local 59 object->~ParserArenaDeletable(); 60 fastFree(object); 69 bool ParserArena::contains(ParserArenaRefCounted* object) const 71 return m_refCountedObjects.find(object) != notFound; 120 void ParserArena::derefWithArena(PassRefPtr<ParserArenaRefCounted> object) 122 m_refCountedObjects.append(object);
|
| /external/webkit/Source/JavaScriptCore/runtime/ |
| NumberConstructor.cpp | 107 NumberObject* object = new (exec) NumberObject(exec->globalData(), asInternalFunction(exec->callee())->globalObject()->numberObjectStructure()); local 109 object->setInternalValue(exec->globalData(), jsNumber(n)); 110 return JSValue::encode(object);
|
| /external/webkit/Source/WebCore/bindings/js/ |
| JSDirectoryEntryCustom.cpp | 63 JSObject* object = exec->argument(1).getObject(); local 65 JSValue jsCreate = object->get(exec, Identifier(exec, "create")); 67 JSValue jsExclusive = object->get(exec, Identifier(exec, "exclusive")); 109 JSObject* object = exec->argument(1).getObject(); local 111 JSValue jsCreate = object->get(exec, Identifier(exec, "create")); 113 JSValue jsExclusive = object->get(exec, Identifier(exec, "exclusive"));
|
| JSGeolocationCustom.cpp | 59 // Given the above test, this will always yield an object. 60 JSObject* object = value.toObject(exec); local 66 JSValue enableHighAccuracyValue = object->get(exec, Identifier(exec, "enableHighAccuracy")); 75 JSValue timeoutValue = object->get(exec, Identifier(exec, "timeout")); 91 JSValue maximumAgeValue = object->get(exec, Identifier(exec, "maximumAge"));
|
| /external/webkit/Source/WebCore/bindings/v8/ |
| IDBBindingUtilities.cpp | 60 v8::Local<v8::Object> object = v8Value->ToObject(); local 61 if (!object->Has(indexOrName)) 63 v8Value = object->Get(indexOrName); 70 v8::Local<v8::Object> object = v8Object->ToObject(); local 71 ASSERT(!object->Has(indexOrName)); 72 return object->Set(indexOrName, v8Value); 75 bool get(v8::Handle<v8::Value>& object, const IDBKeyPathElement& keyPathElement) 79 return object->IsArray() && getValueFrom(keyPathElement.index, object) [all...] |
| NPV8Object.h | 60 NPObject object; member in struct:WebCore::V8NPObject 61 v8::Persistent<v8::Object> v8Object; 73 NPObject* npCreateV8ScriptObject(NPP, v8::Handle<v8::Object>, DOMWindow*); 75 NPObject* v8ObjectToNPObject(v8::Handle<v8::Object>);
|
| ScriptEventListener.cpp | 95 v8::Handle<v8::Object> function = v8Listener->getListenerObject(document); 111 v8::Handle<v8::Object> object = v8Listener->getListenerObject(document); local 112 if (object.IsEmpty() || !object->IsFunction()) 115 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(object);
|
| ScriptFunctionCall.cpp | 119 v8::Local<v8::Object> thisObject = m_thisObject.v8Object(); 152 v8::Local<v8::Object> thisObject = m_thisObject.v8Object(); 166 v8::Local<v8::Object> result = SafeAllocation::newInstance(constructor, m_arguments.size(), args.get()); 193 v8::Handle<v8::Object> object = v8::Context::GetCurrent()->Global(); local 200 v8::Handle<v8::Value> result = V8Proxy::callFunctionWithoutFrame(function, object, m_arguments.size(), args.get());
|
| /external/webkit/Source/WebCore/bindings/v8/custom/ |
| V8AudioContextCustom.cpp | 83 // Transform the holder into a wrapper object for the audio context. 102 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg); local 103 ArrayBuffer* arrayBuffer = V8ArrayBuffer::toNative(object);
|
| /external/webkit/Source/WebCore/rendering/svg/ |
| RenderSVGInline.cpp | 48 if (const RenderObject* object = RenderSVGText::locateRenderSVGTextAncestor(this)) 49 return object->objectBoundingBox(); 56 if (const RenderObject* object = RenderSVGText::locateRenderSVGTextAncestor(this)) 57 return object->strokeBoundingBox(); 64 if (const RenderObject* object = RenderSVGText::locateRenderSVGTextAncestor(this)) 65 return object->repaintRectInLocalCoordinates(); 87 RenderObject* object = RenderSVGText::locateRenderSVGTextAncestor(this); local 88 if (!object) 91 FloatRect textBoundingBox = object->strokeBoundingBox();
|
| /external/webkit/Source/WebCore/svg/ |
| SVGClipPathElement.cpp | 74 RenderObject* object = renderer(); local 75 if (!object) 83 object->setNeedsLayout(true); 126 if (RenderObject* object = renderer()) 127 object->setNeedsLayout(true);
|
| SVGMaskElement.cpp | 109 RenderObject* object = renderer(); local 110 if (!object) 120 object->setNeedsLayout(true); 177 if (RenderObject* object = renderer()) 178 object->setNeedsLayout(true);
|
| /frameworks/compile/linkloader/android/ |
| librsloader.cpp | 30 static inline RSExecRef wrap(ELFObject<32> *object) { 31 return reinterpret_cast<RSExecRef>(object); 34 static inline ELFObject<32> *unwrap(RSExecRef object) { 35 return reinterpret_cast<ELFObject<32> *>(object); 46 llvm::OwningPtr<ELFObject<32> > object(ELFObject<32>::read(AR)); 47 if (!object) { 48 LOGE("Unable to load the ELF object."); 52 //object->print(); 53 object->relocate(find_symbol, find_symbol_context); 55 return wrap(object.take()) 64 ELFObject<32> *object = unwrap(object_); local 84 ELFObject<32> *object = unwrap(object_); local [all...] |
| test-librsloader.c | 96 RSExecRef object = rsloaderCreateExec(image, sb.st_size, find_sym, 0); local 97 if (!object) { 98 fprintf(stderr, "ERROR: Unable to load elf object.\n"); 104 (int (*)(int, char **))rsloaderGetSymbolAddress(object, "main"); 108 printf("ELF object finished with code: %d\n", ret); 111 rsloaderDisposeExec(object);
|
| /libcore/luni/src/main/java/javax/security/cert/ |
| Certificate.java | 50 * the {@code Certificate} to compare with this object 55 public boolean equals(Object obj) { 62 Certificate object = (Certificate) obj; local 64 return Arrays.equals(getEncoded(), object.getEncoded());
|
| /libcore/json/src/test/java/org/json/ |
| JSONObjectTest.java | 37 JSONObject object = new JSONObject(); local 38 assertEquals(0, object.length()); 40 // bogus (but documented) behaviour: returns null rather than the empty object! 41 assertNull(object.names()); 44 assertNull(object.toJSONArray(new JSONArray())); 45 assertEquals("{}", object.toString()); 46 assertEquals("{}", object.toString(5)); 48 object.get("foo"); 53 object.getBoolean("foo"); 58 object.getDouble("foo") 115 JSONObject object = new JSONObject(); local 139 JSONObject object = new JSONObject(); local 157 JSONObject object = new JSONObject(); local 170 JSONObject object = new JSONObject(); local 181 JSONObject object = new JSONObject(); local 200 JSONObject object = new JSONObject(); local 210 JSONObject object = new JSONObject(); local 248 JSONObject object = new JSONObject(); local 260 JSONObject object = new JSONObject(); local 311 JSONObject object = new JSONObject(); local 348 JSONObject object = new JSONObject(); local 364 JSONObject object = new JSONObject(); local 398 JSONObject object = new JSONObject(); local 450 JSONObject object = new JSONObject(); local 476 JSONObject object = new JSONObject(); local 482 JSONObject object = new JSONObject(); local 492 JSONObject object = new JSONObject(); local 502 JSONObject object = new JSONObject(); local 523 JSONObject object = new JSONObject(); local 545 JSONObject object = new JSONObject(); local 570 JSONObject object = new JSONObject(); local 580 JSONObject object = new JSONObject(); local 588 JSONObject object = new JSONObject(); local 607 JSONObject object = new JSONObject(); local 626 JSONObject object = new JSONObject(); local 654 JSONObject object = new JSONObject(contents); local 662 JSONObject object = new JSONObject(Collections.singletonMap("foo", Double.NaN)); local 669 JSONObject object = new JSONObject(contents); local 686 JSONObject object = new JSONObject(new JSONTokener("{\\"foo\\": false}")); local 716 JSONObject object = new JSONObject("{\\"foo\\": false}"); local 772 JSONObject object = new JSONObject(); local 783 JSONObject object = new JSONObject(); local 790 JSONObject object = new JSONObject(); local 798 JSONObject object = new JSONObject(); local 807 JSONObject object = new JSONObject(); local 814 JSONObject object = new JSONObject(); local 826 JSONObject object = new JSONObject(); local 834 JSONObject object = new JSONObject(); local 852 JSONObject object = new JSONObject(); local 874 JSONObject object = new JSONObject(); local 885 JSONObject object = new JSONObject(); local 895 JSONObject object = new JSONObject(); local 918 JSONObject object = new JSONObject(); local [all...] |
| JSONStringerTest.java | 41 stringer.object(); 77 stringer.object(); 156 new JSONStringer().object().endArray(); 161 new JSONStringer().object().key("a").key("a"); 166 new JSONStringer().object().value(false); 174 new JSONStringer().object().key(null); 182 stringer.object(); 192 stringer.object(); 222 new JSONStringer().object().key(original).value(false).endObject().toString()); 224 new JSONStringer().object().key("a").value(original).endObject().toString()) 241 JSONObject object = new JSONObject(); local 327 JSONObject object = new JSONObject(); local [all...] |
| /external/chromium/base/win/ |
| object_watcher.cc | 16 HANDLE object; // The object being watched member in struct:base::win::ObjectWatcher::Watch 31 delegate->OnObjectSignaled(object); 44 bool ObjectWatcher::StartWatching(HANDLE object, Delegate* delegate) { 46 NOTREACHED() << "Already watching an object"; 52 watch->object = object; 57 // Since our job is to just notice when an object is signaled and report the 61 if (!RegisterWaitForSingleObject(&watch->wait_object, object, DoneWaiting, 115 return watch_->object; [all...] |
| scoped_gdi_object.h | 22 explicit ScopedGDIObject(T object) : object_(object) {} 32 void Set(T object) { 33 if (object_ && object != object_) 35 object_ = object; 38 ScopedGDIObject& operator=(T object) { 39 Set(object); 44 T object = object_; local 46 return object;
|