HomeSort by relevance Sort by last modified time
    Searched full:disallowed (Results 1 - 25 of 618) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/
notinheap2.go 31 y = new(nih) // ERROR "heap allocation disallowed"
32 z = make([]nih, 1) // ERROR "heap allocation disallowed"
33 z = append(z, x) // ERROR "heap allocation disallowed"
convert3.go 7 // Verify allowed and disallowed conversions.
  /prebuilts/go/linux-x86/test/
notinheap2.go 31 y = new(nih) // ERROR "heap allocation disallowed"
32 z = make([]nih, 1) // ERROR "heap allocation disallowed"
33 z = append(z, x) // ERROR "heap allocation disallowed"
convert3.go 7 // Verify allowed and disallowed conversions.
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataConnectionReasons.java 31 // Adding a disallowed reason will clean up the allowed reason because they are
38 // Adding an allowed reason will clean up the disallowed reasons because they are
53 reasonStr.append("Data disallowed, reasons:");
78 * Check if only one disallowed reason prevent data connection.
100 // Disallowed reasons. There could be multiple reasons if data connection is not allowed.
133 // Note that unlike disallowed reasons, we only have one allowed reason every time
  /system/netd/libnetdutils/include/netdutils/
Handle.h 42 // foo(th1, p); <- disallowed!
43 // th1 += 10; <- disallowed!
44 // p = th2; <- disallowed!
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
err-4.s 4 ! Check that we can't have different ISA:s in the same section if disallowed.
  /external/clang/test/SemaObjC/
arc-type-conversion.m 10 (void)(int*)arg; // expected-error {{cast of an Objective-C pointer to 'int *' is disallowed with ARC}}
12 (void)(__autoreleasing id*)arg; // expected-error {{cast of an Objective-C pointer to '__autoreleasing id *' is disallowed with ARC}}
13 (void)(id*)arg; // expected-error {{cast of an Objective-C pointer to '__strong id *' is disallowed with ARC}}
17 (void)(void**)arg; // expected-error {{cast of an Objective-C pointer to 'void **' is disallowed with ARC}}
58 sip = vp; // expected-error{{implicit conversion of a non-Objective-C pointer type 'void *' to '__strong id *' is disallowed with ARC}}
59 wip = vp; // expected-error{{implicit conversion of a non-Objective-C pointer type 'void *' to '__weak id *' is disallowed with ARC}}
60 aip = vp; // expected-error{{implicit conversion of a non-Objective-C pointer type 'void *' to '__autoreleasing id *' is disallowed with ARC}}
61 uip = vp; // expected-error{{implicit conversion of a non-Objective-C pointer type 'void *' to '__unsafe_unretained id *' is disallowed with ARC}}
illegal-nonarc-bridged-cast.m 38 #pragma clang diagnostic ignored "-Warc-bridge-casts-disallowed-in-nonarc"
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/userrestrictions/
PrimaryProfileOwnerUserRestrictionsTest.java 27 return DeviceOwnerUserRestrictionsTest.DISALLOWED;
DeviceOwnerUserRestrictionsTest.java 61 public static final String[] DISALLOWED = new String[] {
76 return DISALLOWED;
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
MyVpnService.java 101 String disallowed = intent.getStringExtra(packageName + ".disallowedapplications"); local
102 if (disallowed != null) {
103 String[] packageArray = disallowed.split(",");
124 + " disallowedApplications=" + disallowed);
  /packages/apps/ManagedProvisioning/res/values/
vendor_required_apps_managed_device.xml 21 Takes precedence over the disallowed apps lists. -->
vendor_required_apps_managed_profile.xml 21 Takes precedence over the disallowed apps lists. -->
vendor_required_apps_managed_user.xml 21 Takes precedence over the disallowed apps lists. -->
  /external/clang/test/SemaOpenCL/
invalid-block.cl 16 extern int (^bl)() = ^(){return 1;}; // expected-error{{invalid block variable declaration - using 'extern' storage class is disallowed}}
18 extern int (^bl)() = ^(){return 1;}; // expected-error{{invalid block variable declaration - using 'extern' storage class is disallowed}}
47 // A block pointer type and all pointer operations are disallowed
  /external/clang/test/Misc/
diag-verify.cpp 21 x = y; // expected-error{{use of undeclared identifier 'y' is disallowed}}
33 //CHECK: Line 21: use of undeclared identifier 'y' is disallowed
  /external/libmojo/mojo/public/cpp/bindings/
map_traits_wtf.h 42 LOG(ERROR) << "The key value is disallowed by WTF::HashMap: " << key;
50 LOG(ERROR) << "The key value is disallowed by WTF::HashMap: " << key;
map_traits_wtf_hash_map.h 51 LOG(ERROR) << "The key value is disallowed by WTF::HashMap: " << key;
59 LOG(ERROR) << "The key value is disallowed by WTF::HashMap: " << key;
  /frameworks/compile/libbcc/lib/
RSScreenFunctionsPass.cpp 31 // module and check if any disallowed external function is accessible
84 ALOGE("Call to function %s from RenderScript is disallowed\n",
  /cts/hostsidetests/devicepolicy/app/AccountCheck/Tester/
README.txt 1 This package helps creating accounts with DPM.ACCOUNT_FEATURE_DEVICE_OR_PROFILE_OWNER_ALLOWED / DISALLOWED.
  /cts/tests/tests/networksecurityconfig/networksecurityconfig-cleartext/src/android/security/net/config/cts/
CleartextPermittedTest.java 33 // subdomains of android.com are also disallowed.
  /external/bison/djgpp/
testsuite.sed 21 # Remove disallowed characters from file names.
  /external/libchrome/base/
base64url.h 48 // The |policy| defines whether padding will be required, ignored or disallowed
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.cons/
convert_float_to_int.fail.cpp 17 // conversions from floating point to integral durations disallowed

Completed in 5871 milliseconds

1 2 3 4 5 6 7 8 91011>>