Searched defs:value (Results 1 - 25 of 7729) sorted by last modified time

1234567891011>>

/external/xmlwriter/src/org/jheer/
H A DXMLWriter.java211 * @param value the value of the attribute
213 public void addAttribute(String name, String value) throws IOException { argument
218 escapeString(value);
227 * @param value the value of the attribute
231 protected void tag(String tag, String name, String value, boolean close) throws IOException { argument
239 escapeString(value);
255 * @param value the value o
257 tag(String tag, String name, String value) argument
269 start(String tag, String name, String value) argument
363 contentTag(String tag, String name, String value, String content) argument
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPUtils.java44 * be a simple string value.
76 * be a simple string value.
185 * <li>If <code>deleteEmptyValues</code> is passed then an empty value in the source XMP causes
187 * values the same as non-empty values. An empty value is any of a simple empty string, an array
202 * if deleteEmptyValues and source value is empty:
217 * copy new items by "xml:lang" value into the destination
219 * copy new items by value into the destination, ignoring order and duplicates
227 * <p>Simple items are compared by value and "xml:lang" qualifier, other qualifiers are ignored.
249 * @param value
251 * @return The appropriate boolean value fo
262 convertToBoolean(String value) argument
295 convertFromBoolean(boolean value) argument
342 convertFromInteger(int value) argument
389 convertFromLong(long value) argument
432 convertFromDouble(double value) argument
468 convertFromDate(XMPDateTime value) argument
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DParseRDF.java478 * properties written with rdf:Description and rdf:value.
610 * Add a leaf node with the text value and qualifiers for the attributes.
721 continue; // The caller ensured the value is "Resource".
776 * <ns:Prop1/> <!-- a simple property with an empty value -->
777 * <ns:Prop2 rdf:resource="http: *www.adobe.com/"/> <!-- a URI value -->
778 * <ns:Prop3 rdf:value="..." ns:Qual="..."/> <!-- a simple qualified property -->
783 * simple property with an empty value (ns:Prop1), a simple property whose value is a URI
788 * It is an error to use both rdf:value and rdf:resource - that can lead to invalid RDF in the
794 * <li> If there is an rdf:value attribut
986 addChildNode(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode, String value, boolean isTopLevel) argument
1091 addQualifierNode(XMPNode xmpParent, String name, String value) argument
[all...]
H A DUtils.java48 * Normalize an xml:lang value so that comparisons are effectively case
58 * @param value
59 * raw value
60 * @return Returns the normalized value.
62 public static String normalizeLangValue(String value) argument
65 if (XMPConst.X_DEFAULT.equals(value))
67 return value;
73 for (int i = 0; i < value.length(); i++)
75 switch (value.charAt(i))
90 buffer.append(Character.toLowerCase(value
370 escapeXML(String value, boolean forAttribute, boolean escapeWhitespaces) argument
433 removeControlChars(String value) argument
[all...]
H A DXMPMetaImpl.java532 // old value.
543 // Update all items whose values match the old x-default value.
567 // value.
645 * Returns a property, but the result value can be requested. It can be one
657 * the type of the value, see VALUE_...
675 throw new XMPException("Property must be simple when a value type is requested",
679 final Object value = evaluateNodeValue(valueType, propNode);
685 return value;
703 return value.toString();
715 * Returns a property, but the result value ca
1345 setNode(XMPNode node, Object value, PropertyOptions newOptions, boolean deleteExisting) argument
[all...]
H A DXMPNode.java42 /** value of the node, contains different information depending of the node kind */
43 private String value; field in class:XMPNode
61 /** flag if the node has an "rdf:value" child node. */
70 * @param value the value of the node
73 public XMPNode(String name, String value, PropertyOptions options) argument
76 this.value = value;
82 * Constructor for the node without value.
100 value
532 setValue(String value) argument
[all...]
H A DXMPNodeUtils.java319 * This is setting the value of a leaf node.
322 * @param value a value
324 static void setNodeValue(XMPNode node, Object value) argument
326 String strValue = serializeNodeValue(value);
343 * @param itemValue the node value to set
385 * Converts the node value to String, apply special conversions for defined
388 * @param value
389 * the node value to set
390 * @return Returns the String representation of the node value
392 serializeNodeValue(Object value) argument
[all...]
H A DXMPSerializerRDF.java440 * Recursively handles the "value" for a node that must be written as an RDF
472 * &lt;rdf:value&gt; ... Property &quot;value&quot;
473 * following the unqualified forms ... &lt;/rdf:value&gt;
503 // qualifiers to decide on "normal" versus "rdf:value" form. Emit the attribute
693 // with an empty value.
750 // value is output by a call
835 // The schema node name is the URI, the value is the prefix.
907 * Recursively handles the "value" for a node. It does not matter if it is a
918 * &lt;ns:UnqualifiedSimpleProperty&gt;value
1189 appendNodeValue(String value, boolean forAttribute) argument
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
H A DAliasOptions.java74 * @param value the value to set
77 public AliasOptions setArray(boolean value) argument
79 setOption(PROP_ARRAY, value);
94 * @param value the value to set
97 public AliasOptions setArrayOrdered(boolean value) argument
99 setOption(PROP_ARRAY | PROP_ARRAY_ORDERED, value);
114 * @param value the value t
117 setArrayAlternate(boolean value) argument
137 setArrayAltText(boolean value) argument
[all...]
H A DIteratorOptions.java72 * @param value the value to set
75 public IteratorOptions setJustChildren(boolean value) argument
77 setOption(JUST_CHILDREN, value);
85 * @param value the value to set
88 public IteratorOptions setJustLeafname(boolean value) argument
90 setOption(JUST_LEAFNAME, value);
98 * @param value the value t
101 setJustLeafnodes(boolean value) argument
114 setOmitQualifiers(boolean value) argument
[all...]
H A DOptions.java19 * The base class for a collection of 32 flag bits. Individual flags are defined as enum value bit
104 * @param optionBits the binary bit or bits that shall be set to the given value
105 * @param value the boolean value to set
107 public void setOption(int optionBits, boolean value) argument
109 options = value ? options | optionBits : options & ~optionBits;
H A DParseOptions.java55 * @param value the value to set
58 public ParseOptions setRequireXMPMeta(boolean value) argument
60 setOption(REQUIRE_XMP_META, value);
75 * @param value the value to set
78 public ParseOptions setStrictAliasing(boolean value) argument
80 setOption(STRICT_ALIASING, value);
95 * @param value the value t
98 setFixControlChars(boolean value) argument
118 setOmitNormalization(boolean value) argument
138 setAcceptLatin1(boolean value) argument
[all...]
H A DPropertyOptions.java74 * @return Return whether the property value is a URI. It is serialized to RDF using the
84 * @param value the value to set
87 public PropertyOptions setURI(boolean value) argument
89 setOption(URI, value);
106 * @param value the value to set
109 public PropertyOptions setHasQualifiers(boolean value) argument
111 setOption(HAS_QUALIFIERS, value);
118 * qualifier itself has a structured value, thi
132 setQualifier(boolean value) argument
150 setHasLanguage(boolean value) argument
168 setHasType(boolean value) argument
186 setStruct(boolean value) argument
207 setArray(boolean value) argument
228 setArrayOrdered(boolean value) argument
249 setArrayAlternate(boolean value) argument
271 setArrayAltText(boolean value) argument
297 setSchemaNode(boolean value) argument
[all...]
H A DSerializeOptions.java113 * @param value the value to set
116 public SerializeOptions setOmitPacketWrapper(boolean value) argument
118 setOption(OMIT_PACKET_WRAPPER, value);
133 * @param value the value to set
136 public SerializeOptions setReadOnlyPacket(boolean value) argument
138 setOption(READONLY_PACKET, value);
153 * @param value the value t
156 setUseCompactFormat(boolean value) argument
175 setIncludeThumbnailPad(boolean value) argument
195 setExactPacketLength(boolean value) argument
215 setSort(boolean value) argument
235 setEncodeUTF16BE(boolean value) argument
257 setEncodeUTF16LE(boolean value) argument
[all...]
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs223 /// <param name="value">The byte to add to the stream.</param>
226 public override void WriteByte(byte value) argument
231 int result = gzputc(_gzFile, (int)value);
241 /// <param name="value"></param>
243 public override void SetLength(long value) argument
/external/zlib/src/contrib/iostream2/
H A Dzstream.h44 size_t value() const { return val.word; } function in class:zstringlen
77 * and deallocates all the (de)compression state. The return value is
140 ::gzread(zs.fp(), x, len.value());
141 x[len.value()] = '\0';
147 char* x = new char[len.value()+1];
148 ::gzread(zs.fp(), x, len.value());
149 x[len.value()] = '\0';
195 * and deallocates all the (de)compression state. The return value is
213 * _flush is as in the deflate() function. The return value is the zlib
288 ::gzwrite(zs.fp(), (voidp) x, len.value());
[all...]
/external/zopfli/src/zopfli/
H A Dblocksplitter.c59 #define NUM 9 /* Good value: 9. */
132 static void AddSorted(size_t value, size_t** out, size_t* outsize) { argument
134 ZOPFLI_APPEND_DATA(value, out, outsize);
136 if ((*out)[i] > value) {
141 (*out)[i] = value;
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp88 Often in case of an error a value is assigned to a variable and then it breaks
161 /*resize and give all new elements the value*/
162 static unsigned uivector_resizev(uivector* p, size_t size, unsigned value) argument
166 for(i = oldsize; i < size; i++) p->data[i] = value;
241 /*resize and give all new elements the value*/
242 static unsigned ucvector_resizev(ucvector* p, size_t size, unsigned char value) argument
246 for(i = oldsize; i < size; i++) p->data[i] = value;
326 static void lodepng_set32bitInt(unsigned char* buffer, unsigned value) argument
328 buffer[0] = (unsigned char)((value >> 24) & 0xff);
329 buffer[1] = (unsigned char)((value >> 1
336 lodepng_add32bitInt(ucvector* buffer, unsigned value) argument
407 addBitsToStream(size_t* bitpointer, ucvector* bitstream, unsigned value, size_t nbits) argument
413 addBitsToStreamReversed(size_t* bitpointer, ucvector* bitstream, unsigned value, size_t nbits) argument
1001 unsigned value; /*set value to the previous code*/ local
1295 searchCodeIndex(const unsigned* array, size_t array_size, size_t value) argument
3124 unsigned value = readBitsFromReversedStream(&j, in, mode->bitdepth); local
3244 unsigned value = readBitsFromReversedStream(&j, in, mode->bitdepth); local
3543 getValueRequiredBits(unsigned short value) argument
[all...]
H A Dlodepng_util.cpp343 else treepos = tree2d[2 * treepos + bit] - numcodes; //subtract numcodes from address to get address value
396 //decode a single symbol from given list of bits with given code tree. return value is the symbol
435 unsigned long value; //set value to the previous code local
436 if((i - 1) < HLIT) value = bitlen[i - 1];
437 else value = bitlenD[i - HLIT - 1];
438 for(size_t n = 0; n < replength; n++) //repeat this value in the next lengths
441 if(i < HLIT) bitlen[i++] = value; else bitlenD[i++ - HLIT] = value;
449 for(size_t n = 0; n < replength; n++) //repeat this value i
[all...]
/external/zopfli/src/zopflipng/
H A Dzopflipng_bin.cc77 " If --prefix is specified without value, 'zopfli_' is used.\n"
181 std::string value = eq >= arg.size() - 1 ? "" : arg.substr(eq + 1); local
182 int num = atoi(value.c_str());
197 for (size_t j = 0; j < value.size(); j++) {
199 char f = value[j];
221 if ((value.size() + 1) % 5 != 0) correct = false;
222 for (size_t i = 0; i + 4 <= value.size() && correct; i += 5) {
223 png_options.keepchunks.push_back(value.substr(i, 4));
224 if (i > 4 && value[i - 1] != ',') correct = false;
233 if (!value
[all...]
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dwpa_auth.c69 int value)
72 wpa_auth->cb.set_eapol(wpa_auth->cb.ctx, addr, var, value);
340 * Set initial GMK/Counter value here. The actual values that will be
826 * msg 4/4 with incorrect type value in WPA2 mode.
1693 * machine definition, use an unpredictable nonce value here to provide
1878 * with the value we derived.
67 wpa_auth_set_eapol(struct wpa_authenticator *wpa_auth, const u8 *addr, wpa_eapol_variable var, int value) argument
H A Dwpa_auth_glue.c148 wpa_eapol_variable var, int value)
156 ieee802_1x_notify_port_enabled(sta->eapol_sm, value);
159 ieee802_1x_notify_port_valid(sta->eapol_sm, value);
162 ieee802_1x_set_sta_authorized(hapd, sta, value);
170 sta->eapol_sm->keyRun = value ? TRUE : FALSE;
175 value ? TRUE : FALSE;
179 sta->eapol_sm->keyDone = value ? TRUE : FALSE;
147 hostapd_wpa_auth_set_eapol(void *ctx, const u8 *addr, wpa_eapol_variable var, int value) argument
/external/wpa_supplicant_8/hostapd/src/common/
H A Dwpa_common.c1359 int wpa_parse_cipher(const char *value) argument
1364 buf = os_strdup(value);
H A Dwpa_helpers.c249 const char *value)
252 snprintf(buf, sizeof(buf), "SET_NETWORK %d %s %s", id, field, value);
258 const char *value)
262 id, field, value);
277 int set_cred(const char *ifname, int id, const char *field, const char *value) argument
280 snprintf(buf, sizeof(buf), "SET_CRED %d %s %s", id, field, value);
286 const char *value)
290 id, field, value);
248 set_network(const char *ifname, int id, const char *field, const char *value) argument
257 set_network_quoted(const char *ifname, int id, const char *field, const char *value) argument
285 set_cred_quoted(const char *ifname, int id, const char *field, const char *value) argument

Completed in 202 milliseconds

1234567891011>>