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

1234567891011>>

/external/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);
H A Dregress-crbug-599003.js10 var obj = new A();
11 obj.v0 = 0;
12 obj.v1 = 0;
13 obj.v2 = 0;
14 obj.v3 = 0;
15 obj.v4 = 0;
16 obj.v5 = 0;
17 obj.v6 = 0;
18 obj.v7 = 0;
19 obj
[all...]
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-4659.js5 var obj = {
10 assertEquals(42, obj.longerName);
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]);
/external/lzma/CPP/7zip/UI/Console/
H A DConsole.mak2 $O\BenchCon.obj \
3 $O\ConsoleClose.obj \
4 $O\ExtractCallbackConsole.obj \
5 $O\HashCon.obj \
6 $O\List.obj \
7 $O\Main.obj \
8 $O\MainAr.obj \
9 $O\OpenCallbackConsole.obj \
10 $O\PercentPrinter.obj \
11 $O\UpdateCallbackConsole.obj \
[all...]
H A Dmakefile13 $O\CommandLineParser.obj \
14 $O\CRC.obj \
15 $O\IntToString.obj \
16 $O\ListFileUtils.obj \
17 $O\NewHandler.obj \
18 $O\StdInStream.obj \
19 $O\StdOutStream.obj \
20 $O\MyString.obj \
21 $O\StringConvert.obj \
22 $O\StringToInt.obj \
[all...]
/external/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...]
H A Dundetectable.js7 var obj = %GetUndetectable(); variable
18 assertTrue(!obj);
19 assertFalse(!!obj);
20 assertFalse(obj == true);
21 assertFalse(obj == false);
22 assertFalse(obj === true);
23 assertFalse(obj === false);
24 assertEquals(2, obj ? 1 : 2);
25 assertEquals(obj, true && obj);
[all...]
/external/v8/test/mjsunit/ignition/
H A Dregress-612386-smi-to-double-transition.js7 function keyed_store(obj, key, value) {
8 obj[key] = value;
12 obj = {};
13 obj.smi = 1;
14 obj.dbl = 1.5;
15 obj.obj = {a:1};
18 keyed_store(obj, "smi", 100);
19 keyed_store(obj, "dbl", 100);
20 keyed_store(obj, "ob
[all...]
/external/lzma/CPP/7zip/Bundles/LzmaCon/
H A Dmakefile6 $O\LzmaAlone.obj \
9 $O\LzmaDecoder.obj \
10 $O\LzmaEncoder.obj \
11 $O\LzmaRegister.obj \
14 $O\CommandLineParser.obj \
15 $O\CRC.obj \
16 $O\CrcReg.obj \
17 $O\IntToString.obj \
18 $O\MyString.obj \
19 $O\NewHandler.obj \
[all...]
/external/lzma/CPP/7zip/Bundles/Format7zR/
H A Dmakefile7 $O\CRC.obj \
8 $O\CrcReg.obj \
9 $O\IntToString.obj \
10 $O\NewHandler.obj \
11 $O\MyString.obj \
12 $O\StringConvert.obj \
13 $O\StringToInt.obj \
14 $O\MyVector.obj \
15 $O\Wildcard.obj \
18 $O\FileDir.obj \
[all...]
/external/lzma/CPP/7zip/Bundles/SFXCon/
H A Dmakefile9 $O\SfxCon.obj \
12 $O\ConsoleClose.obj \
13 $O\ExtractCallbackConsole.obj \
14 $O\List.obj \
15 $O\MainAr.obj \
16 $O\OpenCallbackConsole.obj \
17 $O\UserInputUtils.obj \
20 $O\CommandLineParser.obj \
21 $O\CRC.obj \
22 $O\IntToString.obj \
[all...]
/external/chromium-trace/catapult/third_party/Paste/paste/util/
H A Dconverters.py7 def asbool(obj):
8 if isinstance(obj, (six.binary_type, six.text_type)):
9 obj = obj.strip().lower()
10 if obj in ['true', 'yes', 'on', 'y', 't', '1']:
12 elif obj in ['false', 'no', 'off', 'n', 'f', '0']:
16 "String is not true/false: %r" % obj)
17 return bool(obj)
19 def aslist(obj, sep=None, strip=True):
20 if isinstance(obj, (si
[all...]
/external/autotest/client/common_lib/test_utils/
H A Dmock_demo_MUT.py4 obj = E(val=7)
5 print obj.method1()
/external/icu/icu4c/source/common/
H A Duhash_us.cpp19 uhash_deleteHashtable(void *obj) { argument
21 delete (Hashtable*) obj;
/external/lzma/CPP/7zip/Bundles/Alone7z/
H A Dmakefile10 $O\CommandLineParser.obj \
11 $O\CRC.obj \
12 $O\CrcReg.obj \
13 $O\IntToString.obj \
14 $O\ListFileUtils.obj \
15 $O\NewHandler.obj \
16 $O\StdInStream.obj \
17 $O\StdOutStream.obj \
18 $O\MyString.obj \
19 $O\Sha256Reg.obj \
[all...]
/external/lzma/C/Util/7z/
H A Dmakefile7 $O\7zAlloc.obj \
8 $O\7zBuf.obj \
9 $O\7zCrc.obj \
10 $O\7zCrcOpt.obj \
11 $O\7zFile.obj \
12 $O\7zDec.obj \
13 $O\7zArcIn.obj \
14 $O\7zStream.obj \
15 $O\Bcj2.obj \
16 $O\Bra.obj \
[all...]

Completed in 692 milliseconds

1234567891011>>