Uses of Class
org.jruby.util.ByteList

Packages that use ByteList
org.jruby   
org.jruby.ast   
org.jruby.compiler   
org.jruby.compiler.impl   
org.jruby.lexer.yacc   
org.jruby.runtime.marshal   
org.jruby.util   
org.jruby.yaml   
org.jvyamlb   
org.jvyamlb.events   
org.jvyamlb.nodes   
org.jvyamlb.tokens   
 

Uses of ByteList in org.jruby
 

Methods in org.jruby that return ByteList
 ByteList RubyString.getByteList()
           
 

Methods in org.jruby with parameters of type ByteList
 Pattern RegexpTranslator.translate(ByteList regex, int options, int javaRegexFlags)
           
 RubyString Ruby.newString(ByteList byteList)
           
 RubyString Ruby.newStringShared(ByteList byteList)
           
 void RubyRegexp.initialize(ByteList regex, int options)
           
static RubyRegexp RubyRegexp.newRegexp(Ruby runtime, ByteList source, Pattern pattern, int flags, java.lang.String lang)
           
static RubyRegexp RubyRegexp.newRegexp(Ruby runtime, ByteList str, int options, java.lang.String kcode)
           
static java.lang.String RubyString.byteListToString(ByteList bytes)
           
 RubyString RubyString.newString(ByteList s)
          Create a new String which uses the same Ruby runtime and the same class like this String.
static RubyString RubyString.newString(Ruby runtime, ByteList bytes)
           
static RubyString RubyString.newStringShared(Ruby runtime, ByteList bytes)
           
 RubyString RubyString.cat(ByteList str)
           
 void RubyString.setValue(ByteList value)
           
 

Uses of ByteList in org.jruby.ast
 

Methods in org.jruby.ast that return ByteList
 ByteList RegexpNode.getValue()
          Gets the value.
 ByteList StrNode.getValue()
          Gets the value.
 ByteList XStrNode.getValue()
          Gets the value.
 

Constructors in org.jruby.ast with parameters of type ByteList
RegexpNode(ISourcePosition position, ByteList value, int options)
           
StrNode(ISourcePosition position, ByteList value)
           
XStrNode(ISourcePosition position, ByteList value)
           
 

Uses of ByteList in org.jruby.compiler
 

Methods in org.jruby.compiler with parameters of type ByteList
 void Compiler.createNewString(ByteList value)
          Generate a new "String" value.
 void Compiler.createNewRegexp(ByteList value, int options, java.lang.String lang)
           
 

Uses of ByteList in org.jruby.compiler.impl
 

Methods in org.jruby.compiler.impl with parameters of type ByteList
 void StandardASMCompiler.createNewString(ByteList value)
           
 void StandardASMCompiler.createNewRegexp(ByteList value, int options, java.lang.String lang)
           
 

Uses of ByteList in org.jruby.lexer.yacc
 

Methods in org.jruby.lexer.yacc that return ByteList
 ByteList LexerSource.readLineBytes()
           
 

Methods in org.jruby.lexer.yacc with parameters of type ByteList
 char StringTerm.parseStringIntoBuffer(LexerSource src, ByteList buffer)
           
 

Uses of ByteList in org.jruby.runtime.marshal
 

Methods in org.jruby.runtime.marshal that return ByteList
 ByteList UnmarshalStream.unmarshalString()
           
 

Methods in org.jruby.runtime.marshal with parameters of type ByteList
 void MarshalStream.writeString(ByteList value)
           
 

Uses of ByteList in org.jruby.util
 

Fields in org.jruby.util declared as ByteList
static ByteList ByteList.EMPTY_BYTELIST
           
static ByteList IOHandler.PARAGRAPH_DELIMETER
           
 

Methods in org.jruby.util that return ByteList
 ByteList ByteList.append(byte b)
           
 ByteList ByteList.append(int b)
           
 ByteList ByteList.dup()
           
 ByteList ByteList.dup(int length)
           
 ByteList ByteList.makeShared(int index, int len)
           
static ByteList ByteList.create(java.lang.CharSequence s)
           
static ByteList Convert.intToByteList(int i)
          Returns a ByteList object representing the specified integer.
static ByteList Convert.intToByteList(int i, int radix)
          Returns a ByteList object representing the specified integer, using the specified radix.
static ByteList Convert.longToByteList(long i)
          Returns a ByteList object representing the specified long.
static ByteList Convert.longToByteList(long i, int radix)
           
static ByteList Convert.intToBinaryByteList(int i)
           
static ByteList Convert.intToOctalByteList(int i)
           
static ByteList Convert.intToHexByteList(int i)
           
static ByteList Convert.intToHexByteList(int i, boolean upper)
           
static ByteList Convert.longToBinaryByteList(long i)
           
static ByteList Convert.longToOctalByteList(long i)
           
static ByteList Convert.longToHexByteList(long i)
           
static ByteList Convert.longToHexByteList(long i, boolean upper)
           
abstract  ByteList IOHandler.gets(ByteList separatorString)
           
