HomeSort by relevance Sort by last modified time
    Searched refs:new (Results 276 - 300 of 2099) sorted by null

<<11121314151617181920>>

  /external/valgrind/massif/tests/
overloaded-new.post.exp 2 Command: ./overloaded-new
44 99.73% (12,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
45 ->33.24% (4,000B) 0x........: main (overloaded-new.cpp:49)
47 ->33.24% (4,000B) 0x........: main (overloaded-new.cpp:50)
49 ->16.62% (2,000B) 0x........: main (overloaded-new.cpp:51)
51 ->16.62% (2,000B) 0x........: main (overloaded-new.cpp:52)
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ReplaceDialog.py 70 new = m.expand(repl)
73 new = None
75 new = repl
76 return new
106 new = self._replace_expand(m, repl)
107 if new is None:
112 if new == orig:
118 if new:
119 text.insert(first, new)
120 col = i + len(new)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ReplaceDialog.py 70 new = m.expand(repl)
73 new = None
75 new = repl
76 return new
106 new = self._replace_expand(m, repl)
107 if new is None:
112 if new == orig:
118 if new:
119 text.insert(first, new)
120 col = i + len(new)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ReplaceDialog.py 70 new = m.expand(repl)
73 new = None
75 new = repl
76 return new
106 new = self._replace_expand(m, repl)
107 if new is None:
112 if new == orig:
118 if new:
119 text.insert(first, new)
120 col = i + len(new)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ReplaceDialog.py 70 new = m.expand(repl)
73 new = None
75 new = repl
76 return new
106 new = self._replace_expand(m, repl)
107 if new is None:
112 if new == orig:
118 if new:
119 text.insert(first, new)
120 col = i + len(new)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
ProfileGrammarParser.cs 25 internal static readonly string[] tokenNames = new string[] {
48 new string[]
59 : this( input, new Profiler(null), new RecognizerSharedState() )
69 TreeAdaptor = new CommonTreeAdaptor();
70 ITreeAdaptor adap = new CommonTreeAdaptor();
81 TreeAdaptor = new CommonTreeAdaptor();
83 ITreeAdaptor adap = new CommonTreeAdaptor();
116 this.adaptor = new DebugTreeAdaptor(dbg,adaptor);
137 ProfileGrammarParser.prog_return retval = new ProfileGrammarParser.prog_return()
    [all...]
  /external/v8/test/intl/overrides/
security.js 31 throw new Error('Malicious method invoked.');
41 assertThrows('new Intl.Collator()');
42 assertThrows('new Intl.NumberFormat()');
43 assertThrows('new Intl.DateTimeFormat()');
46 assertDoesNotThrow('new Date().toLocaleString()');
47 assertDoesNotThrow('new Date().toLocaleDateString()');
48 assertDoesNotThrow('new Date().toLocaleTimeString()');
49 assertDoesNotThrow('new Number(12345.412).toLocaleString()');
50 assertDoesNotThrow('new String(\'abc\').localeCompare(\'bcd\')');
  /external/v8/test/mjsunit/es6/
regexp-constructor.js 10 throw new Error("should not be called");
14 var r = new RegExp("biep");
16 assertFalse(r === new RegExp(r));
25 get source() { throw new Error("should not be called") }
26 get flags() { throw new Error("should not be called") }
29 var r = new A("biep");
41 var r4 = new A(r2);
47 var r5 = new A(r);
94 var r = new A("biep");
collection-iterator.js 9 var s = new Set;
20 assertEquals(new Set().values().__proto__, SetIteratorPrototype);
21 assertEquals(new Set().entries().__proto__, SetIteratorPrototype);
35 var s = new Set;
55 var s = new Set;
70 var s = new Set;
99 var iter = new Set().values();
111 var iter = new Set().values();
118 var m = new Map;
129 assertEquals(new Map().values().__proto__, MapIteratorPrototype)
    [all...]
  /external/v8/test/mjsunit/regress/
regress-324028.js 30 assertThrows(function() { new Uint8Array(badObj); }, RangeError);
31 assertThrows(function() { new Uint8ClampedArray(badObj); }, RangeError);
32 assertThrows(function() { new Int8Array(badObj); }, RangeError);
33 assertThrows(function() { new Uint16Array(badObj); }, RangeError);
34 assertThrows(function() { new Int16Array(badObj); }, RangeError);
35 assertThrows(function() { new Uint32Array(badObj); }, RangeError);
36 assertThrows(function() { new Int32Array(badObj); }, RangeError);
37 assertThrows(function() { new Float32Array(badObj); }, RangeError);
38 assertThrows(function() { new Float64Array(badObj); }, RangeError);
polymorphic-accessor-test-context.js 10 var o1 = new (function() { })();
12 var o2 = new (function() { })();
14 var o3 = new (function() { })();
regress-4665.js 13 var buf = new Uint8Array(10)
22 var arr = new Uint8Array(arg)
29 var buf3 = new SecondBuffer(10)
  /external/v8/test/webkit/fast/js/
date-toisostring.js 39 shouldBe("new Date(-400).toISOString()", "'1969-12-31T23:59:59.600Z'");
40 shouldBe("new Date(0).toISOString()", "'1970-01-01T00:00:00.000Z'");
41 shouldBe("new Date('1 January 1500 UTC').toISOString()", "'1500-01-01T00:00:00.000Z'");
42 shouldBe("new Date('1 January 2000 UTC').toISOString()", "'2000-01-01T00:00:00.000Z'");
43 shouldBe("new Date('1 January 4000 UTC').toISOString()", "'4000-01-01T00:00:00.000Z'");
44 shouldBe("new Date('1 January 100000 UTC').toISOString()", "'+100000-01-01T00:00:00.000Z'");
45 shouldBe("new Date('1 January -1 UTC').toISOString()", "'-000001-01-01T00:00:00.000Z'");
46 shouldBe("new Date('10 March 2000 UTC').toISOString()", "'2000-03-10T00:00:00.000Z'");
47 shouldBeTrue('throwsRangeError("new Date(NaN).toISOString()")');
  /external/v8/test/webkit/fast/js/kde/
object_prototype_tostring.js 25 var _array = new Array(1,2,3);
28 var _string = new String("test");
31 var _boolean = new Boolean(true);
34 var _number = new Number(4);
37 var _object = new Object();
40 var _date = new Date();
43 var _regexp = new RegExp();
46 var _error = new Error();
49 var _function = new Function();
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-template.rb 9 MethodDescription = Struct.new( :name, :body, :arguments )
17 context = Template::Context.new
22 context = Template::Context.new(
35 context = Template::Context.new(
46 context = Template::Context.new( :a => 3 )
55 context = Template::Context.new( :a => 3 )
64 context = Template::Context.new( :a => 1, :b => 2)
132 @group = Template::Group.new do
179 MethodDescription.new( 'eat', %q[puts( "ate %s %s" % [ number, @name ] )], %w( number ) ),
180 MethodDescription.new( :to_s, '@name.to_s.dup'
    [all...]
  /external/autotest/client/deps/webgl_mpd/src/
cros_fps.js 13 this.frameDataBuf = new Array();
20 this.frameDataBuf[this.totalFrames % this.buffer_size] = new crosFrameData(
29 this.frameDataBuf = new Array();
  /external/avahi/avahi-ui-sharp/
bssh.cs 10 ServiceDialog dialog = new ServiceDialog ("Choose SSH Server", null,
13 dialog.BrowseServiceTypes = new string[] { "_ssh._tcp" };
23 string[] splitTxt = txt.Split(new char[] { '=' }, 2);
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/benchmark/
index.js 8 wcParser = new workingCopy.Parser(),
9 usParser = new upstream.Parser();
11 new Benchmark.Suite()
  /external/curl/tests/
convsrctest.pl 26 # Generate either compilable source code for a new test tool,
27 # or a new test definition which runs the tool and expects the
113 # boilerplate and insert them into a new boilerplate.
178 # - insert a <client><tool> section with our new C program name
195 my @new;
199 push @new, $_;
200 push @new, "# $comment\n"
209 push @new, $_
212 push @new, ("<tool>\n",
217 push @new, sh_quote($url)."\n"
    [all...]
  /external/v8/test/mjsunit/
apply.js 41 assertSame(this, f0.apply(this, new Array(1)), "2b");
42 assertSame(this, f0.apply(this, new Array(2)), "2c");
43 assertSame(this, f0.apply(this, new Array(4242)), "2d");
46 assertSame(this, f0.apply(null, new Array(1)), "3b");
47 assertSame(this, f0.apply(null, new Array(2)), "3c");
48 assertSame(this, f0.apply(this, new Array(4242)), "3d");
51 assertSame(this, f0.apply(void 0, new Array(1)), "4b");
52 assertSame(this, f0.apply(void 0, new Array(2)), "4c");
57 assertEquals(void 0, f1.apply(this, new Array(1)), "5b");
58 assertEquals(void 0, f1.apply(this, new Array(2)), "5c")
    [all...]
nans.js 32 return ((new Uint32Array((new Uint8Array([4,3,2,1])).buffer))[0])
50 var bytes = new Uint32Array([1, 0x7FF00000]);
52 var bytes = new Uint32Array([0x7FF00000, 1]);
54 var doubles = new Float64Array(bytes.buffer);
69 var bytes = new Uint32Array([0, 0x7FF80000]);
71 var bytes = new Uint32Array([0x7FF80000, 0]);
73 var doubles = new Float64Array(bytes.buffer);
87 var bytes = new Uint32Array([0x7F800001]);
88 var floats = new Float32Array(bytes.buffer)
    [all...]
prototype-changes.js 10 var a = new A();
20 C.prototype = new B();
22 var c = new C();
  /external/v8/test/mjsunit/compiler/
load-elimination.js 42 var a = new B(1, 2);
67 var a = new B(1, 2);
79 var a = new B(2, 3), b = new B(3, 4);
91 var a = new B(2, 3);
93 var b = new B(3, 4);
98 var b = new C();
99 var a = new B(-1, 5);
108 var o = new C();
122 var a = new B(1, 2)
    [all...]
  /external/v8/test/mjsunit/harmony/
proxies-bind.js 14 var handler = new Proxy({}, logger);
27 var proxy = new Proxy(target, handler);
42 assertEquals(new target(), new result());
68 proxy = new Proxy(target, handler);
81 proxy = new Proxy(target, handler);
94 proxy = new Proxy(target, handler);
107 proxy = new Proxy(target, handler);
120 proxy = new Proxy(target, handler);
129 assertThrows(() => Function.prototype.bind.call(new Proxy({}, {})), TypeError)
    [all...]
  /external/v8/test/webkit/
regexp-zero-length-alternatives.js 38 var re1 = new RegExp(/(?:|a|z)*/);
45 var re2 = new RegExp(/(?:a||z)*/);
52 var re3 = new RegExp(/(?:a|z|)*/);
59 var re4 = new RegExp(/(|a|z)*/);
66 var re5 = new RegExp(/(a||z)*/);
73 var re6 = new RegExp(/(a|z|)*/);
80 var re7 = new RegExp(/(?:|a|z){2,5}/);
87 var re8 = new RegExp(/(?:a||z){2,5}/);
94 var re9 = new RegExp(/(?:a|z|){2,5}/);
101 var re10 = new RegExp(/(?:|a|z)*?/)
    [all...]

Completed in 799 milliseconds

<<11121314151617181920>>