Codota Logo
AttLocalVariableTypeTable.<init>
Code IndexAdd Codota to your IDE (free)

How to use
com.android.dx.cf.attrib.AttLocalVariableTypeTable
constructor

Best Java code snippets using com.android.dx.cf.attrib.AttLocalVariableTypeTable.<init> (Showing top 6 results out of 315)

  • Common ways to obtain AttLocalVariableTypeTable
private void myMethod () {
AttLocalVariableTypeTable a =
  • Codota IconAttributeList attributeList;String name;(AttLocalVariableTypeTable) attributeList.findFirst(name)
  • Codota IconAttributeList attributeList;Attribute attrib;(AttLocalVariableTypeTable) attributeList.findNext(attrib)
  • Smart code suggestions by Codota
}
origin: com.google.android.tools/dx

/**
 * Parses a {@code LocalVariableTypeTable} attribute.
 */
private Attribute localVariableTypeTable(DirectClassFile cf, int offset,
    int length, ParseObserver observer) {
  if (length < 2) {
    return throwSeverelyTruncated();
  }
  ByteArray bytes = cf.getBytes();
  int count = bytes.getUnsignedShort(offset);
  if (observer != null) {
    observer.parsed(bytes, offset, 2,
        "local_variable_type_table_length: " + Hex.u2(count));
  }
  LocalVariableList list = parseLocalVariables(
      bytes.slice(offset + 2, offset + length), cf.getConstantPool(),
      observer, count, true);
  return new AttLocalVariableTypeTable(list);
}
origin: nikita36078/J2ME-Loader

/**
 * Parses a {@code LocalVariableTypeTable} attribute.
 */
private Attribute localVariableTypeTable(DirectClassFile cf, int offset,
    int length, ParseObserver observer) {
  if (length < 2) {
    return throwSeverelyTruncated();
  }
  ByteArray bytes = cf.getBytes();
  int count = bytes.getUnsignedShort(offset);
  if (observer != null) {
    observer.parsed(bytes, offset, 2,
        "local_variable_type_table_length: " + Hex.u2(count));
  }
  LocalVariableList list = parseLocalVariables(
      bytes.slice(offset + 2, offset + length), cf.getConstantPool(),
      observer, count, true);
  return new AttLocalVariableTypeTable(list);
}
origin: com.android/dx

/**
 * Parses a {@code LocalVariableTypeTable} attribute.
 */
private Attribute localVariableTypeTable(DirectClassFile cf, int offset,
    int length, ParseObserver observer) {
  if (length < 2) {
    return throwSeverelyTruncated();
  }
  ByteArray bytes = cf.getBytes();
  int count = bytes.getUnsignedShort(offset);
  if (observer != null) {
    observer.parsed(bytes, offset, 2,
        "local_variable_type_table_length: " + Hex.u2(count));
  }
  LocalVariableList list = parseLocalVariables(
      bytes.slice(offset + 2, offset + length), cf.getConstantPool(),
      observer, count, true);
  return new AttLocalVariableTypeTable(list);
}
origin: com.android.tools.build/builder

/**
 * Parses a {@code LocalVariableTypeTable} attribute.
 */
private Attribute localVariableTypeTable(DirectClassFile cf, int offset,
    int length, ParseObserver observer) {
  if (length < 2) {
    return throwSeverelyTruncated();
  }
  ByteArray bytes = cf.getBytes();
  int count = bytes.getUnsignedShort(offset);
  if (observer != null) {
    observer.parsed(bytes, offset, 2,
        "local_variable_type_table_length: " + Hex.u2(count));
  }
  LocalVariableList list = parseLocalVariables(
      bytes.slice(offset + 2, offset + length), cf.getConstantPool(),
      observer, count, true);
  return new AttLocalVariableTypeTable(list);
}
origin: com.jakewharton.android.repackaged/dalvik-dx

/**
 * Parses a {@code LocalVariableTypeTable} attribute.
 */
private Attribute localVariableTypeTable(DirectClassFile cf, int offset,
    int length, ParseObserver observer) {
  if (length < 2) {
    return throwSeverelyTruncated();
  }
  ByteArray bytes = cf.getBytes();
  int count = bytes.getUnsignedShort(offset);
  if (observer != null) {
    observer.parsed(bytes, offset, 2,
        "local_variable_type_table_length: " + Hex.u2(count));
  }
  LocalVariableList list = parseLocalVariables(
      bytes.slice(offset + 2, offset + length), cf.getConstantPool(),
      observer, count, true);
  return new AttLocalVariableTypeTable(list);
}
origin: dragome/dragome-sdk

/**
 * Parses a {@code LocalVariableTypeTable} attribute.
 */
private Attribute localVariableTypeTable(DirectClassFile cf, int offset,
    int length, ParseObserver observer) {
  if (length < 2) {
    return throwSeverelyTruncated();
  }
  ByteArray bytes = cf.getBytes();
  int count = bytes.getUnsignedShort(offset);
  if (observer != null) {
    observer.parsed(bytes, offset, 2,
        "local_variable_type_table_length: " + Hex.u2(count));
  }
  LocalVariableList list = parseLocalVariables(
      bytes.slice(offset + 2, offset + length), cf.getConstantPool(),
      observer, count, true);
  return new AttLocalVariableTypeTable(list);
}
com.android.dx.cf.attribAttLocalVariableTypeTable<init>

Javadoc

Constructs an instance.

Popular methods of AttLocalVariableTypeTable

  • getLocalVariables

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • getContentResolver (Context)
  • addToBackStack (FragmentTransaction)
  • FileInputStream (java.io)
    A FileInputStream obtains input bytes from a file in a file system. What files are available depends
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Runner (org.openjdk.jmh.runner)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now