Searched defs:local (Results 1 - 11 of 11) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/code/
H A DLocalEnd.java25 * register to a named local variable. That is, an instance of this
31 * {@code non-null;} register spec representing the local variable ended
34 * is implicit in the ambient local variable state, but other code
37 private final RegisterSpec local; field in class:LocalEnd
44 * @param local {@code non-null;} register spec representing the local
47 public LocalEnd(SourcePosition position, RegisterSpec local) { argument
50 if (local == null) {
51 throw new NullPointerException("local == null");
54 this.local
[all...]
H A DLocalStart.java24 * Pseudo-instruction which is used to introduce a new local variable. That
31 * {@code non-null;} register spec representing the local variable introduced
34 private final RegisterSpec local; field in class:LocalStart
37 * Returns the local variable listing string for a single register spec.
52 * @param local {@code non-null;} register spec representing the local
55 public LocalStart(SourcePosition position, RegisterSpec local) { argument
58 if (local == null) {
59 throw new NullPointerException("local == null");
62 this.local
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalItem.java22 * A local variable item: either a name or a signature or both.
25 /** {@code null-ok;} local variable name */
28 /** {@code null-ok;} local variable signature */
36 * @param name {@code null-ok;} local variable name
37 * @param signature {@code null-ok;} local variable signature
51 * @param name {@code null-ok;} local variable name
52 * @param signature {@code null-ok;} local variable signature
66 LocalItem local = (LocalItem) other;
68 return 0 == compareTo(local);
91 public int compareTo(LocalItem local) { argument
[all...]
H A DRegisterSpecSet.java191 * given local (type, name, and signature), or {@code null} if there is
195 * @param spec {@code non-null;} local to look for
218 * local (name and signature), or {@code null} if there is none.
220 * @param local {@code non-null;} local item to search for
223 public RegisterSpec localItemToSpec(LocalItem local) { argument
229 if ((spec != null) && local.equals(spec.getLocalItem())) {
316 * @param localPrimary whether local variables are primary to
H A DRegisterSpec.java49 /** {@code null-ok;} local variable info associated with this register, if any */
50 private final LocalItem local; field in class:RegisterSpec
58 * @param local {@code null-ok;} the associated local variable, if any
62 LocalItem local) {
63 theInterningItem.set(reg, type, local);
97 * @param local {@code non-null;} the associated local variable
101 LocalItem local) {
102 if (local
61 intern(int reg, TypeBearer type, LocalItem local) argument
100 make(int reg, TypeBearer type, LocalItem local) argument
121 makeLocalOptional( int reg, TypeBearer type, LocalItem local) argument
146 RegisterSpec(int reg, TypeBearer type, LocalItem local) argument
222 equals(int reg, TypeBearer type, LocalItem local) argument
273 hashCodeOf(int reg, TypeBearer type, LocalItem local) argument
547 withLocalItem(LocalItem local) argument
605 private LocalItem local; field in class:RegisterSpec.ForComparison
617 set(int reg, TypeBearer type, LocalItem local) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DAttributesImplSerializer.java95 * @param local the local name of the attribute
105 String local,
111 super.addAttribute(uri, local, qname, type, val);
132 m_buff.append('{').append(uri).append('}').append(local);
155 // Add quick look-up to find with uri/local name pair
157 String local = super.getLocalName(index);
159 m_buff.append('{').append(uri).append('}').append(local);
209 * @param localName the local namer (after the ':' ) of the attribute name.
103 addAttribute( String uri, String local, String qname, String type, String val) argument
/dalvik/dx/src/com/android/dx/cf/code/
H A DMachine.java107 * Loads the local variable with the given index as the sole argument in
111 * @param idx {@code >= 0;} the local variable index
190 * Indicates that the target of this operation is the given local.
192 * @param idx {@code >= 0;} the local variable index
193 * @param type {@code non-null;} the type of the local
194 * @param local {@code null-ok;} the name and signature of the local, if known
196 public void localTarget(int idx, Type type, LocalItem local); argument
H A DBaseMachine.java63 /** {@code >= -1;} last local accessed */
66 /** {@code null-ok;} local target spec, if salient and calculated */
250 public final void localTarget(int idx, Type type, LocalItem local) { argument
251 localTarget = RegisterSpec.makeLocalOptional(idx, type, local);
352 * Gets the last local index accessed.
354 * @return {@code >= -1;} the salient local index or {@code -1} if none
362 * Gets the target local register spec of the current operation, if any.
363 * The local target spec is the combination of the values indicated
369 * local target was set since the last time {@link #clearArgs} was
378 throw new SimException("local targe
535 throwLocalMismatch(TypeBearer found, TypeBearer local) argument
[all...]
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaInsn.java132 * Sets the local association for the result of this insn. This is
135 * @param local {@code null-ok;} new debug/local variable info
137 public final void setResultLocal(LocalItem local) { argument
140 if (local != oldItem && (local == null
141 || !local.equals(result.getLocalItem()))) {
143 result.getReg(), result.getType(), local);
187 * Gets the spec of a local variable assignment that occurs at this
188 * instruction, or null if no local variabl
[all...]
H A DPhiInsn.java85 * Note that local association of operands are preserved in this step.
105 * @param local {@code null-ok;} new local info, if available
107 public void changeResultType(TypeBearer type, LocalItem local) { argument
109 getResult().getReg(), type, local));
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOM3TreeWalker.java762 // create a local namespace declaration attribute
1126 * @param local local part of qualified name
1130 String local,
1133 // check that both prefix and local part match NCName
1134 if (local == null)
1141 && XMLChar.isValidNCName(local);
1145 && XML11Char.isXML11ValidNCName(local);
1819 * Records local namespace declarations, to be used for normalization later
1902 // Create a local namespac
1128 isValidQName( String prefix, String local, boolean xml11Version) argument
[all...]

Completed in 131 milliseconds