HomeSort by relevance Sort by last modified time
    Searched full:allowed (Results 276 - 300 of 9846) sorted by null

<<11121314151617181920>>

  /system/sepolicy/
ioctl_macros 1 # socket ioctls allowed to unprivileged apps
14 # socket ioctls never allowed to unprivileged apps
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
MaxEvaluationsExceededException.java 26 * Error thrown when a numerical computation exceeds its allowed
37 /** Maximal number of evaluations allowed. */
42 * @param maxEvaluations maximal number of evaluations allowed
77 /** Get the maximal number of evaluations allowed.
78 * @return maximal number of evaluations allowed
MaxIterationsExceededException.java 26 * Error thrown when a numerical computation exceeds its allowed
37 /** Maximal number of iterations allowed. */
42 * @param maxIterations maximal number of iterations allowed
77 /** Get the maximal number of iterations allowed.
78 * @return maximal number of iterations allowed
  /external/clang/test/Sema/
i-c-e.c 63 char pbcp[__builtin_constant_p(4) ? (intptr_t)&expr : 0]; // expected-error {{variable length array declaration not allowed at file scope}}
66 int illegaldiv1b[1 && 1/0]; //expected-error{{variable length array declaration not allowed at file scope}}
68 int illegaldiv2[1/0]; // expected-error {{variable length array declaration not allowed at file scope}}
69 int illegaldiv3[INT_MIN / -1]; // expected-error {{variable length array declaration not allowed at file scope}}
71 int illegaldiv4[0 / (1 / 0)]; // expected-error {{variable length array declaration not allowed at file scope}}
vla.c 30 int c[][i]; // expected-error {{variably modified type declaration not allowed at file scope}}
31 int d[i]; // expected-error {{variable length array declaration not allowed at file scope}}
33 int (*e)[i]; // expected-error {{variably modified type declaration not allowed at file scope}}
  /external/deqp/executor/
xeCommLink.hpp 35 COMMLINKSTATE_TEST_PROCESS_LAUNCHING, //!< Test process is launching. Allowed commands: stop process
36 COMMLINKSTATE_TEST_PROCESS_RUNNING, //!< Test process is running: Allowed commands: stop process
37 COMMLINKSTATE_TEST_PROCESS_FINISHED, //!< Test process is finished. Allowed commands: reset
39 COMMLINKSTATE_TEST_PROCESS_LAUNCH_FAILED, //!< Test process launch failed. Allowed commands: reset
40 COMMLINKSTATE_ERROR, //!< Other error occurred: Allowed commands: reset
  /external/selinux/libselinux/src/
compute_av.c 54 &avd->allowed, &avd->decided,
89 avd->allowed = lavd.allowed;
143 avd->allowed = lavd.allowed;
  /external/clang/test/SemaCXX/
static-cast.cpp 60 (void)static_cast<void*>((const int*)0); // expected-error {{static_cast from 'const int *' to 'void *' is not allowed}}
63 (void)static_cast<int>((int*)0); // expected-error {{static_cast from 'int *' to 'int' is not allowed}}
64 (void)static_cast<A**>((B**)0); // expected-error {{static_cast from 'B **' to 'A **' is not allowed}}
95 (void)static_cast<E*>((B*)0); // expected-error {{static_cast from 'B *' to 'E *', which are not related by inheritance, is not allowed}}
99 (void)static_cast<E*>((J*)0); // expected-error {{static_cast from 'J *' to 'E *', which are not related by inheritance, is not allowed}}
100 (void)static_cast<I*>((B*)0); // expected-error {{static_cast from 'B *' to 'I *', which are not related by inheritance, is not allowed}}
117 (void)static_cast<Enum>((int*)0); // expected-error {{static_cast from 'int *' to 'Enum' is not allowed}}
129 (void)static_cast<void (*)()>((void*)0); // expected-error {{static_cast from 'void *' to 'void (*)()' is not allowed}}
139 (void)static_cast<int A::*>((int F::*)0); // expected-error {{conversion from pointer to member of class 'F' to pointer to member of class 'A' via virtual base 'B' is not allowed}}
140 (void)static_cast<int I::*>((int J::*)0); // expected-error {{static_cast from 'int J::*' to 'int I::*' is not allowed}}
    [all...]
  /external/dbus/bus/
policy.c 58 /* allow rules default to TRUE (only requested replies allowed)
65 /* allow rules default to TRUE (only requested replies allowed)
384 dbus_bool_t allowed; local
386 allowed = def;
430 allowed = rule->allow;
433 return allowed;
440 dbus_bool_t allowed; local
453 allowed = _dbus_unix_user_is_process_owner (uid);
455 allowed = list_allows_user (allowed,
875 dbus_bool_t allowed; local
1057 dbus_bool_t allowed; local
1250 dbus_bool_t allowed; local
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/cache/super/com/google/common/cache/
CacheBuilderTest.java 59 // even to the same value is not allowed
82 // even to the same value is not allowed
104 // even to the same value is not allowed
129 // even to the same value is not allowed
154 // even to the same value is not allowed
173 // even to the same instance is not allowed
184 // even to the same instance is not allowed
  /external/tpm2/
CommandCodeAttributes.c 104 // This function returns the size of the decrypt size field. This function returns 0 if encryption is not allowed
108 // 0 encryption not allowed
128 // This function returns the size of the decrypt size field. This function returns 0 if decryption is not allowed
132 // 0 encryption not allowed
152 // This function indicates if the command is allowed to have sessions.
157 // TRUE session is allowed with this command
158 // FALSE session is not allowed with this command
  /external/autotest/client/site_tests/security_Minijail_seccomp/
security_Minijail_seccomp.py 53 0, "Allowed system calls failed")
59 0, "Allowed system calls failed")
62 0, "Allowed system calls failed")
  /external/clang/test/Parser/
brackets.cpp 10 // expected-error@-1{{brackets are not allowed here; to declare an array, place the brackets after the name}}
24 // expected-error@-1{{brackets are not allowed here; to declare an array, place the brackets after the name}}
34 // expected-error@-1{{brackets are not allowed here; to declare an array, place the brackets after the name}}
50 // expected-error@-1{{brackets are not allowed here; to declare an array, place the brackets after the name}}
59 // expected-error@-1{{brackets are not allowed here; to declare an array, place the brackets after the name}}
68 // expected-error@-1{{brackets are not allowed here; to declare an array, place the brackets after the name}}
78 // expected-error@-1{{brackets are not allowed here; to declare an array, place the brackets after the name}}
91 // expected-error@-1{{brackets are not allowed here; to declare an array, place the brackets after the name}}
99 // expected-error@-1{{brackets are not allowed here; to declare an array, place the brackets after the name}}
131 // expected-error@-1{{brackets are not allowed here; to declare an array, place the brackets after the name}
    [all...]
  /external/clang/test/SemaObjC/
warn-direct-ivar-access.m 52 x->ivar = 0; // expected-error {{dereferencing a __weak pointer is not allowed}}
53 return y ? y->ivar // expected-error {{dereferencing a __weak pointer is not allowed}}
54 : (*x).ivar; // expected-error {{dereferencing a __weak pointer is not allowed}}
  /external/curl/docs/libcurl/opts/
CURLOPT_TIMEOUT_MS.3 25 CURLOPT_TIMEOUT_MS \- set maximum time the request is allowed to take
39 timeout allowed of one second.
47 Since this puts a hard limit for how long time a request is allowed to take,
  /external/jemalloc/test/unit/
prof_thread_name.c 47 /* NULL input shouldn't be allowed. */
54 /* '\n' shouldn't be allowed. */
61 /* Simultaneous read/write shouldn't be allowed. */
  /external/libxml2/result/schemas/
