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

1 2 3 4

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodeRenderingHelperTest.java 116 linear1.addAttributes(SdkConstants.NS_RESOURCES, "id", "@+id/linear1");
120 linear2.addAttributes(SdkConstants.NS_RESOURCES, "id", "@+id/linear2");
123 linear2.addAttributes(SdkConstants.NS_RESOURCES, "layout_below", "@+id/linear1");
149 linear1.addAttributes(SdkConstants.NS_RESOURCES, "id", "@+id/linear1");
153 linear2.addAttributes(SdkConstants.NS_RESOURCES, "id", "@+id/linear2");
156 linear2.addAttributes(SdkConstants.NS_RESOURCES, "layout_above", "@+id/linear1");
184 button1.addAttributes(SdkConstants.NS_RESOURCES, "id", "@+id/button1");
187 button2.addAttributes(SdkConstants.NS_RESOURCES, "id", "@+id/button2");
191 linear1.addAttributes(SdkConstants.NS_RESOURCES, "id", "@+id/linear1");
195 linear2.addAttributes(SdkConstants.NS_RESOURCES, "id", "@+id/linear2")
    [all...]
UiElementPullParserTest.java 111 button1.addAttributes(SdkConstants.NS_RESOURCES, "name", "button1");
112 button1.addAttributes(SdkConstants.NS_RESOURCES, "text", "button1text");
124 button2.addAttributes(SdkConstants.NS_RESOURCES, "name", "button2");
125 button2.addAttributes(SdkConstants.NS_RESOURCES, "text", "button2text");
133 text.addAttributes(SdkConstants.NS_RESOURCES, "name", "text1");
134 text.addAttributes(SdkConstants.NS_RESOURCES, "text", "text1text");
142 relative.addAttributes(SdkConstants.NS_RESOURCES, "orientation", "toto");
146 linear.addAttributes(SdkConstants.NS_RESOURCES, "orientation", "vertical");
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 76 // m_rth.addAttributes(node);
167 SerializerUtils.addAttributes(rth, node);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ExtendedContentHandler.java 38 * addAttributes(atts)
72 public void addAttributes(org.xml.sax.Attributes atts)
ToUnknownStream.java 497 /* we don't want to call our own addAttributes, which
500 * addAttributes() In this case m_attributes is only used for the
505 super.addAttributes(atts);
    [all...]
ToXMLSAXHandler.java 673 addAttributes(atts);
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedStringTest.java 351 * java.text.AttributedString#addAttributes(Map<? extends
353 * method java.text.AttributedString#addAttributes(Map<? extends
371 as.addAttributes(whm, 0, 3);
378 as.addAttributes(null, 0, 3);
387 as.addAttributes(whm, 0, 0);
458 attrString.addAttributes(hm, 2, 4);
  /external/llvm/lib/CodeGen/AsmPrinter/
DIEHash.h 109 void addAttributes(const DIE &Die);
DIEHash.cpp 436 void DIEHash::addAttributes(const DIE &Die) {
463 addAttributes(Die);
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DefineGrammarItemsWalker.g 134 scope.addAttributes($attrs.text, ';');
235 r.parameterScope.addAttributes($args.text, ',');
240 r.returnScope.addAttributes($ret.text, ',');
297 r.ruleScope.addAttributes($attrs.text, ';');
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
BaseLayoutRuleTest.java 175 layout.addAttributes(newNode, oldElement, idMap, filter);
203 layout.addAttributes(newNode, oldElement, idMap, filter);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AttributeScope.java 121 public void addAttributes(String definitions, int separator) {
  /external/apache-xml/src/main/java/org/apache/xalan/serialize/
SerializerUtils.java 93 public static void addAttributes(SerializationHandler handler, int src)
  /external/llvm/bindings/go/llvm/
IRBindings.cpp 29 PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex,
  /external/llvm/lib/IR/
Attributes.cpp 738 return addAttributes(C, Index, AttributeSet::get(C, Index, Attr));
745 return addAttributes(C, Index, AttributeSet::get(C, Index, B));
752 return addAttributes(C, Index, AttributeSet::get(C, Index, B));
755 AttributeSet AttributeSet::addAttributes(LLVMContext &C, unsigned Index,
859 return addAttributes(C, Index, AttributeSet::get(C, Index, B));
867 return addAttributes(C, Index, AttributeSet::get(C, Index, B));
    [all...]
Function.cpp 189 getParent()->addAttributes(getArgNo() + 1,
333 void Function::addAttributes(unsigned i, AttributeSet attrs) {
335 PAL = PAL.addAttributes(getContext(), i, attrs);
    [all...]
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 157 F->addAttributes(AttributeSet::FunctionIndex, NPAL);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
FrameLayoutRule.java 157 addAttributes(newChild, element, idMap, DEFAULT_ATTR_FILTER);
AbsoluteLayoutRule.java 177 addAttributes(newChild, element, idMap, DEFAULT_ATTR_FILTER);
BaseLayoutRule.java 458 * For use by {@link BaseLayoutRule#addAttributes} A filter should return a
526 protected static void addAttributes(INode newNode, IDragElement oldElement,
554 * Attributes are adjusted by calling addAttributes with idMap as necessary,
564 addAttributes(childNode, element, idMap, null /* filter */);
604 addAttributes(newChild, element, idMap, DEFAULT_ATTR_FILTER);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 94 public void addAttributes(String namespaceURI, String localName, String value) {
  /external/jetty/src/java/org/eclipse/jetty/server/session/
AbstractSession.java 271 protected void addAttributes(Map<String,Object> map)
  /external/llvm/include/llvm/IR/
Attributes.h 277 AttributeSet addAttributes(LLVMContext &C, unsigned Index,
Function.h 218 void addAttributes(unsigned i, AttributeSet attrs);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java     [all...]

Completed in 1551 milliseconds

1 2 3 4