HomeSort by relevance Sort by last modified time
    Searched refs:new (Results 51 - 75 of 2158) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/
elements-transition-hoisting.js 37 support_smi_only_arrays = %HasFastSmiElements(new Array(1,2,3,4,5,6));
50 var object = new Object();
58 testDoubleConversion4(new Array(5));
59 testDoubleConversion4(new Array(5)); // Call twice to make sure that second
63 testDoubleConversion4(new Array(5));
64 testDoubleConversion4(new Array(5));
72 var object = new Object();
84 testExactMapHoisting(new Array(5));
85 testExactMapHoisting(new Array(5)); // Call twice to make sure that second
89 testExactMapHoisting(new Array(5))
    [all...]
double-equals.js 111 var x = new Wrapper(null);
117 var x = new Boolean(true);
123 var x = new Boolean(false);
134 testNotEqual(null, new Wrapper(null));
138 testNotEqual(null, new Object());
139 testNotEqual(undefined, new Wrapper(undefined));
143 testNotEqual(undefined, new Object());
165 testEqual(new Boolean(true), true);
166 testEqual(new Boolean(true), 1); // First to primtive boolean, then to number.
167 testEqual(new Boolean(false), false)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_input.py 24 new = node.clone()
25 new.prefix = u""
26 return Call(Name(u"eval"), [new], prefix=node.prefix)
fix_methodattrs.py 23 new = unicode(MAP[attr.value])
24 attr.replace(Name(new, prefix=attr.prefix))
fix_ne.py 22 new = pytree.Leaf(token.NOTEQUAL, u"!=", prefix=node.prefix)
23 return new
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_input.py 24 new = node.clone()
25 new.prefix = u""
26 return Call(Name(u"eval"), [new], prefix=node.prefix)
fix_methodattrs.py 23 new = unicode(MAP[attr.value])
24 attr.replace(Name(new, prefix=attr.prefix))
fix_ne.py 22 new = pytree.Leaf(token.NOTEQUAL, u"!=", prefix=node.prefix)
23 return new
  /development/tools/findunused/
find_unused_resources.rb 15 @@stringIdPattern = Regexp.new("name=\"([@_a-zA-Z0-9 ]*)\"")
16 @@layoutIdPattern = Regexp.new("android:id=\".*id/([_a-zA-Z0-9]*)\"")
19 Regexp.new("@string/([_a-zA-Z0-9]*)"),
20 Regexp.new("@array/([_a-zA-Z0-9]*)"),
24 Regexp.new("R.id.([_a-zA-Z0-9]+)"),
25 Regexp.new("R.string.([_a-zA-Z0-9]+)"),
26 Regexp.new("R.array.([_a-zA-Z0-9]+)"),
27 Regexp.new("R.color.([_a-zA-Z0-9]+)"),
28 Regexp.new("R.configVarying.([_a-zA-Z0-9]+)"),
29 Regexp.new("R.dimen.([_a-zA-Z0-9]+)")
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/examples/zero-one/
t-error.pl 12 my $input = ANTLR::Runtime::ANTLRStringStream->new({ '01X0' });
13 my $lexer = TLexer->new($input);
t.pl 12 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => '010' });
13 my $lexer = TLexer->new($input);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
ast-builder.rb 19 AST::CommonTreeAdaptor.new( token_class )
29 AST::RewriteRuleSubtreeStream.new( @adaptor, desc, element )
33 AST::RewriteRuleTokenStream.new( @adaptor, desc, element )
37 AST::RewriteRuleNodeStream.new( @adaptor, desc, element )
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-351787.js 7 var ab1 = new ArrayBuffer(8);
10 var array = new Uint8Array(ab2);
17 var ab3 = new ArrayBuffer(8);
19 var aaa = new DataView(ab3);
27 var a = new Int8Array(4);
29 var b = new Int8Array(a);
35 var ab4 = new ArrayBuffer(8);
37 var aaaa = new Uint32Array(ab4);
  /external/tcpdump/tests/
mpls-ldp-hello.sh 6 ../tcpdump -t -n -v -r mpls-ldp-hello.pcap >mpls-ldp-hello.new
7 if diff mpls-ldp-hello.new mpls-ldp-hello.out
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sha.py 11 new = sha variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sha.py 11 new = sha variable
  /external/qemu/distrib/sdl-1.2.15/build-scripts/
