/external/v8/benchmarks/ |
earley-boyer.js | 4 var EarleyBoyer = new BenchmarkSuite('EarleyBoyer', 666463, [ 5 new Benchmark("Earley", function () { BgL_earleyzd2benchmarkzd2(); }), 6 new Benchmark("Boyer", function () { BgL_nboyerzd2benchmarkzd2(); }) 38 SC_DEFAULT_OUT = new sc_GenericOutputPort( 103 var sc_properties = new Object(); 109 ht = new Object(); 507 if ((new RegExp("^["+allowedChars+"]*$", "i")).test(s)) 586 (peephole (hole 2 "new sc_Pair(" car ", " cdr ")"))) 589 return new sc_Pair(car, cdr); 596 res = new sc_Pair(arguments[i], res) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
fix_zip.py | 31 new = node.clone()
32 new.prefix = u""
33 new = Call(Name(u"list"), [new])
34 new.prefix = node.prefix
35 return new
|
fix_filter.py | 58 new = ListComp(results.get("fp").clone(),
64 new = ListComp(Name(u"_f"),
72 new = node.clone()
73 new.prefix = u""
74 new = Call(Name(u"list"), [new])
75 new.prefix = node.prefix
76 return new
|
fix_future.py | 20 new = BlankLine()
21 new.prefix = node.prefix
22 return new
|
fix_map.py | 9 necessary because the semantics are changed in this case -- the new
65 new = node.clone()
66 new.prefix = u""
67 new = Call(Name(u"list"), [new])
69 new = ListComp(results["xp"].clone(),
74 new = results["arg"].clone()
87 new = node.clone()
88 new.prefix = u""
89 new = Call(Name(u"list"), [new]) [all...] |
fix_unicode.py | 18 new = node.clone()
19 new.value = _mapping[node.value]
20 return new
23 new = node.clone()
24 new.value = new.value[1:]
25 return new
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
fix_zip.py | 31 new = node.clone() 32 new.prefix = u"" 33 new = Call(Name(u"list"), [new]) 34 new.prefix = node.prefix 35 return new
|
fix_filter.py | 58 new = ListComp(results.get("fp").clone(), 64 new = ListComp(Name(u"_f"), 72 new = node.clone() 73 new.prefix = u"" 74 new = Call(Name(u"list"), [new]) 75 new.prefix = node.prefix 76 return new
|
fix_future.py | 20 new = BlankLine() 21 new.prefix = node.prefix 22 return new
|
fix_map.py | 9 necessary because the semantics are changed in this case -- the new 65 new = node.clone() 66 new.prefix = u"" 67 new = Call(Name(u"list"), [new]) 69 new = ListComp(results["xp"].clone(), 74 new = results["arg"].clone() 87 new = node.clone() 88 new.prefix = u"" 89 new = Call(Name(u"list"), [new] [all...] |
/external/antlr/runtime/Perl5/examples/expr/ |
expr.pl | 19 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => $in }); 20 my $lexer = ExprLexer->new({ input => $input }); 22 my $tokens = ANTLR::Runtime::CommonTokenStream->new({ token_source => $lexer }); 23 my $parser = ExprParser->new({ input => $tokens });
|
/external/antlr/runtime/Perl5/examples/mexpr/ |
mexpr.pl | 14 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => $_ }); 15 my $lexer = MExprLexer->new($input); 17 my $tokens = ANTLR::Runtime::CommonTokenStream->new({ token_source => $lexer }); 18 my $parser = MExprParser->new($tokens);
|
/external/grpc-grpc/test/distrib/ruby/ |
distribtest.rb | 21 ch = GRPC::Core::Channel.new('localhost:1000', nil, :this_channel_is_insecure)
|
/external/grpc-grpc/src/ruby/end2end/ |
killed_client_thread_client.rb | 24 OptionParser.new do |opts| 33 thd = Thread.new do 34 stub = Echo::EchoServer::Stub.new("localhost:#{server_port}", 36 stub.echo(Echo::EchoRequest.new(request: 'hello'))
|
client_memory_usage_client.rb | 24 OptionParser.new do |opts| 34 stub = Echo::EchoServer::Stub.new("localhost:#{server_port}", :this_channel_is_insecure) 35 stub.echo(Echo::EchoRequest.new(request: 'client/child'))
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
fix_map.py | 9 necessary because the semantics are changed in this case -- the new 75 new = node.clone() 76 new.prefix = "" 77 new = Call(Name("list"), [new]) 79 new = ListComp(results["xp"].clone(), 82 new = Node(syms.power, [new] + trailers, prefix="") 86 new = results["arg"].clone() 87 new.prefix = " [all...] |
fix_filter.py | 68 new = ListComp(results.get("fp").clone(), 72 new = Node(syms.power, [new] + trailers, prefix="") 75 new = ListComp(Name("_f"), 79 new = Node(syms.power, [new] + trailers, prefix="") 86 new = Node(syms.power, [Name("filter"), args], prefix="") 87 new = Node(syms.power, [Name("list"), ArgList([new])] + trailers) 88 new.prefix = " [all...] |
fix_future.py | 20 new = BlankLine() 21 new.prefix = node.prefix 22 return new
|
/external/grpc-grpc/src/ruby/spec/ |
call_credentials_spec.rb | 22 describe '#new' do 24 expect { CallCredentials.new(auth_proc) }.not_to raise_error 30 creds1 = CallCredentials.new(auth_proc) 31 creds2 = CallCredentials.new(auth_proc) 36 creds1 = CallCredentials.new(auth_proc) 37 creds2 = CallCredentials.new(auth_proc) 38 creds3 = CallCredentials.new(auth_proc)
|
/external/grpc-grpc/src/ruby/spec/generic/ |
rpc_server_pool_spec.rb | 22 describe '#new' do 24 expect { Pool.new(0) }.to raise_error 25 expect { Pool.new(-1) }.to raise_error 26 expect { Pool.new(Object.new) }.to raise_error 30 expect { Pool.new(1) }.not_to raise_error 36 p = Pool.new(1) 41 p = Pool.new(5) 44 wait_mu = Mutex.new 45 wait_cv = ConditionVariable.new [all...] |
/external/e2fsprogs/tests/f_uninit_cat/ |
script | 17 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1 18 echo "Exit status is $?" >> $OUT.new 20 echo "debugfs cat uninit file" >> $OUT.new 23 $DEBUGFS -w -f $TMPFILE.cmd $TMPFILE >> $OUT.new 2>&1 24 echo >> $OUT.new 25 sed -f $cmd_dir/filter.sed < $OUT.new > $OUT 26 rm -f $OUT.new $TMPFILE $TMPFILE.cmd
|
/external/antlr/runtime/Perl5/examples/tweak/ |
tweak.pl | 11 my $input = ANTLR::Runtime::ANTLRFileStream->new({ file_name => $ARGV[0] }); 12 my $lexer = TLexer->new({ input => $input }); 14 my $parser = TParser->new({ input => $tokens });
|
/external/google-breakpad/src/tools/solaris/dump_syms/ |
run_regtest.sh | 32 ./dump_syms testdata/dump_syms_regtest.o > testdata/dump_syms_regtest.new 40 diff -u testdata/dump_syms_regtest.new testdata/dump_syms_regtest.sym > \ 45 rm testdata/dump_syms_regtest.diff testdata/dump_syms_regtest.new 48 echo "FAIL, see testdata/dump_syms_regtest.[new|diff]"
|
/external/google-breakpad/src/tools/windows/dump_syms/ |
run_regtest.sh | 34 testdata/dump_syms_regtest.new 42 diff -u testdata/dump_syms_regtest.new testdata/dump_syms_regtest.sym > \ 47 rm testdata/dump_syms_regtest.diff testdata/dump_syms_regtest.new 50 echo "FAIL, see testdata/dump_syms_regtest.[new|diff]"
|
/external/grpc-grpc/src/ruby/lib/grpc/ |
notifier.rb | 23 @mutex = Mutex.new 24 @cvar = ConditionVariable.new 37 return Error.new('already notified') if notified?
|