HomeSort by relevance Sort by last modified time
    Searched defs:object (Results 101 - 125 of 319) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/include/llvm/Object/
COFF.h 1 //===- COFF.h - COFF object file implementation -----------------*- C++ -*-===//
17 #include "llvm/Object/ObjectFile.h"
22 namespace object { namespace in namespace:llvm
103 COFFObjectFile(MemoryBuffer *Object, error_code &ec);
ObjectFile.h 1 //===- ObjectFile.h - File format independent object file -------*- C++ -*-===//
17 #include "llvm/Object/Binary.h"
25 namespace object { namespace in namespace:llvm
59 /// the list of symbols in the object file.
84 /// Returns true for symbols that are internal to the object file format such
90 /// the list of sections in the object file.
120 /// ObjectFile - This class is the base class for all object file types.
121 /// Concrete instances of this object are created by createObjectFile, which
137 // entry in the memory mapped object file. SymbolPimpl cannot contain any
206 /// @brief The number of bytes used to represent an address in this object
    [all...]
  /external/openssl/crypto/store/
str_mem.c 73 from the range of attributes associated with the object (basically,
81 STORE_OBJECT *object; member in struct:mem_object_data_st
185 STORE_OBJECT *object = mem_list_next(s, context); local
188 return object;
325 return (sk_MEM_OBJECT_DATA_value(store->data, srch))->object;
  /external/v8/src/
liveobjectlist.h 60 // if an object in a captured lol dies and is collected by the GC, the lol
61 // will reflect that the object is no longer available. The term
65 // In captured lols, objects are tracked using their address and an object id.
66 // The object id is unique. Once assigned to an object, the object id can never
67 // be assigned to another object. That is unless all captured lols are deleted
68 // which allows the user to start over with a fresh set of lols and object ids.
69 // The uniqueness of the object ids allows the user to track specific objects
101 static Object* GetObj(int obj_id)
239 Object* object = *p; local
    [all...]
  /external/v8/src/mips/
assembler-mips-inl.h 130 Object* RelocInfo::target_object() {
132 return reinterpret_cast<Object*>(Assembler::target_address_at(pc_));
136 Handle<Object> RelocInfo::target_object_handle(Assembler *origin) {
138 return Handle<Object>(reinterpret_cast<Object**>(
143 Object** RelocInfo::target_object_address() {
144 // Provide a "natural pointer" to the embedded object,
150 // reinterpret_cast<Object*>(Assembler::target_address_at(pc_));
156 void RelocInfo::set_target_object(Object* target) {
183 Object* object = HeapObject::FromAddress local
    [all...]
  /external/v8/test/cctest/
test-alloc.cc 63 Object* object = heap->AllocateJSObject( local
65 CHECK(!heap->CopyJSObject(JSObject::cast(object))->IsFailure());
75 // Large object space.
101 static Handle<Object> Test() {
102 CALL_HEAP_FUNCTION(ISOLATE, AllocateAfterFailures(), Object);
110 Handle<Object> o = Test();
116 static MaybeObject* TestAccessorGet(Object* object, void*) {
149 // Add the Foo constructor the global object
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalueiterator/
tst_qscriptvalueiterator.cpp 86 QScriptValue object = engine.newObject(); local
91 object.setProperty(name, QScriptValue(&engine, value));
96 object.setPrototype(otherObject); // should not affect iterator
99 QScriptValueIterator it(object);
107 QCOMPARE(it.flags(), object.propertyFlags(name));
145 QScriptValue object = engine.newObject(); local
150 object.setProperty(name, QScriptValue(&engine, value));
154 QScriptValueIterator it(object);
163 QCOMPARE(it.flags(), object.propertyFlags(name));
266 // same test as object
293 QScriptValue object = engine.newObject(); local
328 QScriptValue object = engine.newObject(); local
350 QScriptValue object = engine.newObject(); local
366 QScriptValue object = engine.newObject(); local
392 QScriptValue object = engine.evaluate("o = new Object; o"); local
446 QScriptValue object = engine.evaluate("o = new Object; o"); local
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSString.cpp 282 JSObject* object; local
283 for (JSValue prototype = exec->lexicalGlobalObject()->stringPrototype(); !prototype.isNull(); prototype = object->prototype()) {
284 object = asObject(prototype);
285 if (object->getOwnPropertySlot(exec, propertyName, slot))
  /external/webkit/Source/JavaScriptGlue/
JSValueWrapper.cpp 77 JSObject* object = ptr->GetValue().toObject(exec); local
79 object->getPropertyNames(exec, propNames);
  /external/webkit/Source/WebCore/bindings/v8/
V8Binding.h 148 inline String toWebCoreString(v8::Handle<v8::Value> object)
150 return v8ValueToWebCoreString(object);
180 double toWebCoreDate(v8::Handle<v8::Value> object);
218 V8ParameterBase(v8::Local<v8::Value> object) : m_v8Object(object), m_mode(Externalize), m_string() { }
233 // Handle the case where an exception is thrown as part of invoking toString on the object.
250 v8::Local<v8::Value> object() { return m_v8Object; } function in class:WebCore::V8ParameterBase
283 V8Parameter(v8::Local<v8::Value> object) : V8ParameterBase(object) { }
284 V8Parameter(v8::Local<v8::Value> object, bool) : V8ParameterBase(object) { prepare();
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DeviceMotionEventCustom.cpp 44 v8::Local<v8::Object> object = v8::Object::New(); local
45 object->Set(v8::String::New("x"), acceleration->canProvideX() ? v8::Number::New(acceleration->x()) : v8::Null());
46 object->Set(v8::String::New("y"), acceleration->canProvideY() ? v8::Number::New(acceleration->y()) : v8::Null());
47 object->Set(v8::String::New("z"), acceleration->canProvideZ() ? v8::Number::New(acceleration->z()) : v8::Null());
48 return object;
53 v8::Local<v8::Object> object = v8::Object::New() local
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/v8/
JNIUtilityPrivate.cpp 64 NPObject* object = NPVARIANT_IS_OBJECT(value) ? NPVARIANT_TO_OBJECT(value) : 0; local
66 bool success = _NPN_GetProperty(0, object, _NPN_GetStringIdentifier("length"), &npvLength);
82 // Match JSC behavior by only allowing Object arrays if they are Strings.
87 _NPN_GetProperty(0, object, _NPN_GetIntIdentifier(i), &npvValue);
101 _NPN_GetProperty(0, object, _NPN_GetIntIdentifier(i), &npvValue);
116 _NPN_GetProperty(0, object, _NPN_GetIntIdentifier(i), &npvValue);
132 _NPN_GetProperty(0, object, _NPN_GetIntIdentifier(i), &npvValue);
144 _NPN_GetProperty(0, object, _NPN_GetIntIdentifier(i), &npvValue);
156 _NPN_GetProperty(0, object, _NPN_GetIntIdentifier(i), &npvValue);
171 _NPN_GetProperty(0, object, _NPN_GetIntIdentifier(i), &npvValue)
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
ScrollbarEfl.cpp 67 static void scrollbarEflEdjeMessage(void* data, Evas_Object* object, Edje_Message_Type messageType, int id, void* message)
92 Evas_Object* object = evasObject(); local
97 if (!object) {
101 object = edje_object_add(view->evas());
102 if (!object) {
103 EINA_LOG_ERR("Could not create edje object for view=%p (evas=%p)",
107 edje_object_message_handler_set(object, scrollbarEflEdjeMessage, this);
108 setEvasObject(object);
110 evas_object_hide(object);
120 evas_object_hide(object);
196 Evas_Object* object = platformWidget(); local
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.cpp 197 JSObject* object = exec->callee(); local
198 ASSERT(object->inherits(&JSNPObject::s_info));
200 return JSValue::encode(static_cast<JSNPObject*>(object)->callObject(exec));
412 return throwError(exec, createReferenceError(exec, "Trying to access object from destroyed plug-in."));
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginTest.h 113 template<typename T> struct Object : NPObject {
117 Object* object = static_cast<Object*>(pluginTest->NPN_CreateObject(npClass())); local
119 object->m_pluginTest = pluginTest;
120 return object;
155 Object()
160 virtual ~Object()
  /libcore/json/src/test/java/org/json/
ParsingTest.java 164 assertParsed(object("foo", 5), "{\"foo\": 5}");
165 assertParsed(object("foo", 5), "{foo: 5}");
166 assertParsed(object("foo", 5, "bar", "baz"), "{\"foo\": 5, \"bar\": \"baz\"}");
167 assertParsed(object("foo", 5, "bar", "baz"), "{\"foo\": 5; \"bar\": \"baz\"}");
168 assertParsed(object("foo", 5, "bar", "baz"), "{\"foo\"= 5; \"bar\"= \"baz\"}");
169 assertParsed(object("foo", 5, "bar", "baz"), "{\"foo\"=> 5; \"bar\"=> \"baz\"}");
170 assertParsed(object("foo", object(), "bar", array()), "{\"foo\"=> {}; \"bar\"=> []}");
171 assertParsed(object("foo", object("foo", array(5, 6))), "{\"foo\": {\"foo\": [5, 6]}}")
224 private JSONObject object(Object... keyValuePairs) throws JSONException { method in class:ParsingTest
257 JSONObject object = (JSONObject) input; local
    [all...]
SelfUseTest.java 42 private final JSONObject object = new JSONObject() { field in class:SelfUseTest
43 @Override public JSONObject put(String name, Object value) throws JSONException {
47 @Override public Object get(String name) throws JSONException {
51 @Override public Object opt(String name) {
78 @Override public JSONArray put(int index, Object value) throws JSONException {
82 @Override public Object get(int index) throws JSONException {
86 @Override public Object opt(int index) {
117 @Override public Object nextValue() throws JSONException {
125 object.putOpt("foo", "bar");
130 object.accumulate("foo", "bar")
    [all...]
  /libcore/luni/src/main/java/java/io/
SerializationHandleMap.java 20 * A specialization of IdentityHashMap<Object, int> for use when serializing objects.
21 * We need to assign each object we write an int 'handle' (densely packed but not starting
22 * at zero), and use the same handle any time we write the same object again.
28 private Object[] keys;
45 Object[] oldKeys = keys;
48 this.keys = new Object[newSize];
53 Object key = oldKeys[i];
62 public int get(Object key) {
74 private int findIndex(Object key, Object[] array)
128 Object object; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldObjectInputStreamGetFieldTest.java 71 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); local
75 assertTrue("Test 1: The object read from the reference file does " +
77 object.equals(newObject));
86 assertTrue("Test 2: The object read from the reference file does " +
99 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); local
100 ObjectInputStream.GetField fields = object.getField;
123 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); local
124 ObjectInputStream.GetField fields = object.getField;
170 fields.get("noValue", new Object());
172 "argument in get(String, Object).")
239 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); local
    [all...]
  /ndk/sources/cxx-stl/gabi++/src/
dynamic_cast.cc 52 // Return the vtable pointer of a polymorphic object pointed by p.
69 // Return offset to object in a vtable.
80 // Return the virtual pointer to the most derived object of referred by a
91 // We assume that -1 cannot be a valid pointer to object.
98 get_subobject(const void* object,
109 return adjust_pointer(object, offset);
112 // Helper of __dyanmic_cast to walk the type tree of an object.
115 walk_object(const void *object,
121 return (match_object == NULL || object == match_object) ? object : NULL
182 const void* object; member in struct:__anon16689::cast_context
    [all...]
  /system/media/mca/filterfw/java/android/filterfw/core/
SimpleFrame.java 35 private Object mObject;
43 static SimpleFrame wrapObject(Object object, FrameManager frameManager) {
44 FrameFormat format = ObjectFormat.fromObject(object, FrameFormat.TARGET_SIMPLE);
46 result.setObjectValue(object);
85 public Object getObjectValue() {
140 protected void setGenericObjectValue(Object object) {
146 setFormatObjectClass(object.getClass());
147 } else if (!format.getObjectClass().isAssignableFrom(object.getClass()))
    [all...]
  /development/apps/OBJViewer/com/android/objviewer/
OBJViewer.java 53 // Paint object for drawing the FPS display
56 // GLView object to manage drawing
71 // Object bounds
106 // Hand the key to the GLView object first
176 // Load the object
217 // Scale object to fit in [-1, 1]
220 // Center the object at the origin
232 // Draw the object
233 Object3D object = OBJViewer.getObject(); local
234 object.draw(gl)
266 private static Object3D object = null; field in class:OBJViewer
    [all...]
  /libcore/json/src/main/java/org/json/
JSONObject.java 51 * coerced using {@link String#valueOf(Object)}. Although null cannot be
69 * named entry from the object but {@code put(name, JSONObject.NULL)} stores an
93 * <p>This value violates the general contract of {@link Object#equals} by
97 public static final Object NULL = new Object() {
98 @Override public boolean equals(Object o) {
106 private final Map<String, Object> nameValuePairs;
112 nameValuePairs = new HashMap<String, Object>();
142 * object in the tokener.
154 Object object = readFrom.nextValue() local
375 Object object = get(name); local
396 Object object = opt(name); local
409 Object object = get(name); local
430 Object object = opt(name); local
443 Object object = get(name); local
464 Object object = opt(name); local
477 Object object = get(name); local
498 Object object = opt(name); local
510 Object object = get(name); local
531 Object object = opt(name); local
544 Object object = get(name); local
557 Object object = opt(name); local
569 Object object = get(name); local
582 Object object = opt(name); local
    [all...]
  /libcore/luni/src/main/java/java/lang/
Daemons.java 27 * Calls Object.finalize() on objects in the finalizer reference queue. The VM
160 private final ReferenceQueue<Object> queue = FinalizerReference.queue;
161 private volatile Object finalizingObject;
177 Object object = reference.get(); local
181 finalizingObject = object;
182 object.finalize();
202 Object object = FinalizerDaemon.INSTANCE.finalizingObject; local
206 if (object != null)
    [all...]
  /cts/libs/vogar-expect/src/vogar/commands/
Command.java 234 public Builder args(Object... objects) {
235 for (Object object : objects) {
236 args(object.toString());

Completed in 1586 milliseconds

1 2 3 45 6 7 8 91011>>