Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isId (0.02 sec)

  1. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

                if (value == null) {
                    return null
                } else if (isId(value)) {
                    return toPbxObject(toNSString(value).getContent())
                } else if (value instanceof NSArray) {
                    def list = []
                    for (NSObject obj : value.getArray()) {
                        if (isId(obj)) {
                            list.add(toPbxObject(toNSString(obj).getContent()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    }
    
    func checkCopyLocksRangeVar(pass *analysis.Pass, rtok token.Token, e ast.Expr) {
    	if e == nil {
    		return
    	}
    	id, isId := e.(*ast.Ident)
    	if isId && id.Name == "_" {
    		return
    	}
    
    	var typ types.Type
    	if rtok == token.DEFINE {
    		if !isId {
    			return
    		}
    		obj := pass.TypesInfo.Defs[id]
    		if obj == nil {
    			return
    		}
    		typ = obj.Type()
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top