Home
last modified time | relevance | path

Searched defs:int (Results 1 – 20 of 20) sorted by relevance

/build/blueprint/parser/
Dsort.go162 func (l elemList) Swap(i, j int) {
166 func (l elemList) Less(i, j int) bool {
176 func (l commentsByOffset) Less(i, j int) bool {
180 func (l commentsByOffset) Swap(i, j int) {
Dparser_test.go24 func mkpos(offset, line, column int) scanner.Position {
Dprinter.go367 func max(a, b int) int {
/build/blueprint/
Dninja_strings.go114 func parseStringState(state *parseState, i int, r rune) (stateFunc, error) {
129 func parseDollarStartState(state *parseState, i int, r rune) (stateFunc, error) {
161 func parseDollarState(state *parseState, i int, r rune) (stateFunc, error) {
210 func parseBracketsState(state *parseState, i int, r rune) (stateFunc, error) {
Dcontext.go1713 func spliceModulesAtIndex(modules []*moduleInfo, i int, newModules []*moduleInfo) []*moduleInfo {
2680 func (s moduleSorter) Less(i, j int) bool {
2690 func (s moduleSorter) Swap(i, j int) {
Dsingleton_ctx.go40 RequireNinjaVersion(major, minor, micro int)
Dpackage_ctx.go153 func callerName(skip int) (pkgPath, funcName string, ok bool) {
/build/kati/
Dquery.go22 func showDeps(w io.Writer, n *DepNode, indent int, seen map[string]int) {
Dworker.go66 func (jq jobQueue) Swap(i, j int) { jq[i], jq[j] = jq[j], jq[i] }
68 func (jq jobQueue) Less(i, j int) bool {
230 func newWorkerManager(numJobs int) (*workerManager, error) {
Dstats.go170 func (b byTotalTime) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
171 func (b byTotalTime) Less(i, j int) bool {
Dserialize.go584 func human(n int) string {
Dexpr.go622 func parseFunc(f mkFunc, in []byte, s int, term []byte, funcName string, alloc bool) (Value, int, e…
Dfunc.go104 func assertArity(name string, req, n int) error {
/build/soong/env/
Denv.go91 func (e envFileData) Less(i, j int) bool {
95 func (e envFileData) Swap(i, j int) {
/build/soong/androidmk/parser/
Dmakething.go136 func (s byPosition) Swap(i, j int) {
140 func (s byPosition) Less(i, j int) bool {
Dmake_strings.go154 func splitAnyN(s, sep string, n int) []string {
/build/blueprint/bootstrap/bpdoc/
Dbpdoc.go627 func (l moduleTypeByName) Less(i, j int) bool { return l[i].Name < l[j].Name }
628 func (l moduleTypeByName) Swap(i, j int) { l[i], l[j] = l[j], l[i] }
/build/soong/common/
Dvariable.go86 func intPtr(v int) *int {
/build/tools/makeparallel/
Dmakeparallel.cpp191 action.sa_sigaction = [](int, siginfo_t*, void*) { in ReadByteTimeout() argument
/build/soong/cc/
Dbuilder.go413 func splitListForSize(list []string, limit int) (lists [][]string, err error) {