Home
last modified time | relevance | path

Searched refs:missing (Results 1 – 25 of 249) sorted by relevance

12345678910

/aosp12/frameworks/compile/slang/tests/F_reduce_general_parse/
H A Dstderr.txt.expect1 reduce_general_parse.rscript:5:18: error: missing '(' after 'reduce' for '#pragma rs reduce'
2 reduce_general_parse.rscript:6:19: error: missing name after 'reduce(' for '#pragma rs reduce'
3 reduce_general_parse.rscript:7:20: error: missing name after 'reduce(' for '#pragma rs reduce'
4 reduce_general_parse.rscript:8:19: error: missing name after 'reduce(' for '#pragma rs reduce'
5 reduce_general_parse.rscript:9:22: error: missing ')' after 'reduce(foo' for '#pragma rs reduce'
6 reduce_general_parse.rscript:10:25: error: missing ')' after 'reduce(foo' for '#pragma rs reduce'
7 reduce_general_parse.rscript:11:12: error: missing 'accumulator' for '#pragma rs reduce'
8 reduce_general_parse.rscript:12:36: error: missing name after 'initializer(' for '#pragma rs reduce'
9 reduce_general_parse.rscript:13:12: error: missing 'accumulator' for '#pragma rs reduce'
/aosp12/build/soong/cc/
H A Dpgo.go52 func recordMissingProfileFile(ctx BaseModuleContext, missing string) {
53 getNamedMapForConfig(ctx.Config(), modulesMissingProfileFileKey).Store(missing, true)
136 missing := *props.Pgo.Profile_file + ":" + ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName()
137 recordMissingProfileFile(ctx, missing)
199 var missing []string
201 missing = append(missing, "profile kind (either \"instrumentation\" or \"sampling\" property)")
204 missing = append(missing, "profile_file property")
206 missingProps := strings.Join(missing, ", ")
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/
H A DAutoFocusHelper.java79 boolean missing = result.get(CaptureResult.CONTROL_AF_STATE) == null; in checkControlAfState()
80 if (missing) { in checkControlAfState()
84 return !missing; in checkControlAfState()
92 boolean missing = result.get(CaptureResult.LENS_STATE) == null; in checkLensState()
93 if (missing) { in checkLensState()
97 return !missing; in checkLensState()
/aosp12/packages/apps/Car/Settings/src/com/android/car/settings/network/
H A DSubscriptionUtils.java49 List<UiccSlotInfo> missing = new ArrayList<>(); in getAvailableSubscriptions() local
61 missing.add(slotInfo); in getAvailableSubscriptions()
65 if (!missing.isEmpty()) { in getAvailableSubscriptions()
67 for (UiccSlotInfo slotInfo : missing) { in getAvailableSubscriptions()
/aosp12/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDependencyFinder.java82 Map<String, Set<String>> missing = findMissingClasses(deps, zipClasses.keySet()); in findDeps() local
86 result.add(missing); in findDeps()
96 Map<String, Set<String>> missing = result.get(1); in printAllDeps() local
120 mLog.info("------ %d Entries missing from source JARs", missing.size()); in printAllDeps()
123 for (Entry<String, Set<String>> entry : missing.entrySet()) { in printAllDeps()
139 Map<String, Set<String>> missing = result.get(1); in printMissingDeps() local
141 for (String fqcn : missing.keySet()) { in printMissingDeps()
242 Map<String, Set<String>> missing = new TreeMap<>(); in findMissingClasses() local
250 Set<String> set = missing.get(dep); in findMissingClasses()
253 missing.put(dep, set); in findMissingClasses()
[all …]
/aosp12/packages/apps/UniversalMediaPlayer/java/com/android/pump/fragment/
H A DPermissionFragment.java98 Collection<String> missing = new HashSet<>(); in requestMissingRequiredPermissions() local
104 missing.add(permission); in requestMissingRequiredPermissions()
109 if (!missing.isEmpty()) { in requestMissingRequiredPermissions()
110 requestPermissions(missing.toArray(new String[0]), REQUEST_REQUIRED_PERMISSIONS); in requestMissingRequiredPermissions()
/aosp12/packages/modules/NeuralNetworks/tools/systrace_parser/parser/test/
H A Domr1.txt15 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
30 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
45 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
60 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
75 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
H A Dunittest.txt15 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
31 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
/aosp12/packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
H A DSidebarBot.java110 List<String> missing = new ArrayList<>(); in assertRootsPresent() local
113 missing.add(label); in assertRootsPresent()
116 if (!missing.isEmpty()) { in assertRootsPresent()
118 "Expected roots " + Arrays.asList(labels) + ", but missing " + missing); in assertRootsPresent()
/aosp12/packages/modules/Wifi/framework/tests/assets/pps/
H A DREADME.txt4 PerProviderSubscription_MissingValue.xml - FriendlyName node is missing Value
5 PerProviderSubscription_MissingName.xml - HomeSP node is missing NodeName
/aosp12/art/test/922-properties/src/art/
H A DTest922.java40 Set<String> missing = new TreeSet<String>(recommendedProperties); in doTest() local
41 missing.removeAll(retained); in doTest()
42 System.out.println("Missing recommended properties: " + missing); in doTest()
/aosp12/frameworks/compile/slang/
H A DAndroid.bp126 // Skip missing-field-initializer warnings for mingw.
127 cflags: ["-Wno-error=missing-field-initializers"],
213 // Skip missing-field-initializer warnings for mingw.
214 "-Wno-error=missing-field-initializers",
/aosp12/system/extras/alloc-stress/
H A DAndroid.bp32 "-Wno-missing-field-initializers",
44 "-Wno-missing-field-initializers",
/aosp12/hardware/qcom/gps/msm8998/utils/
H A DAndroid.mk38 -Wno-missing-braces \
39 -Wno-missing-field-initializers \
/aosp12/system/tools/aidl/build/
H A Daidl_test.go196 missing := []string{}
200 missing = append(missing, name)
203 if len(missing) > 0 {
209 …t.Errorf("expected modules(%v) not found. all modules: %v", missing, android.SortedStringKeys(allM…
245 …zen\) when "unstable" is false, PLATFORM_VERSION_CODENAME is REL, and "owner" property is missing.`
318 …zen\) when "unstable" is false, PLATFORM_VERSION_CODENAME is REL, and "owner" property is missing.`
/aosp12/packages/services/BuiltInPrintService/jni/
H A DAndroid.bp31 "-Wno-missing-field-initializers",
34 "-Wno-missing-braces",
/aosp12/frameworks/base/libs/incident/
H A DAndroid.bp31 "-Wno-missing-field-initializers",
77 "-Wno-missing-field-initializers",
/aosp12/system/tools/hidl/test/error_test/interface_semicolon/1.0/
H A Drequired_error1 missing ; at
/aosp12/system/tools/hidl/test/error_test/method_ends_in_semicolon/1.0/
H A Drequired_error1 missing ; at
/aosp12/system/tools/hidl/test/error_test/references_broken_package/1.0/
H A Drequired_error1 missing ; at
/aosp12/system/tools/hidl/test/error_test/missing_variable_type/1.0/
H A Drequired_error1 is missing a variable name
/aosp12/art/test/124-missing-classes/
H A Dinfo.txt1 Tests the effects of missing classes.
/aosp12/hardware/qcom/sm7250/display/sde-drm/
H A DMakefile.am1 AM_CFLAGS = -Wno-missing-field-initializers -Wconversion \
/aosp12/frameworks/compile/slang/tests/F_no_version_pragma/
H A Dstderr.txt.expect1 no_version_pragma.rscript:2:1: error: missing pragma for version in source file
/aosp12/art/test/173-missing-field-type/
H A Dinfo.txt1 Tests handling of fields where the field type is missing (b/79751666).

12345678910