Searched defs:int (Results 1 – 25 of 48) sorted by relevance
12
/build/soong/bp2build/ |
D | configurability.go | 70 func prettyPrintAttribute(v bazel.Attribute, indent int) (string, error) { 122 func prettyPrintSelectMap(selectMap map[string]reflect.Value, defaultValue string, indent int) (str… 184 func prettyPrintSelectEntry(value reflect.Value, key string, indent int) (string, error) {
|
D | build_conversion.go | 382 func prettyPrint(propertyValue reflect.Value, indent int) (string, error) { 473 func extractStructProperties(structValue reflect.Value, indent int) map[string]string { 550 func makeIndent(indent int) string {
|
/build/blueprint/proptools/ |
D | filter.go | 39 func filterPropertyStructFields(fields []reflect.StructField, prefix string, maxTypeNameSize int, 156 func filterPropertyStruct(prop reflect.Type, prefix string, maxNameSize int, 208 func FilterPropertyStructSharded(prop reflect.Type, maxTypeNameSize int, predicate FilterFieldPredi…
|
D | proptools.go | 104 func IntDefault(i *int64, def int) int {
|
/build/soong/cc/symbolfile/ |
D | __init__.py | 157 def should_omit_version(version: Version, arch: Arch, api: int, llndk: bool, 184 def should_omit_symbol(symbol: Symbol, arch: Arch, api: int, llndk: bool, 215 def symbol_in_api(tags: Iterable[Tag], arch: Arch, api: int) -> bool: 237 def symbol_versioned_in_api(tags: Iterable[Tag], api: int) -> bool: 273 api: int, llndk: bool, apex: bool) -> None:
|
/build/soong/shared/ |
D | env.go | 121 func (e envFileData) Less(i, j int) bool { 125 func (e envFileData) Swap(i, j int) {
|
/build/soong/ui/metrics/proc/ |
D | status_linux.go | 16 func NewProcStatus(pid int, fileSystem fs.FileSystem) (*ProcStatus, error) {
|
D | status_darwin.go | 9 func NewProcStatus(pid int, _ fs.FileSystem) (*ProcStatus, error) {
|
/build/blueprint/ |
D | ninja_strings.go | 133 func parseFirstRuneState(state *parseState, i int, r rune) (stateFunc, error) { 140 func parseStringState(state *parseState, i int, r rune) (stateFunc, error) { 155 func parseDollarStartState(state *parseState, i int, r rune) (stateFunc, error) { 187 func parseDollarState(state *parseState, i int, r rune) (stateFunc, error) { 236 func parseBracketsState(state *parseState, i int, r rune) (stateFunc, error) {
|
/build/soong/android/ |
D | util.go | 320 func callerName(skip int) (pkgPath, funcName string, ok bool) { 410 func ShardPaths(paths Paths, shardSize int) []Paths { 427 func ShardString(s string, shardSize int) []string { 444 func ShardStrings(s []string, shardSize int) [][]string {
|
D | path_properties.go | 116 func fieldsByIndex(v reflect.Value, index []int, values *[]reflect.Value) {
|
D | api_levels.go | 143 func uncheckedFinalApiLevel(num int) ApiLevel { 257 apiLevelsMap map[string]int) {
|
/build/blueprint/parser/ |
D | sort.go | 272 func (l commentsByOffset) Less(i, j int) bool { 276 func (l commentsByOffset) Swap(i, j int) {
|
D | parser_test.go | 26 func mkpos(offset, line, column int) scanner.Position {
|
D | modify.go | 71 func (list *PatchList) Add(start, end int, replacement string) error {
|
/build/soong/bazel/ |
D | aquery.go | 213 depsetIdToArtifactIdsCache map[int][]int, depsetId int) ([]int, error) { 234 func expandPathFragment(id int, pathFragmentsMap map[int]pathFragment) (string, error) {
|
/build/soong/dexpreopt/ |
D | class_loader_context.go | 257 func (clcMap ClassLoaderContextMap) addContext(ctx android.ModuleInstallPathContext, sdkVer int, li… 309 func (clcMap ClassLoaderContextMap) AddContext(ctx android.ModuleInstallPathContext, sdkVer int, 407 func validateClassLoaderContextRec(sdkVer int, clcs []*ClassLoaderContext) (bool, error) {
|
D | dexpreopt.go | 205 module *ModuleConfig, rule *android.RuleBuilder, archIdx int, profile android.WritablePath, 555 func checkSystemServerOrder(ctx android.PathContext, jarIndex int) {
|
/build/soong/ui/build/ |
D | proc_sync_test.go | 57 func newCountWaiter(count int) (waiter *countWaiter) { 84 func testLockCountingTo(index int) (lock *countLock) {
|
/build/soong/cc/ndkstubgen/ |
D | __init__.py | 32 api: int, llndk: bool, apex: bool) -> None:
|
/build/soong/ui/logger/ |
D | logger.go | 72 Output(calldepth int, str string) error 80 func fileRotation(from, baseName, ext string, cur, max int) error { 99 func CreateFileWithRotation(filename string, maxCount int) (*os.File, error) {
|
/build/soong/jar/ |
D | jar.go | 128 func javaIdentRune(ch rune, i int) bool {
|
/build/soong/finder/ |
D | finder_test.go | 39 …hNumThreads(t *testing.T, filesystem *fs.MockFs, cacheParams CacheParams, numThreads int) *Finder { 47 func newFinderAndErr(t *testing.T, filesystem *fs.MockFs, cacheParams CacheParams, numThreads int) … 150 func testAgainstSeveralThreadcounts(t *testing.T, tester func(t *testing.T, numThreads int)) {
|
/build/soong/androidmk/parser/ |
D | ast.go | 118 func (s byPosition) Swap(i, j int) { 122 func (s byPosition) Less(i, j int) bool {
|
/build/soong/cc/ |
D | ccdeps.go | 238 func (d Deals) Less(i, j int) bool { return d[i].Name < d[j].Name } 239 func (d Deals) Swap(i, j int) { d[i], d[j] = d[j], d[i] }
|
12