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

1 23 4 5 6 7 8 91011>>

  /external/grpc-grpc/src/ruby/end2end/
grpc_class_init_client.rb 25 thds << Thread.new do
50 Thread.new do
62 thd = Thread.new do
73 GRPC::Core::Channel.new('dummy_host', nil, :this_channel_is_insecure)
77 GRPC::Core::Server.new({})
81 GRPC::Core::ChannelCredentials.new
85 GRPC::Core::CallCredentials.new(proc { |noop| noop })
89 GRPC::Core::CompressionOptions.new
99 OptionParser.new do |opts|
forking_client_client.rb 23 OptionParser.new do |opts|
33 stub = Echo::EchoServer::Stub.new("localhost:#{server_port}",
35 stub.echo(Echo::EchoRequest.new(request: 'hello'))
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_has_key.py 100 new = pytree.Node(syms.comparison, (arg, n_op, before))
102 new = parenthesize(new)
103 new = pytree.Node(syms.power, (new,) + tuple(after))
108 new = parenthesize(new)
109 new.prefix = prefix
110 return new
fix_input.py 24 new = node.clone()
25 new.prefix = u""
26 return Call(Name(u"eval"), [new], prefix=node.prefix)
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_has_key.py 99 new = pytree.Node(syms.comparison, (arg, n_op, before))
101 new = parenthesize(new)
102 new = pytree.Node(syms.power, (new,) + tuple(after))
107 new = parenthesize(new)
108 new.prefix = prefix
109 return new
fix_input.py 24 new = node.clone()
25 new.prefix = ""
26 return Call(Name("eval"), [new], prefix=node.prefix)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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))
  /external/bcc/examples/networking/tunnel_monitor/
traffic.sh 14 $B new-session -s $S -n "c1" -d
16 tmux new-window -t $S -n "c2"
18 tmux new-window -t $S -n "c3"
20 tmux new-window -t $S -n "c3"
22 tmux new-window -t $S -n "c3"
24 tmux new-window -t $S -n "c3"
26 tmux new-window -t $S -n "c4"
28 tmux new-window -t $S -n "c5"
30 tmux new-window -t $S -n "c2"
32 tmux new-window -t $S -n "c3
    [all...]
  /art/test/595-error-class/smali/
merge.smali 19 # Method that selects between x = new Integer[] or new AnError[],
25 new-array v0, v0, [LAnError;
28 new-array v0, v0, [Ljava/lang/Integer;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
sha.py 11 new = sha variable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sha.py 11 new = sha variable
  /external/ImageMagick/PerlMagick/t/
blob.t 25 $image = new Image::Magick;
30 $image=Image::Magick->new( magick=>'MIFF' );
  /external/antlr/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/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/protobuf/ruby/tests/
generated_code_test.rb 15 m = A::B::C::TestMessage.new()
stress.rb 7 pool = Google::Protobuf::DescriptorPool.new
23 TestMessage.new(:a => 1000,
24 :b => [M.new(:foo => "hello"),
25 M.new(:foo => "world")])
  /external/python/cpython2/Lib/
sha.py 11 new = sha variable
  /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/grpc-grpc/src/ruby/spec/generic/
service_spec.rb 26 GoodMsg.new
37 GoodMsg.new
45 it 'can be included in new classes' do
46 blk = proc { Class.new { include Dsl } }
63 c = Class.new do
70 c = Class.new do
80 base = Class.new do
84 c = Class.new(base) do
91 c = Class.new do
98 base = Class.new d
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_marshal.py 51 new = marshal.loads(marshal.dumps(b))
52 self.assertEqual(b, new)
53 self.assertEqual(type(b), type(new))
55 new = marshal.load(file(test_support.TESTFN, "rb"))
56 self.assertEqual(b, new)
57 self.assertEqual(type(b), type(new))
110 new = marshal.loads(marshal.dumps(s))
111 self.assertEqual(s, new)
112 self.assertEqual(type(s), type(new))
114 new = marshal.load(file(test_support.TESTFN, "rb"))
    [all...]
  /external/grpc-grpc/src/ruby/stress/
stress_client.rb 30 @query_mutex = Mutex.new
53 server = GRPC::RpcServer.new
55 service = MetricsServiceImpl.new
57 server_thread = Thread.new { server.run_till_terminated }
61 StressArgs = Struct.new(:server_addresses, :test_cases, :duration,
67 qps_gauge = QpsGauge.new
73 client_args = Args.new
78 named_tests = NamedTests.new(stub, client_args)
80 threads << Thread.new do
100 stress_args = StressArgs.new
    [all...]
  /external/libcxx/utils/libcxx/sym_check/
diff.py 31 def added_symbols(old, new):
32 return _symbol_difference(new, old)
35 def removed_symbols(old, new):
36 return _symbol_difference(old, new)
39 def changed_symbols(old, new):
42 if old_sym in new:
44 new_sym = _find_by_key(new, old_sym['name'])
51 def diff(old, new):
52 added = added_symbols(old, new)
53 removed = removed_symbols(old, new)
    [all...]
  /art/test/435-new-instance/smali/
instance.smali 27 new-instance v1, LTestInterface;
35 new-instance v1, LTestClass;
43 new-instance v1, Lpkg/ProtectedClass;
51 new-instance v1, LUnknownClass;

Completed in 6972 milliseconds

1 23 4 5 6 7 8 91011>>