Searched refs:obj (Results 26 - 50 of 2873) sorted by relevance

1234567891011>>

/external/lldb/test/python_api/default-constructor/
H A Dsb_debugger.py8 def fuzz_obj(obj):
9 obj.SetAsync(True)
10 obj.SetAsync(False)
11 obj.GetAsync()
12 obj.SkipLLDBInitFiles(True)
13 obj.SetInputFileHandle(None, True)
14 obj.SetOutputFileHandle(None, True)
15 obj.SetErrorFileHandle(None, True)
16 obj.GetInputFileHandle()
17 obj
[all...]
H A Dsb_communication.py8 def fuzz_obj(obj):
9 broadcaster = obj.GetBroadcaster()
10 # Do fuzz testing on the broadcaster obj, it should not crash lldb.
13 obj.AdoptFileDesriptor(0, False)
14 obj.AdoptFileDesriptor(1, False)
15 obj.AdoptFileDesriptor(2, False)
16 obj.Connect("file:/tmp/myfile")
17 obj.Connect(None)
18 obj.Disconnect()
19 obj
[all...]
H A Dsb_instruction.py8 def fuzz_obj(obj):
9 obj.GetAddress()
10 obj.GetByteSize()
11 obj.DoesBranch()
12 obj.Print(None)
13 obj.GetDescription(lldb.SBStream())
14 obj.EmulateWithFrame(lldb.SBFrame(), 0)
15 obj.DumpEmulation("armv7")
16 obj.TestEmulation(lldb.SBStream(), "my-file")
H A Dsb_instructionlist.py8 def fuzz_obj(obj):
9 obj.GetSize()
10 obj.GetInstructionAtIndex(0xffffffff)
11 obj.AppendInstruction(lldb.SBInstruction())
12 obj.Print(None)
13 obj.GetDescription(lldb.SBStream())
14 obj.DumpEmulationForAllInstructions("armv7")
15 obj.Clear()
16 for inst in obj:
H A Dsb_stringlist.py8 def fuzz_obj(obj):
9 obj.AppendString("another string")
10 obj.AppendString(None)
11 obj.AppendList(None, 0)
12 obj.AppendList(lldb.SBStringList())
13 obj.GetSize()
14 obj.GetStringAtIndex(0xffffffff)
15 obj.Clear()
16 for str in obj:
H A Dsb_symbol.py8 def fuzz_obj(obj):
9 obj.GetName()
10 obj.GetMangledName()
11 obj.GetInstructions(lldb.SBTarget())
12 obj.GetStartAddress()
13 obj.GetEndAddress()
14 obj.GetPrologueByteSize()
15 obj.GetType()
16 obj.GetDescription(lldb.SBStream())
H A Dsb_address.py8 def fuzz_obj(obj):
9 obj.GetFileAddress()
10 obj.GetLoadAddress(lldb.SBTarget())
11 obj.SetLoadAddress(0xffff, lldb.SBTarget())
12 obj.OffsetAddress(sys.maxint)
13 obj.GetDescription(lldb.SBStream())
14 obj.GetSection()
15 obj.GetSymbolContext(lldb.eSymbolContextEverything)
16 obj.GetModule()
17 obj
[all...]
H A Dsb_type.py8 def fuzz_obj(obj):
9 obj.GetName()
10 obj.GetByteSize()
11 #obj.GetEncoding(5)
12 obj.GetNumberChildren(True)
14 obj.GetChildAtIndex(True, 0, member)
15 obj.GetChildIndexForName(True, "_member_field")
16 obj.IsAPointerType()
17 obj.GetPointeeType()
18 obj
[all...]
H A Dsb_function.py8 def fuzz_obj(obj):
9 obj.GetName()
10 obj.GetMangledName()
11 obj.GetInstructions(lldb.SBTarget())
12 sa = obj.GetStartAddress()
13 ea = obj.GetEndAddress()
14 # Do fuzz testing on the address obj, it should not crash lldb.
18 obj.GetPrologueByteSize
19 obj.GetDescription(lldb.SBStream())
H A Dsb_frame.py8 def fuzz_obj(obj):
9 obj.GetFrameID()
10 obj.GetPC()
11 obj.SetPC(0xffffffff)
12 obj.GetSP()
13 obj.GetFP()
14 obj.GetPCAddress()
15 obj.GetSymbolContext(0)
16 obj.GetModule()
17 obj
[all...]
H A Dsb_module.py8 def fuzz_obj(obj):
9 obj.GetFileSpec()
10 obj.GetPlatformFileSpec()
11 obj.SetPlatformFileSpec(lldb.SBFileSpec())
12 obj.GetUUIDString()
13 obj.ResolveFileAddress(sys.maxint)
14 obj.ResolveSymbolContextForAddress(lldb.SBAddress(), 0)
15 obj.GetDescription(lldb.SBStream())
16 obj.GetNumSymbols()
17 obj
[all...]
H A Dsb_compileunit.py8 def fuzz_obj(obj):
9 obj.GetFileSpec()
10 obj.GetNumLineEntries()
11 obj.GetLineEntryAtIndex(0xffffffff)
12 obj.FindLineEntryIndex(0, 0xffffffff, None)
13 obj.GetDescription(lldb.SBStream())
14 for line_entry in obj:
H A Dsb_event.py8 def fuzz_obj(obj):
9 obj.GetDataFlavor()
10 obj.GetType()
11 broadcaster = obj.GetBroadcaster()
12 # Do fuzz testing on the broadcaster obj, it should not crash lldb.
15 obj.BroadcasterMatchesRef(broadcaster)
16 obj.GetDescription(lldb.SBStream())
17 obj.Clear()
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2291.js30 var obj = new Object(); class
32 obj == obj; // Populate IC cache with non-strict comparison.
34 StrictCompare(obj); // Set IC in StrictCompare from IC cache.
H A Dregress-1563.js30 obj = new Uint8ClampedArray(10);
34 function set_pixel(obj, arg) {
35 obj[0] = arg;
38 set_pixel(obj, 1.5);
39 set_pixel(obj, NaN);
41 set_pixel(obj, undefined);
42 set_pixel(obj, undefined);
44 assertEquals(0, obj[0]);
H A Dregress-753.js34 var obj = {a1: {b1: [1,2,3,4], b2: {c1: 1, c2: 2}},a2: 'a2'};
35 assertEquals(JSON.stringify(obj, null, 5.99999), JSON.stringify(obj, null, 5));
H A Dregress-842.js36 var obj = { name: "n1" };
39 obj = Object.freeze(obj);
/external/chromium_org/third_party/icu/source/common/
H A Duhash_us.cpp19 uhash_deleteHashtable(void *obj) { argument
21 delete (Hashtable*) obj;
/external/icu/icu4c/source/common/
H A Duhash_us.cpp19 uhash_deleteHashtable(void *obj) { argument
21 delete (Hashtable*) obj;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dproperty-stores.js32 var obj = {x: 0,
38 for (i = 0; i < 5; i++) { obj.f(); }
39 %OptimizeFunctionOnNextCall(obj.f);
40 obj.f();
41 assertEquals(7, obj.x);
43 for (i = 0; i < 5; i++) { obj.g(); }
44 %OptimizeFunctionOnNextCall(obj.g);
45 obj.g();
46 assertEquals(43, obj.x);
48 for (i = 0; i < 5; i++) { obj
[all...]
/external/qemu/android/utils/
H A Dvector.h26 #define AVECTOR_SIZE(obj,name) \
27 (obj)->num_##name
29 #define AVECTOR_INIT(obj,name) \
31 (obj)->name = NULL; \
32 (obj)->num_##name = 0; \
33 (obj)->max_##name = 0; \
36 #define AVECTOR_INIT_ALLOC(obj,name,count) \
38 AARRAY_NEW0( (obj)->name, (count) ); \
39 (obj)->num_##name = 0; \
40 (obj)
[all...]
/external/lzma/C/Util/7z/
H A Dmakefile7 $O\7zAlloc.obj \
8 $O\7zBuf.obj \
9 $O\7zBuf2.obj \
10 $O\7zCrc.obj \
11 $O\7zCrcOpt.obj \
12 $O\7zFile.obj \
13 $O\7zDec.obj \
14 $O\7zIn.obj \
15 $O\7zStream.obj \
16 $O\Bcj2.obj \
[all...]
/external/libcxx/test/atomics/atomics.types.generic/
H A Dbool.pass.cpp60 volatile std::atomic<bool> obj(true);
61 assert(obj == true);
62 std::atomic_init(&obj, false);
63 assert(obj == false);
64 std::atomic_init(&obj, true);
65 assert(obj == true);
66 bool b0 = obj.is_lock_free();
67 obj.store(false);
68 assert(obj == false);
69 obj
[all...]
/external/zlib/src/watcom/
H A Dwatcom_l.mak12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
13 gzclose.obj gzlib.obj gzread.obj gzwrite.obj &
14 infback.obj inffast.obj inflat
[all...]
/external/chromium_org/v8/test/webkit/
H A Darray-tostring-and-join.js31 var obj = {};
32 obj.__proto__.toString = function() { return "*" + arr + "*"; }
34 arr[3] = obj;

Completed in 388 milliseconds

1234567891011>>