makedep.sh 40 :>${output}.new
45 echo "\$(objects)/$obj: $src \\" >>${output}.new
49 search_deps $src | sort | uniq >>${output}.new
52 c) cat >>${output}.new <<__EOF__
58 cc) cat >>${output}.new <<__EOF__
64 m) cat >>${output}.new <<__EOF__
70 asm) cat >>${output}.new <<__EOF__
76 S) cat >>${output}.new <<__EOF__
82 rc) cat >>${output}.new <<__EOF__
90 echo "" >>${output}.new
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
Lexer.pm 13 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => 'ABC' });
14 my $lexer = ANTLR::Runtime::Lexer->new({ input => $input });
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 5 Call = Struct.new( :file, :line, :method )
13 return Call.new( file, line )
18 return Call.new( file, line, method )
  /external/v8/test/mjsunit/
elements-transition-hoisting.js 34 support_smi_only_arrays = %HasFastSmiOnlyElements(new Array(1,2,3,4,5,6));
52 var object = new Object();
60 testDoubleConversion4(new Array(5));
62 testDoubleConversion4(new Array(5));
63 testDoubleConversion4(new Array(5));
70 var object = new Object();
82 testExactMapHoisting(new Array(5));
84 testExactMapHoisting(new Array(5));
85 testExactMapHoisting(new Array(5));
92 var object = new Object()
    [all...]
double-equals.js 111 var x = new Wrapper(null);
117 var x = new Boolean(true);
123 var x = new Boolean(false);
134 testNotEqual(null, new Wrapper(null));
138 testNotEqual(null, new Object());
139 testNotEqual(undefined, new Wrapper(undefined));
143 testNotEqual(undefined, new Object());
165 testEqual(new Boolean(true), true);
166 testEqual(new Boolean(true), 1); // First to primtive boolean, then to number.
167 testEqual(new Boolean(false), false)
    [all...]
  /external/chromium_org/tools/stats_viewer/
stats_viewer.Designer.cs 35 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StatsViewer));
36 this.listViewCounters = new System.Windows.Forms.ListView();
37 this.columnHeaderName = new System.Windows.Forms.ColumnHeader();
38 this.columnHeaderValue = new System.Windows.Forms.ColumnHeader();
39 this.columnHeaderDelta = new System.Windows.Forms.ColumnHeader();
40 this.pictureBoxTitle = new System.Windows.Forms.PictureBox();
41 this.panelHeader = new System.Windows.Forms.Panel();
42 this.labelKills = new System.Windows.Forms.Label();
43 this.label1 = new System.Windows.Forms.Label();
44 this.labelInterval = new System.Windows.Forms.Label();
    [all...]
  /external/chromium_org/v8/test/webkit/
equality.js 28 var values = [ '0', '1', '0.1', '2', '3', '4', '5', '6', '7', '-0', '"0"', '"1"', '"0.1"', '"-0"', 'null', 'undefined', 'false', 'true', 'new String("0")', 'new Object' ];
33 '"0" == new String("0")',
38 '-0 == new String("0")',
43 '0 == new String("0")',
48 'new Object == new Object',
49 'new Object === new Object',
50 'new String("0") == false'
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
scopes.rb 30 lexer = SimpleScope::Lexer.new( 'foobar' )
31 parser = SimpleScope::Parser.new lexer
90 $c::symbols = Set.new;
114 $d::symbols = Set.new
178 lexer = LotsaScopes::Lexer.new( "foobar" )
179 parser = LotsaScopes::Parser.new lexer
184 lexer = LotsaScopes::Lexer.new( "foobar" )
185 parser = LotsaScopes::Parser.new lexer
190 lexer = LotsaScopes::Lexer.new( "foobar" )
191 parser = LotsaScopes::Parser.new lexe
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_new.py 4 new = test_support.import_module('new', deprecated=True) variable
12 m = new.module('Spam')
20 # new.classobj()
21 C = new.classobj('Spam', (Spam.Eggs,), {'get_more_yolks': get_more_yolks})
23 # new.instance()
24 c = new.instance(C, {'yolks': 3})
26 o = new.instance(C)
27 self.assertEqual(o.__dict__, {}, "new __dict__ should be empty")
29 o = new.instance(C, None
    [all...]

Completed in 452 milliseconds

1 23 4 5 6 7 8 91011>>