Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for nchar (0.05 sec)

  1. src/cmd/cgo/out.go

    typedef ptrdiff_t intgo;
    
    #define GO_CGO_GOSTRING_TYPEDEF
    typedef struct { const char *p; intgo n; } _GoString_;
    typedef struct { char *p; intgo n; intgo c; } _GoBytes_;
    _GoString_ GoString(char *p);
    _GoString_ GoStringN(char *p, int l);
    _GoBytes_ GoBytes(void *p, int n);
    char *CString(_GoString_);
    void *CBytes(_GoBytes_);
    void *_CMalloc(size_t);
    
    __attribute__ ((unused))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

      }
    
      private static CharMatcher.IsEither isEither(char c1, char c2) {
        return new CharMatcher.IsEither(c1, c2);
      }
    
      /** Implementation of {@link #anyOf(CharSequence)} for exactly two characters. */
      private static final class IsEither extends FastMatcher {
    
        private final char match1;
        private final char match2;
    
        IsEither(char match1, char match2) {
          this.match1 = match1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/CharMatcher.java

      }
    
      private static CharMatcher.IsEither isEither(char c1, char c2) {
        return new CharMatcher.IsEither(c1, c2);
      }
    
      /** Implementation of {@link #anyOf(CharSequence)} for exactly two characters. */
      private static final class IsEither extends FastMatcher {
    
        private final char match1;
        private final char match2;
    
        IsEither(char match1, char match2) {
          this.match1 = match1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/regexp/testdata/testregex.c

    	char*		s;
    	char*		ans;
    	char*		msg;
    	char*		fun;
    	char*		ppat;
    	char*		subunit;
    	char*		version;
    	char*		field[6];
    	char*		delim[6];
    	FILE*		fp;
    	int		tabs[6];
    	char		unit[64];
    	regmatch_t	match[100];
    	regex_t		preg;
    
    	static char	pat[32 * 1024];
    	static char	patbuf[32 * 1024];
    	static char	strbuf[32 * 1024];
    
    	int		nonosub = REG_NOSUB == 0;
    	int		nonexec = 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.h

                                              const char* attr_name,
                                              unsigned char value);
    TF_CAPI_EXPORT extern void TF_SetAttrBoolList(TF_OperationDescription* desc,
                                                  const char* attr_name,
                                                  const unsigned char* values,
                                                  int num_values);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  6. tensorflow/c/kernels_test.cc

        for (const auto& s : list) {
          list_total_size += s.size();
        }
    
        TF_Status* status = TF_NewStatus();
        std::unique_ptr<char*[]> values(new char*[list.size()]);
        std::unique_ptr<size_t[]> lens(new size_t[list.size()]);
        std::unique_ptr<char[]> storage(new char[list_total_size]);
        EXPECT_TF_SIZE(/*attr_name*/ "Attr", /*expected_list_size*/ list.size(),
                       /*expected_total_size*/ list_total_size);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    GTEST_API_ AssertionResult IsSubstring(
        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    GTEST_API_ AssertionResult IsSubstring(
        const char* needle_expr, const char* haystack_expr,
        const wchar_t* needle, const wchar_t* haystack);
    GTEST_API_ AssertionResult IsNotSubstring(
        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    GTEST_API_ AssertionResult IsSubstring(
        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    GTEST_API_ AssertionResult IsSubstring(
        const char* needle_expr, const char* haystack_expr,
        const wchar_t* needle, const wchar_t* haystack);
    GTEST_API_ AssertionResult IsNotSubstring(
        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      return isxdigit(static_cast<unsigned char>(ch)) != 0;
    }
    inline bool IsXDigit(wchar_t ch) {
      const unsigned char low_byte = static_cast<unsigned char>(ch);
      return ch == low_byte && isxdigit(low_byte) != 0;
    }
    
    inline char ToLower(char ch) {
      return static_cast<char>(tolower(static_cast<unsigned char>(ch)));
    }
    inline char ToUpper(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)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      return isxdigit(static_cast<unsigned char>(ch)) != 0;
    }
    inline bool IsXDigit(wchar_t ch) {
      const unsigned char low_byte = static_cast<unsigned char>(ch);
      return ch == low_byte && isxdigit(low_byte) != 0;
    }
    
    inline char ToLower(char ch) {
      return static_cast<char>(tolower(static_cast<unsigned char>(ch)));
    }
    inline char ToUpper(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)
Back to top