Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sourceCodePoint1 (0.12 sec)

  1. okhttp-idna-mapping-table/src/test/kotlin/okhttp3/internal/idn/MappingTablesTest.kt

              sourceCodePoint0 = 0,
              sourceCodePoint1 = 0,
              mappedToCodePoints = listOf(1 shl 18),
            ),
          ),
        ).isEqualTo(null)
      }
    
      private fun mappingOf(
        sourceCodePoint0: Int,
        sourceCodePoint1: Int,
        mappedToCodePoints: List<Int>,
      ): Mapping =
        Mapping(
          sourceCodePoint0 = sourceCodePoint0,
          sourceCodePoint1 = sourceCodePoint1,
          type = TYPE_MAPPED,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

          unionWith = next
          index++
        }
    
        result +=
          Mapping(
            sourceCodePoint0 = mapping.sourceCodePoint0,
            sourceCodePoint1 = unionWith.sourceCodePoint1,
            type = type,
            mappedTo = mappedTo,
          )
      }
    
      return result
    }
    
    internal fun canonicalizeType(type: Int): Int =
      when (type) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top