HomeSort by relevance Sort by last modified time
    Searched refs:Struct (Results 26 - 50 of 81) sorted by null

12 3 4

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_struct.py 4 import struct namespace
19 struct.pack('q', 5)
20 except struct.error:
37 # SF bug 1530559. struct.pack raises TypeError where it used
41 got = struct.pack(format, number)
46 expected = struct.pack(format, int(number))
50 self.assertEqual((struct.pack('=i', 1)[0] == chr(0)), ISBIGENDIAN)
53 self.assertRaises(struct.error, struct.calcsize, 'Z')
55 sz = struct.calcsize('i'
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-template.rb 9 MethodDescription = Struct.new( :name, :body, :arguments )
  /external/v8/src/
objects.h 109 // - Struct
425 // A struct is a simple object a set of object-valued fields. Including an
    [all...]
v8globals.h 158 class Struct;
230 struct CodeDesc {
331 struct {
342 struct {
352 struct AccessorDescriptor {
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 38 RecognizerSharedState = Struct.new(
56 A big Struct-based class containing most of the data that makes up a
132 It is identical to Ruby's built-in Struct class, but it takes string
138 Block.new # => #<struct Block name=nil, depth=0, variables={}>
139 Block.new( "function" ) # => #<struct Block name="function", depth=0, variables={}>
140 Block.new( 'a', 1, :x => 3 ) # => #<struct Block name="a", depth=1, variables={ :x => 3 }>
144 class Scope < ::Struct
156 # the struct's default initialize for speed. Otherwise,
245 Struct.new( *members )
262 struct = Struct.new( *return_scope_members
    [all...]
template.rb 286 Parameter = Struct.new( :name, :default )
profile.rb 96 Profile = Struct.new(
token.rb 213 CommonToken = Struct.new( :type, :channel, :text, :input, :start,
219 simple Struct as tokens are basically simple data structures binding together a
debug.rb 63 RecognizerSharedState = Struct.new(
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
model.py 83 class Struct(Node):
parse.py 249 expected_tokens = ('null', 'bool', 'int', 'uint', 'float', 'string', 'enum', 'array', 'struct', 'ptr', 'bytes')
318 attrs = self.element_start('struct')
323 self.element_end('struct')
324 return Struct(name, members)
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
cparse.py 157 "Struct or Union"
189 class Struct(Compound):
416 elif lexer.tok=='struct':
437 node = Struct()
443 if not isinstance( _node, Struct ):
450 # refer to the previously defined struct
454 # refer to the previously defined struct
459 # But what about any future reference to the struct ?
519 if isinstance( node, Struct ):
548 elif lexer.tok=='struct'
    [all...]
genpyx.py 22 " just a record (struct) "
200 " the tag of a Struct, Union or Enum "
204 "Struct, Union or Enum "
208 "Struct or Union"
219 if isinstance(self,Struct):
220 descr = 'struct'
234 toks = [ descr+' '+tag ] # struct foo
240 # define empty struct here, it's the best we're gonna get
250 class Struct(Compound):
350 toks.append( ' '*indent + 'struct __unknown_builtin '
    [all...]
  /external/chromium_org/v8/src/
v8globals.h 159 class Struct;
230 struct CodeDesc {
327 struct {
338 struct {
348 struct AccessorDescriptor {
objects.h 134 // - Struct
535 // A struct is a simple object a set of object-valued fields. Including an
    [all...]
factory.h 213 // Allocate a new struct. The struct is pretenured (allocated directly in
215 Handle<Struct> NewStruct(InstanceType type);
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
ruby.php 103 'StringScanner', 'StringScanner::Error', 'Struct', 'Symbol',
rails.php 96 'StringScanner', 'StringScanner::Error', 'Struct', 'Symbol',
189 'ActionWebService::SignatureTypes', 'ActionWebService::Struct',
  /external/mesa3d/src/gallium/tools/trace/
model.py 83 class Struct(Node):
parse.py 249 expected_tokens = ('null', 'bool', 'int', 'uint', 'float', 'string', 'enum', 'array', 'struct', 'ptr', 'bytes')
318 attrs = self.element_start('struct')
323 self.element_end('struct')
324 return Struct(name, members)
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 506 public Struct createStruct(String type, Object[] attrs)
  /external/v8/tools/
ll_prof.py 469 class Struct(ctypes.Structure):
471 return Struct
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 46 RewriteOperation = Struct.new( :stream, :location, :text )

Completed in 589 milliseconds

12 3 4