Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for isQtext (0.65 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

        return if (firstChild.tokenType == PARENTHESIZED) {
            getFirstChildExpressionUnwrapped(firstChild)
        } else {
            firstChild
        }
    }
    
    
    internal
    val LighterASTNode.asText: String
        get() = this.toString()
    
    
    internal
    val LighterASTNode.isUseful: Boolean
        get() = !(COMMENTS.contains(tokenType) || tokenType == WHITE_SPACE || tokenType == SEMICOLON)
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/go/printer/printer.go

    				p.state = inEscape
    				m = n + 1 // +1: skip tabwriter.Escape
    			default:
    				_, err = p.output.Write(p.space)
    				p.state = inText
    				m = n
    			}
    		case inEscape:
    			if b == tabwriter.Escape {
    				_, err = p.output.Write(data[m:n])
    				p.resetSpace()
    			}
    		case inText:
    			switch b {
    			case '\t', ' ':
    				_, err = p.output.Write(data[m:n])
    				p.resetSpace()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		arch.maxAlign = int(arch.sizes.Alignof(types.Typ[types.Int64]))
    	}
    }
    
    var (
    	re           = regexp.MustCompile
    	asmPlusBuild = re(`//\s+\+build\s+([^\n]+)`)
    	asmTEXT      = re(`\bTEXT\b(.*)ยท([^\(]+)\(SB\)(?:\s*,\s*([0-9A-Z|+()]+))?(?:\s*,\s*\$(-?[0-9]+)(?:-([0-9]+))?)?`)
    	asmDATA      = re(`\b(DATA|GLOBL)\b`)
    	asmNamedFP   = re(`\$?([a-zA-Z0-9_\xFF-\x{10FFFF}]+)(?:\+([0-9]+))\(FP\)`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/sym.go

    			}
    			if flag&traverseAux != 0 {
    				fnNoNil(s.Gotype)
    				if s.Type == objabi.STEXT {
    					f := func(parent *LSym, aux *LSym) {
    						fn(aux)
    					}
    					ctxt.traverseFuncAux(flag, s, f, files)
    				} else if v := s.VarInfo(); v != nil {
    					fnNoNil(v.dwarfInfoSym)
    				}
    			}
    			if flag&traversePcdata != 0 && s.Type == objabi.STEXT {
    				fi := s.Func().Pcln
    				fnNoNil(fi.Pcsp)
    				fnNoNil(fi.Pcfile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho.go

    	}
    
    	/* text */
    	v := Rnd(int64(uint64(HEADR)+Segtext.Length), *FlagRound)
    
    	var mstext *MachoSeg
    	if ctxt.LinkMode != LinkExternal {
    		ms = newMachoSeg("__TEXT", 20)
    		ms.vaddr = uint64(va)
    		ms.vsize = uint64(v)
    		ms.fileoffset = 0
    		ms.filesize = uint64(v)
    		ms.prot1 = 7
    		ms.prot2 = 5
    		mstext = ms
    	}
    
    	for _, sect := range Segtext.Sections {
    		machoshbits(ctxt, ms, sect, "__TEXT")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

    def acceptedViolations = AcceptedApiChanges.parse(apiChangesJsonDirectory.asFile.listFiles()
        .findAll { it.name.endsWith(".json") }
        .collect { providers.fileContents(apiChangesJsonDirectory.file(it.name)).asText.get() }
    )
    
    def compatibilityBaselineVersion = moduleIdentity.releasedVersions.get().mostRecentRelease.version
    
    def ARTIFACT_TYPE = Attribute.of('artifactType', String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    				if ldr.SymType(r.Sym()) == sym.STEXT {
    					// This should be an mtctr instruction. Turn it into a nop.
    					su := ldr.MakeSymbolUpdater(s)
    					const MASK_OP_MTCTR = 63<<26 | 0x3FF<<11 | 0x1FF<<1
    					rewritetonop(&ctxt.Target, ldr, su, int64(r.Off()), MASK_OP_MTCTR, OP_MTCTR)
    				}
    			case objabi.ElfRelocOffset + objabi.RelocType(elf.R_PPC64_PLTCALL):
    				if ldr.SymType(r.Sym()) == sym.STEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

            }
    
            @Override
            String toString() {
                return descriptor.displayName
            }
    
            boolean isTest() {
                return descriptor instanceof TestOperationDescriptor
            }
    
            boolean isTestClassOrMethod() {
                return isTest() && (descriptor.className || descriptor.methodName)
            }
    
            boolean isTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    func (af *atomicLoadPkgFlags) has(cond loadPkgFlags) bool {
    	return loadPkgFlags(af.bits.Load())&cond == cond
    }
    
    // isTest reports whether pkg is a test of another package.
    func (pkg *loadPkg) isTest() bool {
    	return pkg.testOf != nil
    }
    
    // fromExternalModule reports whether pkg was loaded from a module other than
    // the main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    	fileX    int64
    	buildIDX int64
    
    	// Name of the kernel relocation symbol ("_text" or "_stext"), extracted from File.
    	// For linux kernel mappings generated by some tools, correct symbolization depends
    	// on knowing which of the two possible relocation symbols was used for `Start`.
    	// This is given to us as a suffix in `File` (e.g. "[kernel.kallsyms]_stext").
    	//
    	// Note, this public field is not persisted in the proto. For the purposes of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top