abstract  ByteList IOHandler.getsEntireStream()
           
abstract  ByteList IOHandler.read(int number)
           
abstract  ByteList IOHandler.sysread(int number)
           
 ByteList IOHandlerJavaIO.gets(ByteList separatorString)
           
 ByteList IOHandlerJavaIO.getsEntireStream()
           
 ByteList IOHandlerJavaIO.read(int number)
           
 ByteList IOHandlerJavaIO.sysread(int number)
           
 ByteList IOHandlerNio.sysread(int length)
           
 ByteList IOHandlerNio.recv(int length)
           
 ByteList IOHandlerNio.readpartial(int length)
           
 ByteList IOHandlerNio.read(int length)
           
 ByteList IOHandlerNio.gets(ByteList separator)
           
 ByteList IOHandlerNio.getsEntireStream()
           
 ByteList IOHandlerNull.gets(ByteList separatorString)
           
 ByteList IOHandlerNull.getsEntireStream()
           
 ByteList IOHandlerNull.read(int number)
           
 ByteList IOHandlerNull.sysread(int number)
           
 ByteList IOHandlerProcess.sysread(int number)
           
 ByteList IOHandlerSeekable.getsEntireStream()
           
 ByteList IOHandlerSeekable.sysread(int number)
           
 ByteList IOHandlerSocket.recv(int len)
           
 ByteList IOHandlerUnseekable.getsEntireStream()
           
 ByteList IOHandlerUnseekable.sysread(int number)
           
 

Methods in org.jruby.util with parameters of type ByteList
 void ByteList.append(ByteList moreBytes)
           
 void ByteList.append(ByteList moreBytes, int index, int len)
           
 void ByteList.unsafeReplace(int beg, int len, ByteList nbytes)
          Unsafe version of replace(int,int,ByteList).
 void ByteList.replace(int beg, int len, ByteList nbytes)
           
 int ByteList.indexOf(ByteList find)
           
 int ByteList.indexOf(ByteList find, int i)
           
 int ByteList.lastIndexOf(ByteList find)
           
 int ByteList.lastIndexOf(ByteList find, int pos)
           
 boolean ByteList.equal(ByteList other)
           
 int ByteList.cmp(ByteList other)
           
static long Convert.byteListToLong(ByteList bytes, int base, boolean raise)
          Converts a ByteList to a primitive long value, using the specified base.
static long Convert.byteListToLong(ByteList bytes, int base)
           
static long Convert.byteListToLong(ByteList bytes)
           
static java.math.BigInteger Convert.byteListToBigInteger(ByteList bytes, int base, boolean raise)
          Converts a ByteList to a BigInteger value, using the specified base.
static java.math.BigInteger Convert.byteListToBigInteger(ByteList bytes, int base)
           
static java.math.BigInteger Convert.byteListToBigInteger(ByteList bytes)
           
static double Convert.byteListToDouble(ByteList bytes, boolean strict)
          Converts a ByteList containing a RubyString representation of a double value to a double.
static double Convert.byteListToDouble(ByteList bytes)
           
abstract  ByteList IOHandler.gets(ByteList separatorString)
           
abstract  int IOHandler.write(ByteList string)
           
abstract  int IOHandler.syswrite(ByteList buf)
           
 ByteList IOHandlerJavaIO.gets(ByteList separatorString)
           
 int IOHandlerJavaIO.write(ByteList string)
           
protected  int IOHandlerJavaIO.sysread(ByteList buf, int length)
           
 int IOHandlerNio.syswrite(ByteList string)
           
 int IOHandlerNio.write(ByteList string)
           
 ByteList IOHandlerNio.gets(ByteList separator)
           
 ByteList IOHandlerNull.gets(ByteList separatorString)
           
 int IOHandlerNull.write(ByteList string)
           
 int IOHandlerNull.syswrite(ByteList buf)
           
 int IOHandlerProcess.syswrite(ByteList buf)
           
 int IOHandlerSeekable.syswrite(ByteList buf)
           
protected  void IOHandlerUnseekable.sysread(ByteList buf, int off, int length)
           
 int IOHandlerUnseekable.syswrite(ByteList buf)
           
static RubyArray Pack.unpack(Ruby runtime, ByteList encodedString, ByteList formatString)
          Decodes str (which may contain binary data) according to the format string, returning an array of each value extracted.
static RubyString Pack.pack(Ruby runtime, RubyArray list, ByteList formatString)
          pack_pack Template characters for Array#pack Directive Meaning
