Searched refs:obj (Results 1 - 25 of 2873) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1203459.js29 var obj = { 0.2 : 'a' }
H A Dregress-1103.js31 var obj = this;
32 obj = Object.freeze(obj);
H A Dregress-350884.js5 var obj = new Array(1);
6 obj[0] = 0;
7 obj[1] = 0;
9 obj[flag_index]++;
12 // Force dictionary properties on obj.
13 obj[-8] = 3;
H A Dregress-1120.js31 var obj = this;
32 Object.freeze(obj);
33 assertFalse(Object.isExtensible(obj));
H A Dregress-612.js32 obj = {}
35 obj.__defineGetter__('foobar', function() { return 42; })
38 obj.a = 1
39 obj.b = 2;
40 obj.c = 3;
44 obj.__defineGetter__('foobar', function() { return 42; })
H A Dregress-712.js33 var obj = {};
34 Object.defineProperty(obj, "x", { get: function() { return "42"; },
36 assertEquals(obj.x, "42");
37 Object.defineProperty(obj, 'x', {});
38 assertEquals(obj.x, "42");
H A Dregress-crbug-72736.js33 var obj = {};
34 Object.defineProperty(obj, 'foo', { value: 10, configurable: true });
35 assertEquals(obj.foo, 10);
36 Object.defineProperty(obj, 'foo', { value: 20, configurable: true });
37 assertEquals(obj.foo, 20);
H A Dregress-2566.js28 function setProp(obj, prop, val) {
29 obj[prop] = val;
31 var obj = []; variable
32 setProp(obj, 'length', 1);
33 setProp(obj, 0, 5);
34 assertEquals(1, obj.length);
/external/chromium_org/v8/test/mjsunit/
H A Dfast-non-keyed.js33 function AddProps(obj) {
35 obj["x" + i] = 0;
40 function AddPropsNonKeyed(obj) {
41 obj.x0 = 0;
42 obj.x1 = 0;
43 obj.x2 = 0;
44 obj.x3 = 0;
45 obj.x4 = 0;
46 obj.x5 = 0;
47 obj
[all...]
/external/lldb/test/python_api/default-constructor/
H A Dsb_symbolcontext.py8 def fuzz_obj(obj):
9 obj.GetModule()
10 obj.GetCompileUnit()
11 obj.GetFunction()
12 obj.GetBlock()
13 obj.GetLineEntry()
14 obj.GetSymbol()
15 obj.GetDescription(lldb.SBStream())
H A Dsb_error.py8 def fuzz_obj(obj):
9 obj.GetCString()
10 obj.Fail()
11 obj.Success()
12 obj.GetError()
13 obj.GetType()
14 obj.SetError(5, lldb.eErrorTypeGeneric)
15 obj.SetErrorToErrno()
16 obj.SetErrorToGenericError()
17 obj
[all...]
H A Dsb_filespec.py8 def fuzz_obj(obj):
9 obj.Exists()
10 obj.ResolveExecutableLocation()
11 obj.GetFilename()
12 obj.GetDirectory()
13 obj.GetPath(None, 0)
14 obj.GetDescription(lldb.SBStream())
H A Dsb_lineentry.py8 def fuzz_obj(obj):
9 obj.GetStartAddress()
10 obj.GetEndAddress()
11 obj.GetFileSpec()
12 obj.GetLine()
13 obj.GetColumn()
14 obj.GetDescription(lldb.SBStream())
H A Dsb_section.py8 def fuzz_obj(obj):
9 obj.IsValid()
10 obj.GetName()
11 obj.FindSubSection("hello_section_name")
12 obj.GetNumSubSections()
13 obj.GetSubSectionAtIndex(600)
14 obj.GetFileAddress()
15 obj.GetByteSize()
16 obj.GetFileOffset()
17 obj
[all...]
H A Dsb_watchpoint.py8 def fuzz_obj(obj):
9 obj.GetID()
10 obj.IsValid()
11 obj.GetHardwareIndex()
12 obj.GetWatchAddress()
13 obj.GetWatchSize()
14 obj.SetEnabled(True)
15 obj.IsEnabled()
16 obj.GetHitCount()
17 obj
[all...]
H A Dsb_breakpoint.py8 def fuzz_obj(obj):
9 obj.GetID()
10 obj.ClearAllBreakpointSites()
11 obj.FindLocationByAddress(sys.maxint)
12 obj.FindLocationIDByAddress(sys.maxint)
13 obj.FindLocationByID(0)
14 obj.GetLocationAtIndex(0)
15 obj.SetEnabled(True)
16 obj.IsEnabled()
17 obj
[all...]
H A Dsb_thread.py8 def fuzz_obj(obj):
9 obj.GetStopReason()
10 obj.GetStopReasonDataCount()
11 obj.GetStopReasonDataAtIndex(100)
12 obj.GetStopDescription(256)
13 obj.GetThreadID()
14 obj.GetIndexID()
15 obj.GetName()
16 obj.GetQueueName()
17 obj
[all...]
H A Dsb_value.py8 def fuzz_obj(obj):
9 obj.GetError()
10 obj.GetID()
11 obj.GetName()
12 obj.GetTypeName()
13 obj.GetByteSize()
14 obj.IsInScope()
15 obj.GetFormat()
16 obj.SetFormat(lldb.eFormatBoolean)
17 obj
[all...]
H A Dsb_breakpointlocation.py8 def fuzz_obj(obj):
9 obj.GetAddress()
10 obj.GetLoadAddress()
11 obj.SetEnabled(True)
12 obj.IsEnabled()
13 obj.SetCondition("i >= 10")
14 obj.GetCondition()
15 obj.SetThreadID(0)
16 obj.GetThreadID()
17 obj
[all...]
H A Dsb_block.py8 def fuzz_obj(obj):
9 obj.IsInlined()
10 obj.GetInlinedName()
11 obj.GetInlinedCallSiteFile()
12 obj.GetInlinedCallSiteLine()
13 obj.GetInlinedCallSiteColumn()
14 obj.GetParent()
15 obj.GetSibling()
16 obj.GetFirstChild()
17 obj
[all...]
H A Dsb_target.py8 def fuzz_obj(obj):
9 obj.GetProcess()
12 obj.Launch(listener, None, None, None, None, None, None, 0, True, error)
13 obj.LaunchSimple(None, None, None)
14 obj.AttachToProcessWithID(listener, 123, error)
15 obj.AttachToProcessWithName(listener, 'lldb', False, error)
16 obj.ConnectRemote(listener, "connect://to/here", None, error)
17 obj.GetExecutable()
18 obj.GetNumModules()
19 obj
[all...]
H A Dsb_process.py8 def fuzz_obj(obj):
9 obj.GetTarget()
10 obj.GetByteOrder()
11 obj.PutSTDIN("my data")
12 obj.GetSTDOUT(6)
13 obj.GetSTDERR(6)
15 obj.ReportEventState(event, None)
16 obj.AppendEventStateReport(event, lldb.SBCommandReturnObject())
18 obj.RemoteAttachToProcessWithID(123, error)
19 obj
[all...]
H A Dsb_inputreader.py8 def fuzz_obj(obj):
10 obj.Initialize(lldb.SBDebugger.Create(), None, 0, "$", "^", True)
13 obj.IsActive()
14 obj.IsDone()
15 obj.SetIsDone(True)
16 obj.GetGranularity()
H A Dsb_valuelist.py8 def fuzz_obj(obj):
9 obj.Append(lldb.SBValue())
10 obj.GetSize()
11 obj.GetValueAtIndex(100)
12 obj.FindValueObjectByUID(200)
13 for val in obj:
/external/chromium_org/v8/test/mjsunit/es7/
H A Dobject-observe-runtime.js10 var obj = {};
11 %SetIsObserved(obj);
13 %SetIsObserved(obj);

Completed in 223 milliseconds

1234567891011>>