Searched defs:allow (Results 1 - 25 of 43) sorted by relevance

12

/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DAllowParser.java45 * @param allow the header to parse
47 public AllowParser(String allow) { argument
48 super(allow);
73 Allow allow = new Allow();
74 allow.setHeaderName(SIPHeaderNames.ALLOW);
79 allow.setMethod(token.getTokenValue());
81 list.add(allow);
87 allow = new Allow();
90 allow.setMethod(token.getTokenValue());
92 list.add(allow);
[all...]
/external/skia/src/pathops/
H A DSkConicLineIntersection.cpp18 i->setMax(3); // allow short partial coincidence plus discrete intersection
21 void allowNear(bool allow) { argument
22 fAllowNear = allow;
H A DSkDConicLineIntersection.cpp23 i->setMax(3); // allow short partial coincidence plus discrete intersection
33 void allowNear(bool allow) { argument
34 fAllowNear = allow;
H A DSkDCubicLineIntersection.cpp92 void allowNear(bool allow) { argument
93 fAllowNear = allow;
H A DSkDQuadLineIntersection.cpp101 i->setMax(3); // allow short partial coincidence plus discrete intersection
111 void allowNear(bool allow) { argument
112 fAllowNear = allow;
/external/lldb/test/expression_command/issue_11588/
H A DTest11588.py45 self.runCmd("command script import --allow-reload s11588.py") namespace
/external/lldb/test/functionalities/command_script/import/rdar-12586188/
H A DTestRdar12586188.py24 self.expect("command script import ./fail12586188.py --allow-reload", namespace
26 self.expect("command script import ./fail212586188.py --allow-reload", namespace
/external/lldb/test/functionalities/breakpoint/breakpoint_command/
H A DTestBreakpointCommand.py86 self.runCmd("command script import --allow-reload ./bktptcmd.py") namespace
/external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/
H A DTestDataFormatterPythonSynth.py230 self.runCmd("command script import ./ftsp.py --allow-reload") namespace
/external/lldb/test/python_api/formatters/
H A DTestFormattersSBAPI.py156 self.runCmd("command script import --allow-reload ./jas_synth.py") namespace
/external/apache-http/src/org/apache/http/client/params/
H A DClientParamBean.java74 public void setAllowCircularRedirects (final boolean allow) { argument
75 params.setBooleanParameter(ClientPNames.ALLOW_CIRCULAR_REDIRECTS, allow);
/external/lldb/test/functionalities/command_script/import/
H A DTestImport.py39 self.runCmd("command script import ./foo/foo.py --allow-reload") namespace
40 self.runCmd("command script import ./foo/foo2.py --allow-reload") namespace
41 self.runCmd("command script import ./foo/bar/foobar.py --allow-reload") namespace
42 self.runCmd("command script import ./bar/bar.py --allow-reload") namespace
50 self.runCmd("command script import --allow-reload ./thepackage") namespace
56 self.expect("command script import --allow-reload ./dummymodule.py", error=False) namespace
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSortedSetRelation.java66 * @param allow filter, using ANY, CONTAINS, etc.
70 public static <T extends Object & Comparable<? super T>> boolean hasRelation(SortedSet<T> a, int allow, SortedSet<T> b) { argument
71 if (allow < NONE || allow > ANY) {
72 throw new IllegalArgumentException("Relation " + allow + " out of range");
78 boolean anb = (allow & A_NOT_B) != 0;
79 boolean ab = (allow & A_AND_B) != 0;
80 boolean bna = (allow & B_NOT_A) != 0;
83 switch(allow) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DPeriodBuilderFactory.java57 PeriodBuilderFactory setAllowZero(boolean allow); argument
68 * when milliseconds are an available field. The default is to allow
74 * @param allow whether milliseconds should be allowed.
77 PeriodBuilderFactory setAllowMilliseconds(boolean allow); argument
H A DBasicPeriodBuilderFactory.java119 Settings setAllowZero(boolean allow) { argument
120 if (this.allowZero == allow) {
124 result.allowZero = allow;
229 public PeriodBuilderFactory setAllowZero(boolean allow) { argument
230 settings = settings.setAllowZero(allow);
239 public PeriodBuilderFactory setAllowMilliseconds(boolean allow) { argument
240 settings = settings.setAllowMilliseconds(allow);
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer.h214 // Set true to allow floats to be suffixed with the letter 'f'. Tokens
238 // Whether to allow string literals to span multiple lines. Default is false.
240 void set_allow_multiline_strings(bool allow) { argument
241 allow_multiline_strings_ = allow;
/external/robolectric/src/main/java/android/webkit/
H A DTestWebSettings.java43 public void setAllowFileAccessFromFileURLs(boolean allow) { argument
44 allowFileAccessFromFile = allow;
48 public void setAllowUniversalAccessFromFileURLs(boolean allow) { argument
49 allowUniversalAccessFromFile = allow;
58 public void setAllowFileAccess(boolean allow) { argument
59 allowFileAccess = allow;
/external/v8/src/
H A Dassert-scope.h44 void set(PerThreadAssertType type, bool allow) { argument
45 assert_states_[type] = allow;
99 template <PerThreadAssertType type, bool allow>
104 data_->set(type, allow);
128 template <PerIsolateAssertType type, bool allow>
134 SetData(isolate_, DataBit::update(old_data_, allow));
155 template <PerThreadAssertType type, bool allow>
158 PerThreadAssertScope<type, allow> {
167 template <PerIsolateAssertType type, bool allow>
170 PerIsolateAssertScope<type, allow> {
[all...]
/external/linux-tools-perf/src/tools/lib/traceevent/
H A DMakefile17 define allow-override
24 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
25 $(call allow-override,AR,$(CROSS_COMPILE)ar)
/external/protobuf/src/google/protobuf/
H A Dtext_format.h398 void AllowPartialMessage(bool allow) { argument
399 allow_partial_ = allow;
406 void AllowCaseInsensitiveField(bool allow) { argument
407 allow_case_insensitive_field_ = allow;
416 void AllowFieldNumber(bool allow) { argument
417 allow_field_number_ = allow;
/external/selinux/policycoreutils/sepolicy/
H A Dsearch.c86 bool allow; member in struct:options
656 if (!opt->all && !opt->allow && !opt->nallow && !opt->auditallow && !opt->dontaudit) {
668 if (opt->allow || opt->all)
882 PyObject* search(bool allow, argument
901 cmd_opts.allow = allow;
1012 int allow = Dict_ContainsInt(dict, "allow"); variable
1028 return search(allow, neverallow, auditallow, dontaudit, transition, role_allow, src_name, tgt_name, class_name, permlist);
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
H A Dresponse.py512 allow = list_header('Allow', '14.7') variable in class:Response
/external/libpng/contrib/libtests/
H A Dtarith.c190 double allow = .5/pow(10, local
200 if (change >= allow && (isfinite(out) ||
201 fabs(test/DBL_MAX) <= 1-allow))
204 double allowp = (change-allow)*100/allow;
220 DBL_DIG, test, precision, buffer, DBL_DIG, out, change, allow,
458 * is valid at this point set the at_start to false to allow an exponent
/external/robolectric/src/main/java/android/net/
H A DUri__FromAndroid.java1674 * allow argument.
1677 * @param allow set of additional characters to allow in the encoded form,
1682 public static String encode(String s, String allow) { argument
1702 && isAllowed(s.charAt(nextToEncode), allow)) {
1735 && !isAllowed(s.charAt(nextAllowed), allow)) {
1765 * @param allow characters to allow
1769 private static boolean isAllowed(char c, String allow) { argument
1774 || (allow !
[all...]
/external/skia/include/core/
H A DSkCanvas.h474 void setAllowSoftClip(bool allow) { argument
475 fAllowSoftClip = allow;
481 void setAllowSimplifyClip(bool allow) { argument
482 fAllowSimplifyClip = allow;
813 * When filtering is enabled, allow the color samples outside of

Completed in 1035 milliseconds

12