Searched defs:Object (Results 26 - 50 of 107) sorted by relevance

12345

/external/v8/test/mjsunit/regress/
H A Dregress-crbug-3184.js28 Object.extend = function (dest, source) {
33 Object.extend ( Function.prototype,
70 Object.extend( Array.prototype,
H A Dregress-123512.js39 Object.prototype[0] = 23;
47 Object.prototype.__defineGetter__(0, function() { throw Error(); });
63 Object.prototype[0] = 23;
64 Object.prototype.foo = 42;
72 Object.prototype.__defineGetter__(0, function() { throw Error(); });
73 Object.prototype.__defineGetter__('foo', function() { throw Error(); });
36 Object.prototype[0] = 23; class
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/
H A Dobject.py24 class Object(Key): class in inherits:Key
27 super(Object, self).__init__(bucket, name=name)
31 return '<Object: %s/%s>' % (self.distribution.config.origin, self.name)
43 class StreamingObject(Object):
/external/clang/test/Parser/
H A Dnamelookup-bug-2.c4 typedef int Object; typedef
6 struct Object {int i1; } *P; struct
9 struct Object { int i2; } *X; struct
10 Object:
12 Object a;
/external/jsr305/ri/src/main/java/javax/annotation/meta/
H A DTypeQualifier.java25 Class<?> applicableTo() default Object.class;
/external/testng/src/main/java/org/testng/annotations/
H A DFactory.java8 * as Test classes. The method must return Object[].
38 public Class<?> dataProviderClass() default Object.class;
H A DTest.java103 public Class<?> dataProviderClass() default Object.class;
/external/v8/test/mjsunit/
H A Darguments-opt.js97 // Object access.
129 Object.prototype[5] = 42;
131 Object.prototype[-5] = 87;
125 Object.prototype[5] = 42; class
H A Dobj-construct.js30 function Object() { function
H A Dundeletable-functions.js86 CheckEcmaSemantics(Object.prototype, array, "Object prototype");
88 var old_Object_prototype = Object.prototype;
91 Object.prototype = new_Object_prototype;
92 assertEquals(old_Object_prototype, Object.prototype);
136 var hasOwnProperty = Object.prototype.hasOwnProperty;
90 Object.prototype = new_Object_prototype; class
/external/llvm/lib/Object/
H A DSymbolicFile.cpp14 #include "llvm/Object/COFF.h"
15 #include "llvm/Object/COFFImportFile.h"
16 #include "llvm/Object/IRObjectFile.h"
17 #include "llvm/Object/ObjectFile.h"
18 #include "llvm/Object/SymbolicFile.h"
30 MemoryBufferRef Object, sys::fs::file_magic Type, LLVMContext *Context) {
31 StringRef Data = Object.getBuffer();
38 return IRObjectFile::create(Object, *Context);
60 return ObjectFile::createObjectFile(Object, Type);
62 return std::unique_ptr<SymbolicFile>(new COFFImportFile(Object));
29 createSymbolicFile( MemoryBufferRef Object, sys::fs::file_magic Type, LLVMContext *Context) argument
[all...]
H A DObjectFile.cpp14 #include "llvm/Object/COFF.h"
15 #include "llvm/Object/MachO.h"
16 #include "llvm/Object/ObjectFile.h"
63 ObjectFile::createObjectFile(MemoryBufferRef Object, sys::fs::file_magic Type) { argument
64 StringRef Data = Object.getBuffer();
80 return createELFObjectFile(Object);
92 return createMachOObjectFile(Object);
96 return createCOFFObjectFile(Object);
98 llvm_unreachable("Unexpected Object File Type");
H A DFunctionIndexObjectFile.cpp14 #include "llvm/Object/FunctionIndexObjectFile.h"
19 #include "llvm/Object/ObjectFile.h"
26 MemoryBufferRef Object, std::unique_ptr<FunctionInfoIndex> I)
27 : SymbolicFile(Binary::ID_FunctionIndex, Object), Index(std::move(I)) {}
53 FunctionIndexObjectFile::findBitcodeInMemBuffer(MemoryBufferRef Object) { argument
54 sys::fs::file_magic Type = sys::fs::identify_magic(Object.getBuffer());
57 return Object;
62 ObjectFile::createObjectFile(Object, Type);
75 MemoryBufferRef Object, DiagnosticHandlerFunction DiagnosticHandler) {
76 ErrorOr<MemoryBufferRef> BCOrErr = findBitcodeInMemBuffer(Object);
25 FunctionIndexObjectFile( MemoryBufferRef Object, std::unique_ptr<FunctionInfoIndex> I) argument
74 hasFunctionSummaryInMemBuffer( MemoryBufferRef Object, DiagnosticHandlerFunction DiagnosticHandler) argument
87 create(MemoryBufferRef Object, DiagnosticHandlerFunction DiagnosticHandler, bool IsLazy) argument
110 findFunctionSummaryInMemBuffer( MemoryBufferRef Object, DiagnosticHandlerFunction DiagnosticHandler, StringRef FunctionName) argument
[all...]
/external/v8/test/mjsunit/es6/
H A Dstring-endswith.js136 Object.prototype[1] = 2; // try to break `arguments[1]`
132 Object.prototype[1] = 2; // try to break `arguments[1]` class
H A Dstring-startswith.js135 Object.prototype[1] = 2; // try to break `arguments[1]`
131 Object.prototype[1] = 2; // try to break `arguments[1]` class
H A Darray-copywithin.js46 assertArrayEquals("[object Arguments]", Object.prototype.toString.call(args));
188 return Object.freeze([1, , 3, , 4, 5]).copyWithin(2, 1, 4);
193 return Object.seal([1, , 3, , 4, 5]).copyWithin(2, 1, 4);
198 return Object.preventExtensions([1, , 3, , 4, 5]).copyWithin(2, 1, 4);
206 return Object.freeze([1, 2, 3, 4, 5]).copyWithin(0, 3);
211 return Object.seal([, 2, 3, 4, 5]).copyWithin(0, 3);
216 return Object.preventExtensions([ , 2, 3, 4, 5]).copyWithin(0, 3);
224 var arr = Object.defineProperty([1, 2, 3, 4, 5], 1, {
248 var arr = Object.defineProperty({ 0: 1, 1: 2, 2: 3, 3: 4, 4: 5 }, "length", {
328 // tamper the global Object prototyp
331 Object.prototype[3] = "FAKE"; class
[all...]
/external/v8/test/webkit/
H A Darray-holes.js105 Object.prototype[1] = "peekaboo";
134 delete Object.prototype[1];
103 Object.prototype[1] = "peekaboo"; class
/external/deqp/framework/delibs/decpp/
H A DdeUniquePtr.cpp34 class Object class in namespace:de::__anon3830
37 Object (bool& exists) function in class:de::__anon3830::Object
43 ~Object (void)
56 void operator() (Object* ptr)
66 MovePtr<Object> createObject (bool& exists)
68 UniquePtr<Object> objectPtr(new Object(exists));
80 UniquePtr<Object> ptr(new Object(exists));
92 UniquePtr<Object> pt
[all...]
H A DdeSharedPtr.cpp41 class Object class in namespace:de::__anon3825
44 Object (bool& exists) function in class:de::__anon3825::Object
50 virtual ~Object (void)
59 class DerivedObject : public Object
63 : Object(exists)
71 SharedPtrTestThread (const SharedPtr<Object>& ptr, const bool& exists)
88 SharedPtr<Object> ptrA(m_ptr);
90 SharedPtr<Object> ptrB;
92 ptrA = SharedPtr<Object>();
100 SharedPtr<Object> m_pt
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_type_hash_win.cc41 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { argument
/external/llvm/unittests/Support/
H A DArrayRecyclerTest.cpp19 struct Object { struct in namespace:__anon12785
21 Object *Other;
23 typedef ArrayRecycler<Object> ARO;
53 ArrayRecycler<Object> DUT;
56 Object *A1 = DUT.allocate(Cap, Allocator);
60 Object *A2 = DUT.allocate(Cap, Allocator);
64 Object *A3 = DUT.allocate(Cap, Allocator);
84 Object *A2x = DUT.allocate(Cap, Allocator);
93 Object *A3x = DUT.allocate(Cap, Allocator);
95 Object *A1
[all...]
/external/autotest/site_utils/
H A Dtest_runner_utils_unittest.py69 class Object(): class in function:TestRunnerUnittests.test_run_job
85 job1 = Object()
86 job2 = Object()
/external/llvm/lib/DebugInfo/PDB/
H A DPDBContext.cpp18 #include "llvm/Object/COFF.h"
23 PDBContext::PDBContext(const COFFObjectFile &Object, argument
26 ErrorOr<uint64_t> ImageBase = Object.getImageBase();
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1 //===-- llvm-objdump.cpp - Object file dumping utility for llvm -----------===//
36 #include "llvm/Object/Archive.h"
37 #include "llvm/Object/ELFObjectFile.h"
38 #include "llvm/Object/COFF.h"
39 #include "llvm/Object/MachO.h"
40 #include "llvm/Object/ObjectFile.h"
216 : Predicate(P), Object(O) {}
218 return SectionFilterIterator(Predicate, Object.section_begin(),
219 Object.section_end());
222 return SectionFilterIterator(Predicate, Object
228 llvm::object::ObjectFile const &Object; member in class:__anon12652::SectionFilter::llvm::object
[all...]
/external/pdfium/core/include/fpdfdoc/
H A Dfpdf_tagged.h31 enum { Invalid, Element, PageContent, StreamContent, Object } m_Type; enumerator in enum:CPDF_StructKid::__anon15855

Completed in 1895 milliseconds

12345