Tabnine Logo
NioBufferIterator
Code IndexAdd Tabnine to your IDE (free)

How to use
NioBufferIterator
in
libcore.io

Best Java code snippets using libcore.io.NioBufferIterator (Showing top 14 results out of 315)

origin: robovm/robovm

/**
 * Returns a new iterator that treats the mapped data as big-endian.
 */
public BufferIterator bigEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN);
}
origin: robovm/robovm

/**
 * Returns a new iterator that treats the mapped data as little-endian.
 */
public BufferIterator littleEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.LITTLE_ENDIAN);
}
origin: MobiVM/robovm

/**
 * Returns a new iterator that treats the mapped data as big-endian.
 */
public BufferIterator bigEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN);
}
origin: MobiVM/robovm

/**
 * Returns a new iterator that treats the mapped data as little-endian.
 */
public BufferIterator littleEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.LITTLE_ENDIAN);
}
origin: FlexoVM/flexovm

/**
 * Returns a new iterator that treats the mapped data as big-endian.
 */
public BufferIterator bigEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN);
}
origin: com.bugvm/bugvm-rt

/**
 * Returns a new iterator that treats the mapped data as little-endian.
 */
public BufferIterator littleEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.LITTLE_ENDIAN);
}
origin: com.gluonhq/robovm-rt

/**
 * Returns a new iterator that treats the mapped data as little-endian.
 */
public BufferIterator littleEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.LITTLE_ENDIAN);
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Returns a new iterator that treats the mapped data as little-endian.
 */
public BufferIterator littleEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.LITTLE_ENDIAN);
}
origin: com.bugvm/bugvm-rt

/**
 * Returns a new iterator that treats the mapped data as big-endian.
 */
public BufferIterator bigEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN);
}
origin: com.gluonhq/robovm-rt

/**
 * Returns a new iterator that treats the mapped data as big-endian.
 */
public BufferIterator bigEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN);
}
origin: ibinti/bugvm

/**
 * Returns a new iterator that treats the mapped data as big-endian.
 */
public BufferIterator bigEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN);
}
origin: ibinti/bugvm

/**
 * Returns a new iterator that treats the mapped data as little-endian.
 */
public BufferIterator littleEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.LITTLE_ENDIAN);
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Returns a new iterator that treats the mapped data as big-endian.
 */
public BufferIterator bigEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN);
}
origin: FlexoVM/flexovm

/**
 * Returns a new iterator that treats the mapped data as little-endian.
 */
public BufferIterator littleEndianIterator() {
  return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.LITTLE_ENDIAN);
}
libcore.ioNioBufferIterator

Javadoc

Iterates over big- or little-endian bytes on the native heap. See MemoryMappedFile#bigEndianIterator and MemoryMappedFile#littleEndianIterator.

Most used methods

  • <init>

Popular in Java

  • Start an intent from android
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getApplicationContext (Context)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • JTable (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now