Tabnine Logo
APTStringManager$APTSingleStringManager
Code IndexAdd Tabnine to your IDE (free)

How to use
APTStringManager$APTSingleStringManager
in
org.netbeans.modules.cnd.utils.cache

Best Java code snippets using org.netbeans.modules.cnd.utils.cache.APTStringManager$APTSingleStringManager (Showing top 2 results out of 315)

origin: org.netbeans.modules/org-netbeans-modules-cnd-utils

private static APTStringManager instance(String name, int initialCapacity) {
  APTStringManager instance = instances.get(name);
  if (instance == null) {
    instance = new APTSingleStringManager(name, initialCapacity);
    instances.put(name, instance);
  }
  return instance;
}  
origin: org.netbeans.modules/org-netbeans-modules-cnd-utils

    /*package*/APTCompoundStringManager(String name, int sliceNumber, int initialCapacity) {
//            this.sliceNumber = sliceNumber;
      // Find power-of-two sizes best matching arguments
      int ssize = 1;
      while (ssize < sliceNumber) {
        ssize <<= 1;
      }
      segmentMask = ssize - 1;
      instances = new APTStringManager[ssize];
      for (int i = 0; i < instances.length; i++) {
        instances[i] = new APTSingleStringManager(name, initialCapacity);
      }
      this.name = name;
    }
    
org.netbeans.modules.cnd.utils.cacheAPTStringManager$APTSingleStringManager

Most used methods

  • <init>

Popular in Java

  • Reactive rest calls using spring rest template
  • getSupportFragmentManager (FragmentActivity)
  • findViewById (Activity)
  • getSharedPreferences (Context)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Path (java.nio.file)
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • From CI to AI: The AI layer in your organization
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