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

123

/external/ppp/pppd/
H A Decp.h35 bool required; /* Is ECP required? */ member in struct:ecp_options
/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::__anon8619
/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/webkit/Source/WebCore/svg/
H A DSVGTransformable.cpp36 static int parseTransformParamList(const UChar*& ptr, const UChar* end, float* values, int required, int optional) argument
47 while (requiredParams < required) {
51 if (requiredParams < required)
/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/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/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...]
H A DXSLTAttributeDef.java12 * Unless required by applicable law or agreed to in writing, software
63 * @param required true if this is attribute is required by the XSLT specification.
67 XSLTAttributeDef(String namespace, String name, int type, boolean required, boolean supportsAVT, int errorType) argument
72 this.m_required = required;
108 * @param required true if this attribute is required by the XSLT specification.
117 XSLTAttributeDef(String namespace, String name, boolean required, boolean supportsAVT, argument
124 this.m_required = required;
139 * @param required tru
150 XSLTAttributeDef(String namespace, String name, boolean required, boolean supportsAVT, boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2, String k3, int v3) argument
185 XSLTAttributeDef(String namespace, String name, boolean required, boolean supportsAVT, boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2, String k3, int v3, String k4, int v4) 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/clang/lib/CodeGen/
H A DCGCall.h104 /// The number of required arguments, or ~0 if the signature does
115 /// Compute the arguments required by the given formal prototype,
202 RequiredArgs required);
270 RequiredArgs required,
278 ID.AddInteger(required.getOpaqueData());
268 Profile(llvm::FoldingSetNodeID &ID, const FunctionType::ExtInfo &info, RequiredArgs required, CanQualType resultType, ArrayRef<CanQualType> argTypes) argument
H A DCGCall.cpp89 RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, prefix.size()); local
94 return CGT.arrangeLLVMFunctionInfo(resultType, prefix, extInfo, required);
202 RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, argTypes.size()); local
210 return arrangeLLVMFunctionInfo(resultType, argTypes, extInfo, required);
295 RequiredArgs required = local
299 einfo, required);
323 RequiredArgs required = RequiredArgs::All; local
326 required = RequiredArgs(proto->getNumArgs());
329 required = RequiredArgs(0);
333 fnType->getExtInfo(), required);
337 arrangeFreeFunctionCall(QualType resultType, const CallArgList &args, FunctionType::ExtInfo info, RequiredArgs required) argument
352 arrangeCXXMethodCall(const CallArgList &args, const FunctionProtoType *FPT, RequiredArgs required) argument
378 RequiredArgs required = local
393 arrangeLLVMFunctionInfo(CanQualType resultType, ArrayRef<CanQualType> argTypes, FunctionType::ExtInfo info, RequiredArgs required) argument
442 create(unsigned llvmCC, const FunctionType::ExtInfo &info, CanQualType resultType, ArrayRef<CanQualType> argTypes, RequiredArgs required) argument
[all...]
H A DCGExprCXX.cpp54 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size()); local
59 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
360 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, 1); local
364 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required), Callee,
466 // The temporary check is required because Sema sets this on NRVO
539 // No cookie is required if the operator new[] being used is the
/external/kernel-headers/original/linux/
H A Dqic117.h108 discretional = 0, required, ccs1, ccs2 enumerator in enum:__anon7701
129 /* 1*/ {"soft reset", 0x00, 0x00, motion, 1, required},\
130 /* 2*/ {"report next bit", 0x00, 0x00, report, 0, required},\
131 /* 3*/ {"pause", 0x36, 0x24, motion, 1, required},\
132 /* 4*/ {"micro step pause", 0x36, 0x24, motion, 1, required},\
133 /* 5*/ {"alternate command timeout", 0x00, 0x00, mode, 0, required},\
134 /* 6*/ {"report drive status", 0x00, 0x00, report, 0, required},\
135 /* 7*/ {"report error code", 0x01, 0x01, report, 0, required},\
136 /* 8*/ {"report drive configuration",0x00, 0x00, report, 0, required},\
137 /* 9*/ {"report rom version", 0x00, 0x00, report, 0, required},\
[all...]
/external/quake/quake/src/WinQuake/
H A Dsnd_android.cpp106 SLboolean required[MAX_NUMBER_INTERFACES]; variable
128 /* Initialize arrays required[] and iidArray[] */
131 required[i] = SL_BOOLEAN_FALSE;
135 // Set arrays required[] and iidArray[] for VOLUME interface
136 required[0] = SL_BOOLEAN_TRUE;
140 iidArray, required); CheckErr(res);
181 /* Set arrays required[] and iidArray[] for SEEK interface
183 required[0] = SL_BOOLEAN_TRUE;
188 &audioSource, &audioSink, 1, iidArray, required); CheckErr(res);
351 how many sample are required t
[all...]
/external/svox/pico/lib/
H A Dpicorsrc.c10 * Unless required by applicable law or agreed to in writing, software
933 picoos_uint8 i, required; local
960 required = (NULLC != vdef->resourceName[i][0]);
961 if (required && !isResourceLoaded(this,vdef->resourceName[i])) {
982 required = (NULLC != vdef->resourceName[i][0]);
983 if (required) {
/external/webkit/Source/WebCore/html/
H A DHTMLFormControlElement.cpp116 setNeedsStyleRecalc(); // Updates for :required :optional classes.
254 bool HTMLFormControlElement::required() const function in class:WebCore::HTMLFormControlElement
/external/chromium/base/
H A Dtracked_objects.cc903 void Comparator::SetTiebreaker(Selector selector, const std::string& required) { argument
909 if (required.size())
910 required_ = required;
923 tiebreaker_->SetTiebreaker(selector, required);
949 // can specify a required match from the specified field in the record.
962 std::string required; local
967 required = key_phrase.substr(equal_offset + 1, key_phrase.npos);
977 SetTiebreaker(key_map[keyword], required);
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dmediasessionclient.cc164 return NULL; // Abort, crypto required but none found.
197 return NULL; // Abort, crypto required but none found.
804 bool required) {
807 if (required) {
829 bool required) {
831 CreateJingleEncryptionElem(cryptos, required);
833 if (required) {
803 CreateJingleEncryptionElem(const CryptoParamsVec& cryptos, bool required) argument
827 CreateGingleEncryptionElem(const CryptoParamsVec& cryptos, const buzz::QName& usage_qname, bool required) argument
/external/chromium/net/disk_cache/
H A Dentry_impl.cc130 bool GrowBuffer(int required, int limit);
157 int required = offset - offset_ + len; local
158 return GrowBuffer(required, kMaxBufferSize * 6 / 5);
266 bool EntryImpl::UserBuffer::GrowBuffer(int required, int limit) { argument
267 DCHECK_GE(required, 0);
269 if (required <= current_size)
272 if (required > limit)
278 int to_add = std::max(required - current_size, kMaxBlockSize * 4);
280 required = std::min(current_size + to_add, limit);
282 grow_allowed_ = backend_->IsAllocAllowed(current_size, required);
[all...]
/external/emma/core/java12/com/vladium/util/args/
H A DOptsParser.java101 if (optdef.isRequired ()) line.append ("{required} ");
335 // validation: all required parameters must be specified
337 final Set /* String(canonical name) */ required = new HashSet ();
338 required.addAll (m_metadata.getRequiredOpts ());
342 required.remove (specified [s].getCanonicalName ());
345 if (! required.isEmpty ())
347 for (Iterator i = required.iterator (); i.hasNext (); )
349 opts.addError (formatMessage ("missing required option \'" + (String) i.next () + "\'"));
842 void setRequired (final boolean required) argument
844 m_required = required;
[all...]
/external/libsepol/include/sepol/policydb/
H A Dpolicydb.h401 scope_index_t required; /* symbols needed to activate this block */ member in struct:avrule_decl
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Djavax.servlet.jsp_2.0.0.v200806031607.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE.SF META-INF/ECLIPSE.RSA META ...

Completed in 614 milliseconds

123