Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 131 for Macro (0.03 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

                                << "\n" << e1 << " evaluates to " << v1;
    }
    
    // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1.
    // Don't use this in your code.
    #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\
      GTEST_ASSERT_(pred_format(#v1, v1), \
                    on_failure)
    
    // Internal macro for implementing {EXPECT|ASSERT}_PRED1.  Don't use
    // this in your code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/swift/basic/kotlin/build.gradle.kts

        // Define a preprocessor macro for every binary
        macros.add("NDEBUG")
    
        // Define a compiler options
        compilerArgs.add("-O")
    }
    // end::swift-compiler-options-all-variants[]
    
    // tag::swift-compiler-options-per-variants[]
    application {
        binaries.configureEach(SwiftStaticLibrary::class.java) {
            // Define a preprocessor macro for every binary
            compileTask.get().macros.add("NDEBUG")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/swift/basic/groovy/build.gradle

    tasks.withType(SwiftCompile).configureEach {
        // Define a preprocessor macro for every binary
        macros.add("NDEBUG")
    
        // Define a compiler options
        compilerArgs.add '-O'
    }
    // end::swift-compiler-options-all-variants[]
    
    // tag::swift-compiler-options-per-variants[]
    application {
        binaries.configureEach(SwiftStaticLibrary) {
            // Define a preprocessor macro for every binary
            compileTask.get().macros.add("NDEBUG")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

                                << "\n" << e1 << " evaluates to " << v1;
    }
    
    // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1.
    // Don't use this in your code.
    #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\
      GTEST_ASSERT_(pred_format(#v1, v1), \
                    on_failure)
    
    // Internal macro for implementing {EXPECT|ASSERT}_PRED1.  Don't use
    // this in your code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

        /**
         * Returns the macro define directives for this binary.
         */
        DomainObjectSet<? extends MacroDirective> getMacroDefines();
    
        /**
         * Returns the macro undefine directives for this binary.
         */
        Set<String> getMacroUndefines();
    
        /**
         * Returns any additional compiler arguments not included in the search paths and macro directives of this binary.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/cpp/basic/groovy/build.gradle

            implementation project(':common')
        }
    }
    // end::cpp-dependency-mgmt[]
    
    // tag::cpp-compiler-options-all-variants[]
    tasks.withType(CppCompile).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add '-W3'
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll toolChain.map { toolChain ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

                #define PREFIX MACRO_USES
                #define SUFFIX() _FUNCTION
                #define ARGS (MACRO_FUNCTION())
    
                // Token concatenation ## does not macro expand macro function args, so is usually wrapped by another macro function
                #define CONCAT_FUNCTION2(X, Y) X ## Y
                #define CONCAT_FUNCTION(X, Y) CONCAT_FUNCTION2(X, Y)
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/cpp/basic/kotlin/build.gradle.kts

            implementation(project(":common"))
        }
    }
    // end::cpp-dependency-mgmt[]
    
    // tag::cpp-compiler-options-all-variants[]
    tasks.withType(CppCompile::class.java).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add("-W3")
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll(toolChain.map { toolChain ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cpp/groovy/build.gradle

                }
    // end::source-library[]
            }
        }
    }
    
    // end::executables[]
    
    // tag::all-binaries[]
    model {
        binaries {
            all {
                // Define a preprocessor macro for every binary
                cppCompiler.define "NDEBUG"
    
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cppCompiler.args "-O2", "-fno-access-control"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/AbstractMacro.java

     * limitations under the License.
     */
    
    package org.gradle.language.nativeplatform.internal.incremental.sourceparser;
    
    import org.gradle.language.nativeplatform.internal.Macro;
    
    public abstract class AbstractMacro extends AbstractExpression implements Macro {
        private final String name;
    
        AbstractMacro(String name) {
            this.name = name;
        }
    
        @Override
        public String getName() {
            return name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top