Examples of charAt()


Examples of com.ibm.icu.text.UnicodeSet.charAt()

        int count = shapingTypes.size();
       
        System.out.println("There are " + count + " characters with a joining type.");
       
        for(int i = 0; i < count; i += 1) {
            int ch = shapingTypes.charAt(i);
           
            classTable.addMapping(ch, UCharacter.getIntPropertyValue(ch, UProperty.JOINING_TYPE));
        }
       
        LigatureModuleWriter writer = new LigatureModuleWriter();
View Full Code Here

Examples of com.mysema.query.types.expr.StringExpression.charAt()

                Object rv = field.get(expr);
                if (rv instanceof Expression) {
                    if (rv instanceof StringExpression) {
                        StringExpression str = (StringExpression)rv;
                        toVisit.add(str.toLowerCase());
                        toVisit.add(str.charAt(0));
                        toVisit.add(str.isEmpty());
                    } else if (rv instanceof BooleanExpression) {
                        BooleanExpression b = (BooleanExpression)rv;
                        toVisit.add(b.not());
                    }
View Full Code Here

Examples of com.sun.org.apache.xml.internal.utils.FastStringBuffer.charAt()

    int d = dstBegin;
    FastStringBuffer fsb = fsb();

    for (int i = srcBegin + m_start; i < end; i++)
    {
      dst[d++] = fsb.charAt(i);
    }
  }

  /**
   * Compares this string to the specified object.
View Full Code Here

Examples of com.sun.org.apache.xml.internal.utils.FastStringBuffer.charAt()

      int i = m_start;
      int j = 0;

      while (n-- != 0)
      {
        if (fsb.charAt(i) != obj2.charAt(j))
        {
          return false;
        }

        i++;
View Full Code Here

Examples of com.sun.org.apache.xml.internal.utils.FastStringBuffer.charAt()

      int i = m_start;
      int j = 0;

      while (n-- != 0)
      {
        if (fsb.charAt(i) != str.charAt(j))
        {
          return false;
        }

        i++;
View Full Code Here

Examples of com.sun.org.apache.xml.internal.utils.FastStringBuffer.charAt()

      int i = m_start;
      int j = 0;

      while (n-- != 0)
      {
        if (fsb.charAt(i) != anotherString.charAt(j))
        {
          return false;
        }

        i++;
View Full Code Here

Examples of com.sun.org.apache.xml.internal.utils.FastStringBuffer.charAt()

    int i = m_start;
    int j = 0;

    while (n-- != 0)
    {
      char c1 = fsb.charAt(i);
      char c2 = xstr.charAt(j);

      if (c1 != c2)
      {
        return c1 - c2;
View Full Code Here

Examples of com.sun.org.apache.xml.internal.utils.FastStringBuffer.charAt()

    int i = m_start;
    int j = 0;

    while (n-- != 0)
    {
      char c1 = Character.toLowerCase(fsb.charAt(i));
      char c2 = Character.toLowerCase(xstr.charAt(j));

      if (c1 != c2)
      {
        return c1 - c2;
View Full Code Here

Examples of com.sun.org.apache.xml.internal.utils.FastStringBuffer.charAt()

      return false;
    }

    while (--pc >= 0)
    {
      if (fsb.charAt(to) != prefix.charAt(po))
      {
        return false;
      }

      to++;
View Full Code Here

Examples of com.sun.org.apache.xml.internal.utils.FastStringBuffer.charAt()

      return -1;
    }

    for (int i = m_start + fromIndex; i < max; i++)
    {
      if (fsb.charAt(i) == ch)
      {
        return i - m_start;
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.