HomeSort by relevance Sort by last modified time
    Searched defs:Object (Results 51 - 75 of 86) sorted by null

1 23 4

  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 140 // This anchor is used to force the linker to link in the generated object file
250 llvm::yaml::MappingNode *Object = dyn_cast<llvm::yaml::MappingNode>(&*AI);
251 if (Object == NULL) {
252 ErrorMessage = "Expected object.";
258 for (llvm::yaml::MappingNode::iterator KVI = Object->begin(),
259 KVE = Object->end();
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 438 const Value *Object = GetUnderlyingObject(MemLoc.Ptr, TD);
439 if (!isIdentifiedObject(Object) || isa<GlobalValue>(Object) ||
440 isa<Constant>(Object))
444 if (!CS.getInstruction() || CS.getInstruction() == Object)
448 llvm::PointerMayBeCaptured(Object, &CB);
467 AliasAnalysis::Location(Object))) {
541 /// identifiable object. This returns true for:
BasicAliasAnalysis.cpp 46 /// object that never escapes from the function.
85 /// getObjectSize - Return the size of the object specified by V, or
96 /// isObjectSmallerThan - Return true if we can prove that the object specified
101 // This function needs to use the aligned object size because we allow
108 /// isObjectSize - Return true if we can prove that the object specified
649 /// specified memory object. Since we only look at local properties of this
658 const Value *Object = GetUnderlyingObject(Loc.Ptr, TD);
665 if (isa<AllocaInst>(Object))
670 // If the pointer is to a locally allocated object that does not escape,
673 if (!isa<Constant>(Object) && CS.getInstruction() != Object &
    [all...]
  /external/v8/src/
runtime.js 44 var $Object = global.Object;
82 // y is object.
88 // x is an object.
373 // If V is not an object, return false.
384 // Get the prototype of F; if it is not an object, throw an error.
395 // Filter a given key against an object by checking if the object
481 // Convert the receiver to an object - forward to ToObject.
616 // Returns if the given x is a primitive value - not an object or
    [all...]
factory.cc 306 Handle<Object> thrown_object) {
373 // Create and initialize script object.
433 Handle<Object> value) {
549 // Store the object, regexp and array functions in the literals
551 // object, regexp and array literals in this function.
569 Handle<Object> Factory::NewNumber(double value,
573 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
577 Handle<Object> Factory::NewNumberFromInt(int32_t value,
581 isolate()->heap()->NumberFromInt32(value, pretenure), Object);
585 Handle<Object> Factory::NewNumberFromUint(uint32_t value
652 Handle<JSArray> object = NewJSArrayWithElements(array); local
    [all...]
objects.h 46 // Most object types in the V8 JavaScript are described in this file.
49 // - MaybeObject (an object or a failure)
51 // - Object
125 // Formats of Object*:
204 // Indicates whether a get method should implicitly create the object looked up.
218 // As an example, a JavaScript object is a heap object and its map
233 // Object::IsString.
237 // 'object', whereas JS_FUNCTION_TYPE has typeof 'function'.
273 /* Object::IsExternalArray(). */
    [all...]
  /external/v8/test/mjsunit/harmony/
proxies.js 40 // Getting property descriptors (Object.getOwnPropertyDescriptor).
50 assertEquals(42, Object.getOwnPropertyDescriptor(p, "a").value)
52 assertEquals(42, Object.getOwnPropertyDescriptor(p, 99).value)
93 assertThrows(function(){ Object.getOwnPropertyDescriptor(p, "a") }, "myexn")
94 assertThrows(function(){ Object.getOwnPropertyDescriptor(p, 77) }, "myexn")
143 var o = Object.create(p, {x: {value: 88}})
216 var o = Object.create(p, {g: {value: function(x) { return x + 88 }}})
305 var o = Object.create(p, {x: {value: 88}, '4': {value: 89}})
584 var o = Object.create(p, {x: {value: 88, writable: true},
615 assertFalse(Object.prototype.hasOwnProperty.call(o, "p_setter")
    [all...]
  /external/iproute2/doc/
ip-cref.tex 45 ip [ OPTIONS ] OBJECT [ COMMAND [ ARGUMENTS ]]
108 \verb|OBJECT| is the object to manage or to get information about.
109 The object types currently understood by \verb|ip| are:
126 \verb|COMMAND| specifies the action to perform on the object.
127 The set of possible actions depends on the object type.
139 The arguments depend on the command and object. There are two types of arguments:
228 \paragraph{Object:} A \verb|link| is a network device and the corresponding
550 \paragraph{Object:} The \verb|address| is a protocol (IP or IPv6) address attached
837 \paragraph{Object:} \verb|neighbour| objects establish bindings between protoco
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 10 // This file contains an implementation of a Win32 COFF object file writer.
135 // Maps used during object file creation.
355 object_t *Object = new object_t(Name);
357 List.push_back(Object);
359 return Object;
362 /// This function takes a section data object from the assembler
363 /// and creates the associated COFF section staging object.
411 /// This function takes a section data object from the assembler
412 /// and creates the associated COFF symbol staging object.
761 // Assign file offsets to COFF object file structures
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 52 Object = 1,
104 /// setRegular - set the source of the file is a regular object
107 /// setDynamic - set the source of the file is a dynamic object
111 /// @param pIsDyn is the source from a dynamic object?
260 static const uint32_t object_flag = Object << TYPE_OFFSET;
  /dalvik/vm/oo/
Object.h 18 * Declaration of the fundamental Object type and refinements thereof, plus
151 #define CLASS_SMALLEST_OFFSET (sizeof(struct Object))
199 * Array objects - an object created with a "new array" instruction
200 * Data objects - an object that is neither of the above
206 * All objects have an Object header followed by type-specific data.
208 struct Object {
209 /* ptr to class object */
220 * Properly initialize an Object.
221 * void DVM_OBJECT_INIT(Object *obj, ClassObject *clazz_)
224 dvmSetFieldObject(obj, OFFSETOF_MEMBER(Object, clazz), clazz_
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArrayListTest.java 35 static Object[] objArray;
37 objArray = new Object[100];
96 * @tests java.util.ArrayList#add(int, java.lang.Object)
99 // Test for method void java.util.ArrayList.add(int, java.lang.Object)
100 Object o;
101 alist.add(50, o = new Object());
102 assertTrue("Failed to add Object", alist.get(50) == o);
106 Object oldItem = alist.get(25);
112 alist.add(0, o = new Object());
113 assertEquals("Failed to add Object", alist.get(0), o)
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 47 if (Object.isFunction(properties[0]))
54 Object.extend(klass, Class.Methods);
80 var properties = Object.keys(source);
82 if (!Object.keys({ toString: true }).length)
87 if (ancestor && Object.isFunction(value) &&
106 Object.extend = function(destination, source) {
112 Object.extend(Object, {
113 inspect: function(object) {
115 if (Object.isUndefined(object)) return 'undefined'
    [all...]
mootools-1.2.2-core-nc.js 3 MooTools - My Object Oriented JavaScript Tools.
33 var object = initialize || legacy;
36 object.constructor = Native;
37 object.$family = {name: 'native'};
38 if (legacy && initialize) object.prototype = legacy.prototype;
39 object.prototype.constructor = object;
43 object.prototype.$family = {name: family};
44 Native.typize(object, family);
54 object.alias = function(a1, a2, a3)
42 object.prototype.$family = {name: family}; class
    [all...]
  /external/v8/benchmarks/
raytrace.js 42 Object.extend = function(destination, source) {
357 Flog.RayTracer.Material.Solid.prototype = Object.extend(
382 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
608 this.options = Object.extend({
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-raytrace.js 37 Object.extend = function(destination, source) {
358 Flog.RayTracer.Material.Solid.prototype = Object.extend(
383 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
634 this.options = Object.extend({
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-raytrace.js 37 Object.extend = function(destination, source) {
358 Flog.RayTracer.Material.Solid.prototype = Object.extend(
383 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
634 this.options = Object.extend({
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-raytrace.js 37 Object.extend = function(destination, source) {
352 Flog.RayTracer.Material.Solid.prototype = Object.extend(
377 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
603 this.options = Object.extend({
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp 104 Object,
114 "RegExp", "Array", "RTObject", "Object", "Null", "RTArray"};
166 JSObject *object = val.toObject(exec); local
167 if (object->inherits(&RuntimeArray::s_info)) // RuntimeArray 'inherits' from Array, but not in C++
169 else if (object->inherits(&JSArray::s_info))
171 else if (object->inherits(&DateInstance::s_info))
173 else if (object->inherits(&RegExpObject::s_info))
175 else if (object->inherits(&RuntimeObject::s_info))
177 return Object;
190 JSObject* object = 0
682 JSObject* object = value.toObject(exec); local
    [all...]
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 170 assertSame(p.getLock().getClass(), Object.class);
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 329 // get from the temporary object we created (and, potentially, for which we
332 llvm::Value *Object = RV.getAggregateAddr();
337 Object =
338 CGF.GetAddressOfBaseClass(Object,
346 LValue LV = CGF.MakeAddrLValue(Object, E->getType());
349 Object = LV.getAddress();
354 // the object we're binding to.
357 Object = CreateReferenceTemporary(CGF, T, InitializedDecl);
358 LValue TempLV = CGF.MakeAddrLValue(Object,
366 Object = CGF.CGM.getCXXABI().EmitMemberDataPointerAddress
    [all...]
  /external/v8/include/
v8.h 88 class Object;
114 class Object;
127 * This callback should either explicitly invoke Dispose on |object| if
130 * \param object the weak global object to be reclaimed by the garbage collector
131 * \param parameter the value passed in when making the weak global object
133 typedef void (*WeakReferenceCallback)(Persistent<Value> object,
145 * An object reference managed by the v8 garbage collector.
150 * point directly to an object. Instead, all objects are stored in
152 * whenever an object moves. Handles should always be passed by valu
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
TreeTransform.h 95 /// \brief Private RAII object that helps us forget and then re-remember
135 /// \brief Retrieves a reference to the semantic analysis object used for
168 /// \brief RAII object that temporarily sets the base location and entity
446 /// access expression, this is the type of the object whose member template
    [all...]
  /prebuilts/sdk/10/
android.jar 

Completed in 1770 milliseconds

1 23 4