hexbinary_0_1.err 5 ./test/schemas/hexbinary_1.xml:11: element hex2: Schemas validity error : Element 'hex2': [facet 'maxLength'] The value has a length of '9'; this exceeds the allowed maximum length of '8'.
7 ./test/schemas/hexbinary_1.xml:13: element hex3: Schemas validity error : Element 'hex3': [facet 'length'] The value has a length of '1'; this differs from the allowed length of '2'.
9 ./test/schemas/hexbinary_1.xml:14: element hex3: Schemas validity error : Element 'hex3': [facet 'length'] The value has a length of '3'; this differs from the allowed length of '2'.
  /external/proguard/src/proguard/util/
VariableStringMatcher.java 93 * Returns whether the given character is allowed in the variable string.
97 // Check the allowed characters.
123 // Any remaining character is allowed.
  /external/selinux/policycoreutils/sepolicy/sepolicy/templates/
tmp.py 67 ## Domain allowed access.
86 ## Domain allowed access.
109 ## Domain allowed access.
  /external/selinux/sepolgen/tests/
test_refparser.py 30 ## Domain allowed access.
61 ## Domain allowed access.
88 ## Domain allowed access.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
posix2_lim.h 27 /* The maximum `ibase' and `obase' values allowed by the `bc' utility. */
30 /* The maximum number of elements allowed in an array by the `bc' utility. */
33 /* The maximum `scale' value allowed by the `bc' utility. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
posix2_lim.h 27 /* The maximum `ibase' and `obase' values allowed by the `bc' utility. */
30 /* The maximum number of elements allowed in an array by the `bc' utility. */
33 /* The maximum `scale' value allowed by the `bc' utility. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
posix2_lim.h 27 /* The maximum `ibase' and `obase' values allowed by the `bc' utility. */
30 /* The maximum number of elements allowed in an array by the `bc' utility. */
33 /* The maximum `scale' value allowed by the `bc' utility. */
  /system/connectivity/shill/bin/
test_set_wifi_regulatory 112 # No junk allowed at end.
117 # No junk allowed at beginning.
127 # Random shell meta-characters are not allowed.
  /art/test/069-field-type/src/
Main.java 17 System.out.println("Assignment was allowed");

Completed in 1281 milliseconds

<<11121314151617181920>>