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

1 2 3 45 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 28 internal static readonly string[] tokenNames = new string[] {
51 new string[]
61 : this( input, DebugEventSocketProxy.DefaultDebuggerPort, new RecognizerSharedState() )
67 DebugEventSocketProxy proxy = new DebugEventSocketProxy( this, port, input.TreeAdaptor );
79 : base( input, dbg, new RecognizerSharedState() )
257 NoViableAltException nvae = new NoViableAltException("", 3, 0, input);
374 EarlyExitException eee2 = new EarlyExitException( 2, input );
498 NoViableAltException nvae = new NoViableAltException("", 4, 0, input);
678 value = new BigInteger((INT5!=null?INT5.Text:null));
777 DebugTreeGrammar e = new DebugTreeGrammar(funcRoot, functionDefinitions, globalMemory, p)
    [all...]
ProfileTreeGrammar.cs 28 internal static readonly string[] tokenNames = new string[] {
51 new string[]
61 : this( input, new Profiler(null), new RecognizerSharedState() )
72 : base( input, dbg, new RecognizerSharedState() )
262 NoViableAltException nvae = new NoViableAltException("", 3, 0, input);
379 EarlyExitException eee2 = new EarlyExitException( 2, input );
503 NoViableAltException nvae = new NoViableAltException("", 4, 0, input);
683 value = new BigInteger((INT5!=null?INT5.Text:null));
782 ProfileTreeGrammar e = new ProfileTreeGrammar(funcRoot, functionDefinitions, globalMemory, p)
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
Exception.pm 11 my $ex = $self->class->new();
17 my $ex = $self->class->new({ message => 'test error message' });
  /external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/
Class.pm 14 sub new { subroutine
16 my $self = $class->SUPER::new(@args);
  /external/chromium/chrome/browser/debugger/manual_tests/resources/
worker-primes.js 3 var primes = new Primes();
  /external/chromium_org/third_party/tlslite/tlslite/utils/
PyCrypto_RC4.py 9 def new(key): function
16 self.context = Crypto.Cipher.ARC4.new(key)
  /external/tcpdump/tests/
print-flags.sh 6 if (../tcpdump -$i -s0 -nr print-flags.pcap | tee print-$i.new | diff - print-$i.out)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_dict.py 74 new = pytree.Node(syms.power, args)
76 new.prefix = u""
77 new = Call(Name(u"iter" if isiter else u"list"), [new])
79 new = pytree.Node(syms.power, [new] + tail)
80 new.prefix = node.prefix
81 return new
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep247.py 26 obj1 = module.new(key)
27 obj2 = module.new(key, 'string')
29 h1 = module.new(key, 'string').digest()
30 obj3 = module.new(key)
34 obj1 = module.new()
35 obj2 = module.new('string')
37 h1 = module.new('string').digest()
38 obj3 = module.new()
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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_dict.py 74 new = pytree.Node(syms.power, args)
76 new.prefix = u""
77 new = Call(Name(u"iter" if isiter else u"list"), [new])
79 new = pytree.Node(syms.power, [new] + tail)
80 new.prefix = node.prefix
81 return new
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep247.py 26 obj1 = module.new(key)
27 obj2 = module.new(key, 'string')
29 h1 = module.new(key, 'string').digest()
30 obj3 = module.new(key)
34 obj1 = module.new()
35 obj2 = module.new('string')
37 h1 = module.new('string').digest()
38 obj3 = module.new()
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/chromium_org/v8/test/mjsunit/lithium/
StoreKeyedExternal.js 55 var A1_pixel = new Uint8ClampedArray(2);
56 var A2_pixel = new Uint8ClampedArray(2);
57 var A3_pixel = new Uint8ClampedArray(2);
59 var A1_uint16 = new Uint16Array(2);
60 var A2_uint16 = new Uint16Array(2);
61 var A3_uint16 = new Uint16Array(2);
63 var A1_uint32 = new Uint32Array(2);
64 var A2_uint32 = new Uint32Array(2);
65 var A3_uint32 = new Uint32Array(2);
67 var A1_float = new Float32Array(2)
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
assignment.js 35 a = new Array(10);
43 b = new Object();
56 var a = new Array(10);
64 var b = new Object();
78 a = new Array(10);
86 b = new Object();
100 var a = new Array(10);
108 var b = new Object();
124 a = new Array(10);
132 b = new Object()
    [all...]
  /external/v8/test/mjsunit/compiler/
assignment.js 35 a = new Array(10);
43 b = new Object();
56 var a = new Array(10);
64 var b = new Object();
78 a = new Array(10);
86 b = new Object();
100 var a = new Array(10);
108 var b = new Object();
124 a = new Array(10);
132 b = new Object()
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/examples/id/
id.pl 12 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => "Hello World!\n42\n" });
13 my $lexer = IDLexer->new({ input => $input });
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
syn-pred.rb 26 lexer = SyntacticPredicateGate::Lexer.new( 'ac' )
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-recognizers.rb 11 TrivialToken = Struct.new(:type) do
27 src = TestSource.new
42 stream = StringStream.new('foo')
43 TLexer.new(stream)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
prettify.rb 7 $LOAD_PATH << Pathname.new(__FILE__).dirname.realpath.to_s
14 OptionParser.new do |opts|
  /external/chromium_org/third_party/icu/source/tools/memcheck/
ICUMemCheck.pl 55 if ($symbols =~ /U +operator new\(unsigned int\)/) {
58 if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) {
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
xml_formatted_writer.py 16 Adds a new XML Element as a child to an existing element or the Document.
19 parent: An XML element or the document, where the new element will be
21 name: The name of the new element.
22 attrs: A dictionary of the attributes' names and values for the new
24 text: Text content for the new element.
27 The created new element.
48 '''Adds a new attribute to the parent Element. If an attribute with the
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-344186.js 7 var dummy = new Int32Array(100);
8 var array = new Int32Array(128);
  /external/elfutils/config/
Makefile.am 45 sed "/^%changelog/r $$tmpname" $@ > $@.new; \
47 mv -f $@.new $@
  /external/icu4c/tools/memcheck/
ICUMemCheck.pl 55 if ($symbols =~ /U +operator new\(unsigned int\)/) {
58 if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) {

Completed in 746 milliseconds

1 2 3 45 6 7 8 91011>>