HomeSort by relevance Sort by last modified time
    Searched refs:specified (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 23 * <p>The <em>specified</em> flag for each attribute will always
27 * always be false, except for defaulted attributes (<em>specified</em>
41 private boolean specified []; field in class:Attributes2Impl
50 specified = new boolean[0];
58 * <em>specified</em> and <em>declared</em> flags for each
125 * Returns the current value of an attribute's "specified" flag.
137 return specified [index];
142 * Returns the current value of an attribute's "specified" flag.
159 return specified [index];
164 * Returns the current value of an attribute's "specified" flag
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementassociatedattribute.java 70 boolean specified;
76 specified = domesticAttr.getSpecified();
77 assertTrue("domesticSpecified", specified);
hc_elementassociatedattribute.java 67 boolean specified;
73 specified = domesticAttr.getSpecified();
74 assertTrue("acronymTitleSpecified", specified);
namednodemapremovenameditem.java 32 * specified by name.
38 * in the removal of the specified attribute and
79 boolean specified;
89 specified = streetAttr.getSpecified();
90 assertFalse("attrNotSpecified", specified);
hc_namednodemapremovenameditem.java 32 * specified by name.
38 * in the removal of the specified attribute.
72 boolean specified;
  /external/webkit/WebCore/dom/
Attr.idl 31 readonly attribute boolean specified;
Attr.h 46 bool specified() const { return m_specified; } function in class:WebCore::Attr
61 void setSpecified(bool specified) { m_specified = specified; }
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode01.java 37 * The ownerElement is set to null. Specified flag is set to true.
83 boolean specified;
107 specified = ((Attr) /*Node */aNode).getSpecified();
108 assertTrue("specified", specified);
  /external/grub/util/
grub-set-default 66 # We don't care about what the user specified actually.
72 echo "entry not specified." 1>&2
grub-set-default.in 66 # We don't care about what the user specified actually.
72 echo "entry not specified." 1>&2
  /build/core/tasks/
ide.mk 29 $(error Only one ECLIPSE- goal may be specified: $(eclipse_project_goals))
  /external/icu4c/extra/uconv/
makedata.mak 14 !MESSAGE No configuration specified. Defaulting to common - Win32 Debug.
19 !MESSAGE Invalid configuration "$(CFG)" specified.
30 !ERROR An invalid configuration is specified.
  /external/v8/tools/
profile.js 53 * Returns whether a function with the specified name must be skipped.
77 * Called whenever the specified operation has failed finding a function
78 * containing the specified address. Should be overriden by subclasses.
279 * Calculates a top down profile for a node with the specified label.
280 * If no name specified, returns the whole top down calls tree.
290 * Calculates a bottom up profile for a node with the specified label.
291 * If no name specified, returns the whole bottom up calls tree.
320 * the specified label. If no name specified, starts from the root.
449 * Adds the specified call path, constructing nodes as necessary
    [all...]
splaytree.js 66 * Inserts a node into the tree with the specified key and value if
67 * the tree does not already contain a node with the specified key. If
99 * Removes a node with the specified key from the tree if the tree
131 * Returns the node having the specified key or null if the tree doesn't contain
132 * a node with the specified key.
135 * @return {goog.structs.SplayTree.Node} Node having the specified key.
178 * is less or equal to the specified key value.
codemap.js 93 * code entry with the specified starting address.
106 * code entry with the specified starting address.
169 * Finds a code entry that contains the specified address. Both static and
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 19 NonAndroidProjectError=Specified project is not an Android project
32 AndroidJUnitTab_NoRunnerError=Instrumentation runner not specified
  /external/v8/test/mjsunit/
array-iteration.js 45 // Use specified object as this object when calling the function.
84 // Use specified object as this object when calling the function.
126 // Use specified object as this object when calling the function.
165 // Use specified object as this object when calling the function.
201 // Use specified object as this object when calling the function.
  /build/core/
prebuilt.mk 67 $(error No LOCAL_CERTIFICATE specified for prebuilt "$(LOCAL_SRC_FILES)")
product_config.mk 97 $(error Only one PRODUCT-* goal may be specified; saw "$(product_goals)")
162 $(error Only one APP-* goal may be specified; saw "$(unbundled_goals)"))
189 # Read in all of the product definitions specified by the AndroidProducts.mk
296 # The OTA key(s) specified by the product config, if any. The names
  /external/webkit/LayoutTests/storage/domstorage/events/script-tests/
basic-body-attribute.js 1 description("This is a test to make sure DOM Storage mutations fire StorageEvents that are caught by the event listener specified as an attribute on the body.");
  /ndk/build/tools/
prebuilt-common.sh 395 log "Using specified sysroot: $1"
504 echo "Invalid toolchain specified. Expected (arm-eabi-*|x86-*)"
  /external/v8/benchmarks/
splay.js 152 * Inserts a node into the tree with the specified key and value if
153 * the tree does not already contain a node with the specified key. If
185 * Removes a node with the specified key from the tree if the tree
217 * Returns the node having the specified key or null if the tree doesn't contain
218 * a node with the specified key.
221 * @return {SplayTree.Node} Node having the specified key.
234 * is less or equal to the specified key value.
  /external/webkit/SunSpider/tests/v8-v4/
v8-splay.js 147 * Inserts a node into the tree with the specified key and value if
148 * the tree does not already contain a node with the specified key. If
180 * Removes a node with the specified key from the tree if the tree
212 * Returns the node having the specified key or null if the tree doesn't contain
213 * a node with the specified key.
216 * @return {SplayTree.Node} Node having the specified key.
229 * is less or equal to the specified key value.
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java 196 opts.addError (formatMessage ("option \'" + optName + "\' cannot be specified more than once"));
225 // value specified explicitly using the <name>separator<value> syntax:
332 final IOpt [] specified = opts.getOpts (); local
333 if (specified != null)
335 // validation: all required parameters must be specified
340 for (int s = 0; s < specified.length; ++ s)
342 required.remove (specified [s].getCanonicalName ());
353 for (int s = 0; s < specified.length; ++ s)
355 final IOpt opt = specified [s];
    [all...]
  /external/quake/quake/src/QW/gas2masm/
gas2masm.mak 8 !MESSAGE No configuration specified. Defaulting to gas2masm - Win32 Debug.
13 !MESSAGE Invalid configuration "$(CFG)" specified.
25 !ERROR An invalid configuration is specified.

Completed in 224 milliseconds

1 2 3 4 5 6