Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for argsMap (0.23 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/ArgsMappingMacroFunction.java

        private final int[] argsMap;
        private final IncludeType type;
        private final String value;
        private final List<Expression> arguments;
    
        public ArgsMappingMacroFunction(String macroName, int parameters, int[] argsMap, IncludeType type,  String value, List<Expression> arguments) {
            super(macroName, parameters);
            this.argsMap = argsMap;
            this.type = type;
            this.value = value;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

                    int[] argsMapArray = new int[argsMap.size()];
                    for (int i = 0; i < argsMap.size(); i++) {
                        argsMapArray[i] = argsMap.get(i);
                    }
                    expression = expression.asMacroExpansion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeDirectivesSerializer.java

                    int mapCount = decoder.readSmallInt();
                    int[] argsMap = new int[mapCount];
                    for (int i = 0; i < mapCount; i++) {
                        argsMap[i] = decoder.readSmallInt();
                    }
                    return new ArgsMappingMacroFunction(name, parameters, argsMap, type, value, arguments);
                } else if (tag == UNRESOLVED) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. src/runtime/stkframe.go

    	// fetching the argument map to compute its size.
    	argMap, _ := frame.argMapInternal()
    	return uintptr(argMap.n) * goarch.PtrSize
    }
    
    // argMapInternal is used internally by stkframe to fetch special
    // argument maps.
    //
    // argMap.n is always populated with the size of the argument map.
    //
    // argMap.bytedata is only populated for dynamic argument maps (used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/lex/input.go

    		args = nil
    	} else if len(args) != len(macro.args) {
    		in.Error("wrong arg count for macro", macro.name)
    	}
    	argMap := make(map[string][]Token)
    	for i, arg := range args {
    		argMap[macro.args[i]] = arg
    	}
    	return argMap
    }
    
    // collectArgument returns the actual tokens for a single argument of a macro.
    // It also returns the token that terminated the argument, which will always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top