Searched defs:required (Results 1 - 25 of 79) sorted by relevance

1234

/external/ppp/pppd/
H A Decp.h35 bool required; /* Is ECP required? */ member in struct:ecp_options
/external/chromium_org/chrome/browser/extensions/
H A Dstandard_management_policy_provider_unittest.cc32 bool required) {
53 // extension required by policy.
71 // extension required by policy.
31 CreateExtension(Manifest::Location location, bool required) argument
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DDateTimeChooser.h55 bool required; member in struct:WebCore::DateTimeChooserParameters
/external/libppp/src/
H A Dcbcp.h47 unsigned required : 1; /* Are we gonna call back ? */ member in struct:cbcp
H A Dccp.h78 unsigned required : 1; member in struct:ccp_config::__anon20404
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A Dgenerate-inspector-protocol-version69 def required(reverse): function
72 return "required"
133 errors.append("%s.%s: required %s has been %s" % (context, name, kind, removed(reverse)))
138 errors.append("%s.%s: %s %s is now %s" % (context, name, required(reverse), kind, required(not reverse)))
355 "Network.setExtraHTTPHeaders.addedRequired: required parameter has been added",
356 "Network.setExtraHTTPHeaders.becameRequired: optional parameter is now required",
357 "Network.setExtraHTTPHeaders.removedRequired: required response parameter has been removed",
358 "Network.setExtraHTTPHeaders.becameOptional: required response parameter is now optional",
359 "Network.requestWillBeSent.removedRequired: required paramete
[all...]
/external/apache-http/src/org/apache/http/util/
H A DCharArrayBuffer.java17 * Unless required by applicable law or agreed to in writing,
184 public void ensureCapacity(int required) { argument
186 if (required > available) {
187 expand(this.len + required);
/external/chromium_org/chrome/browser/extensions/api/permissions/
H A Dpermissions_api.cc34 "You cannot remove required permissions.";
101 // Make sure we don't remove any required pemissions.
102 const PermissionSet* required = local
105 PermissionSet::CreateIntersection(permissions.get(), required));
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTransformable.cpp33 static int parseTransformParamList(const CharType*& ptr, const CharType* end, float* values, int required, int optional) argument
44 while (requiredParams < required) {
48 if (requiredParams < required)
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
H A Dvmw_screen_dri.c64 const struct dri1_api_version *required,
68 if (cur->major > required->major && cur->major <= compat->major)
70 if (cur->major == required->major && cur->minor >= required->minor)
79 cur->patch_level, required->major, required->minor, compat->major);
63 vmw_dri1_check_version(const struct dri1_api_version *cur, const struct dri1_api_version *required, const struct dri1_api_version *compat, const char component[]) argument
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen_dri.c64 const struct dri1_api_version *required,
68 if (cur->major > required->major && cur->major <= compat->major)
70 if (cur->major == required->major && cur->minor >= required->minor)
79 cur->patch_level, required->major, required->minor, compat->major);
63 vmw_dri1_check_version(const struct dri1_api_version *cur, const struct dri1_api_version *required, const struct dri1_api_version *compat, const char component[]) argument
/external/zlib/src/contrib/iostream/
H A Dzfstream.cpp237 int required; local
242 required = blen();
244 int t = gzread( file, p, required );
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
H A Dopenid.php31 * To use them, specify $openid->required and/or $openid->optional.
34 * $openid->required = array('namePerson/friendly', 'contact/email');
50 , $required = array()
73 throw new ErrorException('Curl extension is required.');
312 if ($this->required) {
313 $params['openid.sreg.required'] = array();
314 foreach ($this->required as $required) {
315 if (!isset(self::$ax_to_sreg[$required])) continue;
316 $params['openid.sreg.required'][]
339 $required = array(); variable
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
H A Dopenid.php31 * To use them, specify $openid->required and/or $openid->optional.
34 * $openid->required = array('namePerson/friendly', 'contact/email');
50 , $required = array()
73 throw new ErrorException('Curl extension is required.');
312 if ($this->required) {
313 $params['openid.sreg.required'] = array();
314 foreach ($this->required as $required) {
315 if (!isset(self::$ax_to_sreg[$required])) continue;
316 $params['openid.sreg.required'][]
339 $required = array(); variable
[all...]
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_cocoa.h84 @property(nonatomic, readonly) NSNumber* required; variable
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DBufferUtils.java78 // supports the threading semantics required with little extra overhead.
717 * required number of double to store.
780 * required number of floats to store.
842 * required number of ints to store.
905 * required number of ints to store.
983 * required number of shorts to store.
1053 * Ensures there is at least the <code>required</code> number of entries left after the current position of the
1056 * @param required minimum number of elements that should be remaining in the returned buffer
1057 * @return a buffer large enough to receive at least the <code>required</code> number of entries, same position as
1060 public static FloatBuffer ensureLargeEnough(FloatBuffer buffer, int required) { argument
1074 ensureLargeEnough(ShortBuffer buffer, int required) argument
1088 ensureLargeEnough(ByteBuffer buffer, int required) argument
[all...]
/external/libmtp/examples/
H A Dsendtr.c64 static char *prompt (const char *prompt, char *buffer, size_t bufsz, int required) argument
88 if (! required) return bp;
/external/smack/src/org/jivesoftware/smackx/
H A DFormField.java14 * Unless required by applicable law or agreed to in writing, software
51 private boolean required = false; field in class:FormField
117 return required;
193 * @param required if the question must be answered in order to complete the questionnaire.
195 public void setRequired(boolean required) { argument
196 this.required = required;
288 buf.append("<required/>");
/external/smack/src/org/xbill/DNS/
H A DLOCRecord.java135 parseDouble(Tokenizer st, String type, boolean required, long min, long max, argument
141 if (required)
H A DTokenizer.java580 * @param required If true, an exception will be thrown if no strings remain;
588 getBase64(boolean required) throws IOException { argument
591 if (required)
618 * @param required If true, an exception will be thrown if no strings remain;
626 getHex(boolean required) throws IOException { argument
629 if (required)
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementDef.java12 * Unless required by applicable law or agreed to in writing, software
82 * @param has_required true if this element has required elements by the XSLT specification.
113 * @param has_required true if this element has required elements by the XSLT specification.
114 * @param required true if this element is required by the XSLT specification.
119 boolean has_required, boolean required)
124 this.m_required = required;
137 * @param has_required true if this element has required elements by the XSLT specification.
138 * @param required true if this element is required b
116 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, boolean has_required, boolean required) argument
142 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, boolean has_required, boolean required, int order, boolean multiAllowed) argument
171 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, boolean has_required, boolean required, boolean has_order, int order, boolean multiAllowed) argument
[all...]
/external/chromium/chrome/browser/sync/
H A Dsync_setup_wizard_unittest.cc81 void set_passphrase_required(bool required) { argument
82 observed_passphrase_required_ = required;
/external/chromium_org/content/common/gpu/
H A Dgpu_memory_manager_unittest.cc238 uint64 required,
241 GpuManagedMemoryStats(required, nicetohave, 0, false));
236 SetClientStats( FakeClient* client, uint64 required, uint64 nicetohave) argument
/external/chromium_org/sandbox/win/src/
H A Dinterception.cc166 // a new FunctionInfo is required per function
244 size_t required = offsetof(DllPatchInfo, dll_name) + local
246 required = RoundUpToMultiple(required, sizeof(size_t));
247 if (*buffer_bytes < required)
250 *buffer_bytes -= required;
251 *buffer = reinterpret_cast<char*>(*buffer) + required;
255 dll_info->record_bytes = required;
256 dll_info->offset_to_functions = required;
284 size_t required local
[all...]
/external/smack/src/org/jivesoftware/smack/
H A DXMPPConnection.java14 * Unless required by applicable law or agreed to in writing, software
141 * in most cases, provided the client is not required to provide a certificate to
157 * in most cases, provided the client is not required to provide a certificate to
775 * @param required true when the server indicates that TLS is required.
777 void startTLSReceived(boolean required) { argument
778 if (required && config.getSecurityMode() ==
781 "TLS required by server but not allowed by connection configuration"));

Completed in 1506 milliseconds

1234