HomeSort by relevance Sort by last modified time
    Searched defs:notation (Results 1 - 25 of 73) sorted by null

1 2 3

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documenttypegetnotations.java 67 Node notation; local
81 notation = (Node) notationList.item(indexN1005B);
82 notationName = notation.getNodeName();
documenttypegetnotationstype.java 32 * method implements the Notation interface.
66 Node notation; local
74 notation = (Node) notationList.item(indexN10049);
75 notationType = (int) notation.getNodeType();
entitygetpublicid.java 72 String notation; local
83 notation = entityNode.getNotationName();
84 assertEquals("notation", "notation1", notation);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getNamedItemNS04.java 34 * Notation nodes are not namespaced and should not be retrievable using
66 Notation notation; local
73 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
74 assertNull("notationNull", notation);
importNode13.java 36 * The importedNode is of type Notation.
38 * Retrieve notation named "notation1" from document staffNS.xml.
40 * contains the retrieved notation and deep is false. Method should
41 * return a node of type notation whose name is "notation1".
74 Notation notation; local
75 Notation aNode;
85 notation = (Notation) notationList.getNamedItem("notation1");
86 aNode = (Notation) doc.importNode(notation, false)
    [all...]
namednodemapgetnameditemns01.java 34 * Using the method getNamedItemNS, retreive the entity "ent1" and notation "notation1"
77 Notation notation; local
90 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
91 assertNull("notationNull", notation);
namednodemapsetnameditemns05.java 34 * Retreive an entity and notation node and add the first notation to the
35 * notation node map and first entity node to the entity map. Since both these
77 Notation notation; local
88 notation = (Notation) notations.getNamedItem("notation1");
103 newNode = notations.setNamedItemNS(notation);
namednodemapsetnameditemns10.java 78 Notation notation; local
namednodemapsetnameditemns11.java 37 * Attempt to add a notation node to a NamedNodeMap of attribute nodes,
77 Notation notation; local
87 notation = (Notation) notations.getNamedItem("notation1");
95 newNode = attributes.setNamedItemNS(notation);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
MacroProps.java 9 import android.icu.number.Notation;
22 public Notation notation; field in class:MacroProps
44 if (notation == null) notation = fallback.notation;
63 notation,
85 return Utility.equals(notation, other.notation)
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
MacroProps.java 8 import com.ibm.icu.number.Notation;
18 public Notation notation; field in class:MacroProps
40 if (notation == null) notation = fallback.notation;
59 notation,
81 return Utility.equals(notation, other.notation)
  /external/icu/android_icu4j/src/main/java/android/icu/number/
ScientificNotation.java 19 * A class that defines the scientific notation style to be used when formatting numbers in NumberFormatter.
22 * To create a ScientificNotation, use one of the factory methods in {@link Notation}.
28 public class ScientificNotation extends Notation implements Cloneable {
44 * Sets the minimum number of digits to show in the exponent of scientific notation, padding with zeros if
69 * Sets whether to show the sign on positive and negative exponents in scientific notation. The default is AUTO,
121 final ScientificNotation notation; field in class:ScientificNotation.ScientificHandler
127 private ScientificHandler(ScientificNotation notation, DecimalFormatSymbols symbols, boolean safe,
129 this.notation = notation;
152 if (notation.requireMinInt && micros.rounding instanceof SignificantRounderImpl)
    [all...]
NumberFormatterSettings.java 57 * Specifies the notation style (simple, scientific, or compact) for rendering numbers.
60 * <li>Simple notation: "12,300"
61 * <li>Scientific notation: "1.23E4"
62 * <li>Compact notation: "12K"
66 * All notation styles will be properly localized with locale data, and all notation styles are compatible with
70 * Pass this method the return value of a {@link Notation} factory method. For example:
73 * NumberFormatter.with().notation(Notation.compactShort())
76 * The default is to use simple notation
84 public T notation(Notation notation) { method in class:NumberFormatterSettings
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
ScientificNotation.java 18 * A class that defines the scientific notation style to be used when formatting numbers in NumberFormatter.
21 * To create a ScientificNotation, use one of the factory methods in {@link Notation}.
27 public class ScientificNotation extends Notation implements Cloneable {
43 * Sets the minimum number of digits to show in the exponent of scientific notation, padding with zeros if
69 * Sets whether to show the sign on positive and negative exponents in scientific notation. The default is AUTO,
122 final ScientificNotation notation; field in class:ScientificNotation.ScientificHandler
128 private ScientificHandler(ScientificNotation notation, DecimalFormatSymbols symbols, boolean safe,
130 this.notation = notation;
153 if (notation.requireMinInt && micros.rounding instanceof SignificantRounderImpl)
    [all...]
NumberFormatterSettings.java 56 * Specifies the notation style (simple, scientific, or compact) for rendering numbers.
59 * <li>Simple notation: "12,300"
60 * <li>Scientific notation: "1.23E4"
61 * <li>Compact notation: "12K"
65 * All notation styles will be properly localized with locale data, and all notation styles are compatible with
69 * Pass this method the return value of a {@link Notation} factory method. For example:
72 * NumberFormatter.with().notation(Notation.compactShort())
75 * The default is to use simple notation
84 public T notation(Notation notation) { method in class:NumberFormatterSettings
    [all...]
  /external/icu/icu4c/source/i18n/
number_fluent.cpp 19 Derived NumberFormatterSettings<Derived>::notation(const Notation &notation) const { function in class:NumberFormatterSettings
22 copy.fMacros.notation = notation;
  /external/icu/icu4c/source/i18n/unicode/
numberformatter.h 34 * // Custom notation, unit, and rounding strategy:
36 * .notation(Notation::compactShort())
65 * UnlocalizedNumberFormatter formatter = UnlocalizedNumberFormatter::with().notation(Notation::scientific());
280 class Notation;
311 typedef Notation CompactNotation;
312 typedef Notation SimpleNotation;
315 * A class that defines the notation style to be used when formatting numbers in NumberFormatter.
319 class U_I18N_API Notation : public UMemory
1281 Notation notation; member in struct:number::impl::MacroProps
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msasn1.h 369 ASN1open_t notation; member in union:tagASN1external_t::ASN1external_data_value_s::__anon65269
407 ASN1open_t notation; member in union:tagASN1embeddedpdv_t::ASN1embeddedpdv_data_value_s::__anon65271
446 ASN1open_t notation; member in union:tagASN1characterstring_t::ASN1characterstring_data_value_s::__anon65273
  /external/libxml2/
valid.c 6695 xmlChar *notation = cur->content; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/sun/xsom/xsom/20140925/
xsom-20140925.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/expat/
xmlparse.c 197 const XML_Char *notation; member in struct:__anon4229
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
xmlparse.c 199 const XML_Char *notation; member in struct:__anon4427
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
xmlparse.c 197 const XML_Char *notation; member in struct:__anon4759
    [all...]
  /external/expat/lib/
xmlparse.c 279 const XML_Char *notation; member in struct:__anon20367
    [all...]
  /external/python/cpython2/Modules/expat/
xmlparse.c 199 const XML_Char *notation; member in struct:__anon32806
    [all...]

Completed in 1078 milliseconds

1 2 3