/external/chromium_org/third_party/WebKit/Source/bindings/templates/ |
interface.h | 36 {% for attribute in attributes if attribute.is_implemented_in_private_script %} 37 static bool {{attribute.name}}AttributeGetter(LocalFrame* frame, {{cpp_class}}* holderImpl, {{attribute.cpp_type}}* result); 38 {% if not attribute.is_read_only %} 39 static bool {{attribute.name}}AttributeSetter(LocalFrame* frame, {{cpp_class}}* holderImpl, {{attribute.argument_cpp_type}} cppValue); 82 {% for attribute in attributes %} 83 {% if attribute.has_custom_getter %}{# FIXME: and not attribute.implemented_by # [all...] |
interface.cpp | 581 {% for attribute in any_type_attributes %} 582 v8::Local<v8::Value> {{attribute.name}}; 593 {% for attribute in any_type_attributes %} 594 options.get("{{attribute.name}}", {{attribute.name}}); 595 if (!{{attribute.name}}.IsEmpty()) 596 V8HiddenValue::setHiddenValue(info.GetIsolate(), info.Holder(), v8AtomicString(info.GetIsolate(), "{{attribute.name}}"), {{attribute.name}}); 617 {% for attribute in any_type_attributes %} 618 if (!{{attribute.name}}.IsEmpty() [all...] |
/external/chromium_org/third_party/jinja2/ |
sandbox.py | 121 """Test if the attribute given is an internal python attribute. For 122 example this function returns `True` for the `func_code` attribute of 153 """This function checks if an attribute on a builtin mutable object 270 attribute of an object is safe to access. Per default all attributes 279 considered safe unless the `unsafe_callable` attribute exists and is 325 def getattr(self, obj, attribute): 327 attribute. The attribute passed *must* be a bytestring. 330 value = getattr(obj, attribute) [all...] |
filters.py | 54 def make_attrgetter(environment, attribute): 55 """Returns a callable that looks up the given attribute from a 60 if not isinstance(attribute, string_types) \ 61 or ('.' not in attribute and not attribute.isdigit()): 62 return lambda x: environment.getitem(x, attribute) 63 attribute = attribute.split('.') 65 for part in attribute: 140 """Create an SGML/XML attribute string based on the items in a dict [all...] |
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
BridgeAttribute_info.java | 9 package com.vladium.jcd.cls.attribute; 17 * New attribute added by J2SE 1.5
|
SyntheticAttribute_info.java | 9 package com.vladium.jcd.cls.attribute; 17 * The Synthetic attribute is a fixed-length attribute in the attributes table 20 * not appear in the source code must be marked using a Synthetic attribute.<P> 22 * The Synthetic attribute has the following format:
|
/external/proguard/src/proguard/classfile/attribute/ |
BootstrapMethodInfo.java | 21 package proguard.classfile.attribute;
|
ExceptionInfo.java | 21 package proguard.classfile.attribute;
|
/external/proguard/src/proguard/classfile/constant/visitor/ |
MethodrefTraveler.java | 24 import proguard.classfile.attribute.*;
|
/external/proguard/src/proguard/classfile/editor/ |
AnnotationsAttributeEditor.java | 23 import proguard.classfile.attribute.annotation.*; 26 * This class can add annotations to a given annotations attribute. 38 * the given annotations attribute. 47 * Adds a given annotation to the annotations attribute.
|
ExceptionAdder.java | 24 import proguard.classfile.attribute.ExceptionsAttribute; 31 * target exceptions attribute. 45 * target exceptions attribute.
|
ExceptionsAttributeEditor.java | 23 import proguard.classfile.attribute.ExceptionsAttribute; 26 * This class can add exceptions to a given exceptions attribute. 39 * given exceptions attribute. 48 * Adds a given exception to the exceptions attribute.
|
LineNumberTableAttributeEditor.java | 23 import proguard.classfile.attribute.*; 26 * This class can add line numbers to a given line number table attribute. 38 * in the given line number table attribute. 47 * Adds a given line number to the line number table attribute.
|
LocalVariableTableAttributeEditor.java | 23 import proguard.classfile.attribute.*; 26 * This class can add local variables to a given local variable table attribute. 38 * in the given line number table attribute. 47 * Adds a given line number to the line number table attribute.
|
LocalVariableTypeTableAttributeEditor.java | 23 import proguard.classfile.attribute.*; 27 * attribute. 39 * in the given line number table attribute. 48 * Adds a given line number to the line number table attribute.
|
ParameterAnnotationsAttributeEditor.java | 23 import proguard.classfile.attribute.annotation.*; 26 * This class can add annotations to a given parameter annotations attribute. 38 * annotations in the given parameter annotations attribute. 47 * Adds a given annotation to the annotations attribute.
|
/external/proguard/src/proguard/classfile/util/ |
EnumFieldReferenceInitializer.java | 24 import proguard.classfile.attribute.CodeAttribute; 25 import proguard.classfile.attribute.annotation.*; 26 import proguard.classfile.attribute.annotation.visitor.ElementValueVisitor; 27 import proguard.classfile.attribute.visitor.*;
|
/external/proguard/src/proguard/evaluation/ |
InvocationUnit.java | 24 import proguard.classfile.attribute.CodeAttribute;
|
/external/proguard/src/proguard/optimize/evaluation/ |
TracedBranchUnit.java | 24 import proguard.classfile.attribute.CodeAttribute;
|
/external/proguard/src/proguard/preverify/ |
Preverifier.java | 25 import proguard.classfile.attribute.visitor.AllAttributeVisitor;
|
SubroutineInliner.java | 25 import proguard.classfile.attribute.visitor.AllAttributeVisitor;
|
/frameworks/base/core/java/com/android/internal/view/ |
IInputMethod.aidl | 41 void startInput(in IInputContext inputContext, in EditorInfo attribute); 43 void restartInput(in IInputContext inputContext, in EditorInfo attribute);
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
FastXmlSerializerTest.java | 38 out.attribute(null, "name", "meow");
|
/libcore/luni/src/test/java/libcore/xml/ |
KxmlSerializerTest.java | 40 serializer.attribute(NAMESPACE, "cr", "\r"); 41 serializer.attribute(NAMESPACE, "lf", "\n"); 42 serializer.attribute(NAMESPACE, "tab", "\t"); 43 serializer.attribute(NAMESPACE, "space", " "); 56 serializer.attribute(NAMESPACE, "quux", "abc"); 106 serializer.attribute(NAMESPACE, "attr", "a\ud83d\ude4ab"); 131 serializer.attribute(NAMESPACE, "attr", "a\ud83d\u0040b"); 171 serializer.attribute(NAMESPACE, "a", "a" + s + "b"); 174 serializer.attribute(NAMESPACE, "a", "a" + s + "b");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
UnwrapRefactoring.java | 191 for (Attr attribute : declarations) { 192 if (attribute instanceof IndexedRegion) { 193 setAttribute(rootEdit, newRoot, attribute.getNamespaceURI(), 194 attribute.getPrefix(), attribute.getLocalName(), attribute.getValue()); 203 for (Attr attribute : layoutAttributes) { 204 String name = attribute.getLocalName(); 206 && ANDROID_URI.equals(attribute.getNamespaceURI())) {
|