Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsAlNum (0.09 sec)

  1. src/regexp/syntax/parse.go

    // Python rejects names starting with digits.
    // We don't enforce either of those.
    func isValidCaptureName(name string) bool {
    	if name == "" {
    		return false
    	}
    	for _, c := range name {
    		if c != '_' && !isalnum(c) {
    			return false
    		}
    	}
    	return true
    }
    
    // parseInt parses a decimal integer.
    func (p *parser) parseInt(s string) (n int, rest string, ok bool) {
    	if s == "" || s[0] < '0' || '9' < s[0] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Therefore we need to cast a char to unsigned char before calling
    // isspace(), etc.
    
    inline bool IsAlpha(char ch) {
      return isalpha(static_cast<unsigned char>(ch)) != 0;
    }
    inline bool IsAlNum(char ch) {
      return isalnum(static_cast<unsigned char>(ch)) != 0;
    }
    inline bool IsDigit(char ch) {
      return isdigit(static_cast<unsigned char>(ch)) != 0;
    }
    inline bool IsLower(char ch) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Therefore we need to cast a char to unsigned char before calling
    // isspace(), etc.
    
    inline bool IsAlpha(char ch) {
      return isalpha(static_cast<unsigned char>(ch)) != 0;
    }
    inline bool IsAlNum(char ch) {
      return isalnum(static_cast<unsigned char>(ch)) != 0;
    }
    inline bool IsDigit(char ch) {
      return isdigit(static_cast<unsigned char>(ch)) != 0;
    }
    inline bool IsLower(char ch) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top