Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 143 for Macro (0.03 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/MacroDirective.java

     */
    
    package org.gradle.tooling.model.cpp;
    
    import javax.annotation.Nullable;
    
    /**
     * Represent a macro directive.
     *
     * @since 4.10
     */
    public interface MacroDirective {
        /**
         * Returns the name of the macro.
         */
        String getName();
    
        /**
         * Returns the value of the macro, if any.
         */
        @Nullable
        String getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 962 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeDirectives.java

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/lex/lex.go

    	return Token{ScanToken: token, text: text}
    }
    
    func (l Token) String() string {
    	return l.text
    }
    
    // A Macro represents the definition of a #defined macro.
    type Macro struct {
    	name   string   // The #define name.
    	args   []string // Formal arguments.
    	tokens []Token  // Body of macro.
    }
    
    // Tokenize turns a string into a list of Tokens; used to parse the -D flag and in tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // Parameters:
    //   statement -  A statement that a macro such as EXPECT_DEATH would test
    //                for program termination. This macro has to make sure this
    //                statement is compiled but not executed, to ensure that
    //                EXPECT_DEATH_IF_SUPPORTED compiles with a certain
    //                parameter iff EXPECT_DEATH compiles with it.
    //   regex     -  A regex that a macro such as EXPECT_DEATH would use to test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/Expression.java

        /**
         * When type is {@link IncludeType#QUOTED} or {@link IncludeType#SYSTEM}, then this returns the path, without the delimiters or escape characters.
         * When type is {@link IncludeType#MACRO} or {@link IncludeType#MACRO_FUNCTION}, then this returns the name of the macro.
         * When type is {@link IncludeType#IDENTIFIER} or {@link IncludeType#TOKEN}, then this returns the token.
         * When type anything else, returns null.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

                parseMacroFunctionDirectiveBody(buffer, name, macroFunctions);
            } else {
                // An object-like macro
                parseMacroObjectDirectiveBody(buffer, name, macros);
            }
        }
    
        /**
         * Parse an "object-like" macro directive body. Consumes all input.
         */
        private void parseMacroObjectDirectiveBody(Buffer buffer, String macroName, Collection<Macro> macros) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    //   - You cannot stream a failure message to this macro.
    //
    // Note that even though the implementations of the following two
    // macros are much alike, we cannot refactor them to use a common
    // helper macro, due to some peculiarity in how the preprocessor
    // works.  If we do that, the code won't compile when the user gives
    // EXPECT_NONFATAL_FAILURE() a statement that contains a macro that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    //   - You cannot stream a failure message to this macro.
    //
    // Note that even though the implementations of the following two
    // macros are much alike, we cannot refactor them to use a common
    // helper macro, due to some peculiarity in how the preprocessor
    // works.  If we do that, the code won't compile when the user gives
    // EXPECT_NONFATAL_FAILURE() a statement that contains a macro that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/PreprocessingTool.java

        /**
         * Defines a named preprocessor macros to use when compiling this binary.
         * The macro will be supplied to the compiler as '-D name'.
         */
        void define(String name);
    
        /**
         * Defines a named preprocessor macro with a value, which will be used when compiling this binary.
         * The macro will be supplied to the compiler as '-D name=definition'.
         */
        void define(String name, String definition);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

            boolean found = false;
            for (IncludeDirectives includeDirectives : visibleMacros) {
                Iterable<Macro> macros = includeDirectives.getMacros(expression.getValue());
                for (Macro macro : macros) {
                    found = true;
                    resolveExpression(visibleMacros, macro, visitor, tokenLookup);
                }
            }
            if (!found) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
Back to top