Directive Meaning @ Moves to absolute position A ASCII string (space padded, count is width) a ASCII string (null padded, count is width) B Bit string (descending bit order) b Bit string (ascending bit order) C Unsigned char c Char d Double-precision float, native format E Double-precision float, little-endian byte order e Single-precision float, little-endian byte order f Single-precision float, native format G Double-precision float, network (big-endian) byte order g Single-precision float, network (big-endian) byte order H Hex string (high nibble first) h Hex string (low nibble first) I Unsigned integer i Integer L Unsigned long l Long M Quoted printable, MIME encoding (see RFC2045) m Base64 encoded string N Long, network (big-endian) byte order n Short, network (big-endian) byte-order P Pointer to a structure (fixed-length string) p Pointer to a null-terminated string S Unsigned short s Short U UTF-8 u UU-encoded string V Long, little-endian byte order v Short, little-endian byte order X Back up a byte x Null byte Z Same as ``A'' Packs the contents of arr into a binary sequence according to the directives in aTemplateString (see preceding table).
static IRubyObject ZlibDeflate.s_deflate(IRubyObject caller, ByteList str, int level)
           
 void ZlibDeflate.append(ByteList obj)
           
 IRubyObject ZlibDeflate.deflate(ByteList str, int flush)
           
static IRubyObject ZlibInflate.s_inflate(IRubyObject caller, ByteList str)
           
 void ZlibInflate.append(ByteList obj)
           
 IRubyObject ZlibInflate.inflate(ByteList str)
           
 

Constructors in org.jruby.util with parameters of type ByteList
ByteList(ByteList wrap)
           
ByteList(ByteList wrap, int index, int len)
           
 

Uses of ByteList in org.jruby.yaml
 

Methods in org.jruby.yaml with parameters of type ByteList
 Node JRubyRepresenter.scalar(java.lang.String tag, ByteList val, java.lang.String style)
           
 

Uses of ByteList in org.jvyamlb
 

Methods in org.jvyamlb that return ByteList
static ByteList YAML.dump(java.lang.Object data)
           
static ByteList YAML.dump(java.lang.Object data, YAMLFactory fact)
           
static ByteList YAML.dump(java.lang.Object data, YAMLConfig cfg)
           
static ByteList YAML.dump(java.lang.Object data, YAMLFactory fact, YAMLConfig cfg)
           
static ByteList YAML.dumpAll(java.util.List data)
           
static ByteList YAML.dumpAll(java.util.List data, YAMLFactory fact)
           
static ByteList YAML.dumpAll(java.util.List data, YAMLConfig cfg)
           
static ByteList YAML.dumpAll(java.util.List data, YAMLFactory fact, YAMLConfig cfg)
           
 ByteList TestBean.getName()
           
 ByteList TestBean2.getName()
           
 

Methods in org.jvyamlb with parameters of type ByteList
 Scanner DefaultYAMLFactory.createScanner(ByteList io)
           
 Node Representer.scalar(java.lang.String tag, ByteList value, char style)
           
 Node RepresenterImpl.scalar(java.lang.String tag, ByteList value, char style)
           
 Node RepresenterImpl.representScalar(java.lang.String tag, ByteList value, char style)
           
 java.lang.String Resolver.resolve(java.lang.Class kind, ByteList value, boolean[] implicit)
           
 java.lang.String ResolverImpl.resolve(java.lang.Class kind, ByteList value, boolean[] implicit)
           
 java.lang.String ResolverScanner.recognize(ByteList list)
           
static java.lang.String ScannerImpl.into(ByteList b)
           
static java.lang.Object YAML.load(ByteList io)
           
static java.lang.Object YAML.load(ByteList io, YAMLConfig cfg)
           
static java.lang.Object YAML.load(ByteList io, YAMLFactory fact, YAMLConfig cfg)
           
static java.util.List YAML.loadAll(ByteList io)
           
static java.util.List YAML.loadAll(ByteList io, YAMLConfig cfg)
           
static java.util.List YAML.loadAll(ByteList io, YAMLFactory fact, YAMLConfig cfg)
           
 Scanner YAMLFactory.createScanner(ByteList io)
           
 void TestBean.setName(ByteList name)
           
 void TestBean2.setName(ByteList name)
           
 

Constructors in org.jvyamlb with parameters of type ByteList
ScannerImpl(ByteList stream)
           
TestBean(ByteList name, int age, java.util.Date born)
           
TestBean2(ByteList name, int age)
           
 

Uses of ByteList in org.jvyamlb.events
 

Methods in org.jvyamlb.events that return ByteList
 ByteList ScalarEvent.getValue()
           
 

Constructors in org.jvyamlb.events with parameters of type ByteList
ScalarEvent(java.lang.String anchor, java.lang.String tag, boolean[] implicit, ByteList value, char style)
           
 

Uses of ByteList in org.jvyamlb.nodes
 

Constructors in org.jvyamlb.nodes with parameters of type ByteList
ScalarNode(java.lang.String tag, ByteList value, char style)
           
 

Uses of ByteList in org.jvyamlb.tokens
 

Methods in org.jvyamlb.tokens that return ByteList
 ByteList ScalarToken.getValue()
           
 ByteList[] TagToken.getValue()
           
 

Constructors in org.jvyamlb.tokens with parameters of type ByteList
ScalarToken(ByteList value, boolean plain)
           
ScalarToken(ByteList value, boolean plain, char style)
           
TagToken(ByteList[] value)
           
 



Copyright © 2002-2007 JRuby Team. All Rights Reserved.