HomeSort by relevance Sort by last modified time
    Searched full:classnames (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/PerformanceTests/ShadowDOM/
MultipleInsertionPoints.html 15 var classNames = ['A', 'B', 'C', 'D', 'E'];
26 for (var j = 0; j < classNames.length; ++j) {
28 names.push(classNames[j]);
36 for (var i = 0; i < classNames.length; ++i) {
38 content.setAttribute('select', '.' + classNames[i]);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClassCollection.h 41 // classNames argument is an AtomicString because it is common for Elements to share the same class names.
43 static PassRefPtrWillBeRawPtr<ClassCollection> create(ContainerNode& rootNode, CollectionType type, const AtomicString& classNames)
46 return adoptRefWillBeNoop(new ClassCollection(rootNode, classNames));
54 ClassCollection(ContainerNode& rootNode, const AtomicString& classNames);
72 return testElement.classNames().containsAll(m_classNames);
ClassCollection.cpp 38 ClassCollection::ClassCollection(ContainerNode& rootNode, const AtomicString& classNames)
40 , m_classNames(classNames, document().inQuirksMode())
41 , m_originalClassNames(classNames)
  /external/chromium_org/third_party/WebKit/Source/core/html/
ClassList.cpp 50 return m_element->hasClass() ? classNames().size() : 0;
57 return classNames()[index];
62 return m_element->hasClass() && classNames().contains(token);
65 const SpaceSplitString& ClassList::classNames() const
73 return m_element->elementData()->classNames();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewWizard.java 105 List<String> classNames = new ArrayList<String>();
122 classNames.add(className);
125 classNames.add(null);
136 classNames.add(view);
139 classNames.add(null);
145 classNames.add(view);
148 classNames.add(null);
165 classNames.add(className);
172 classNames.add(null);
175 return classNames;
    [all...]
WrapInWizard.java 168 List<Pair<String, ViewElementDescriptor>> classNames =
174 classNames.add(Pair.of(RADIO_GROUP, (ViewElementDescriptor) null));
177 classNames.add(Pair.<String,ViewElementDescriptor>of(null, null));
186 classNames.add(Pair.of(view, (ViewElementDescriptor) null));
189 classNames.add(Pair.<String,ViewElementDescriptor>of(null, null));
220 classNames.add(Pair.of(className, d));
226 classNames.add(null);
231 classNames.add(Pair.of(view, (ViewElementDescriptor) null));
234 classNames.add(null);
239 classNames.add(Pair.<String, ViewElementDescriptor> of
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ConstantAttribute.java 64 * @param classnames pairs of replaced and substituted
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
69 classnames);
DeprecatedAttribute.java 50 * @param classnames should be null.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
ExceptionsAttribute.java 44 Map classnames) {
46 copyFrom(src, classnames);
66 * @param classnames pairs of replaced and substituted
69 public AttributeInfo copy(ConstPool newCp, Map classnames) {
70 return new ExceptionsAttribute(newCp, this, classnames);
78 * @param classnames pairs of replaced and substituted
81 private void copyFrom(ExceptionsAttribute srcAttr, Map classnames) {
91 ByteArray.write16bit(srcCp.copy(index, destCp, classnames),
LocalVariableTypeAttribute.java 55 String renameEntry(String desc, Map classnames) {
56 return SignatureAttribute.renameClass(desc, classnames);
SyntheticAttribute.java 50 * @param classnames should be null.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
AttributeInfo.java 168 * @param classnames pairs of replaced and substituted
171 public AttributeInfo copy(ConstPool newCp, Map classnames) {
259 void renameClass(Map classnames) {}
269 static void renameClass(List attributes, Map classnames) {
273 ai.renameClass(classnames);
277 void getRefClasses(Map classnames) {}
279 static void getRefClasses(List attributes, Map classnames) {
283 ai.getRefClasses(classnames);
SourceFileAttribute.java 64 * @param classnames pairs of replaced and substituted
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
ParameterAnnotationsAttribute.java 106 public AttributeInfo copy(ConstPool newCp, Map classnames) {
107 Copier copier = new Copier(info, constPool, newCp, classnames);
180 void renameClass(Map classnames) {
181 Renamer renamer = new Renamer(info, getConstPool(), classnames);
189 void getRefClasses(Map classnames) { renameClass(classnames); }
CodeAttribute.java 74 * @param classnames pairs of replaced and substituted
77 private CodeAttribute(ConstPool cp, CodeAttribute src, Map classnames)
84 exceptions = src.getExceptionTable().copy(cp, classnames);
90 attributes.add(ai.copy(cp, classnames));
93 info = src.copyCode(cp, classnames, exceptions, this);
122 * @param classnames pairs of replaced and substituted
131 public AttributeInfo copy(ConstPool newCp, Map classnames)
135 return new CodeAttribute(newCp, this, classnames);
199 void renameClass(Map classnames) {
200 AttributeInfo.renameClass(attributes, classnames);
    [all...]
InnerClassesAttribute.java 204 * @param classnames pairs of replaced and substituted
207 public AttributeInfo copy(ConstPool newCp, Map classnames) {
222 innerClass = cp.copy(innerClass, newCp, classnames);
227 outerClass = cp.copy(outerClass, newCp, classnames);
232 innerName = cp.copy(innerName, newCp, classnames);
ClassFile.java 434 * @param classnames
440 public final void renameClass(Map classnames) {
441 String jvmNewThisName = (String)classnames.get(Descriptor
446 constPool.renameClass(classnames);
448 AttributeInfo.renameClass(attributes, classnames);
454 minfo.setDescriptor(Descriptor.rename(desc, classnames));
455 AttributeInfo.renameClass(minfo.getAttributes(), classnames); local
463 finfo.setDescriptor(Descriptor.rename(desc, classnames));
464 AttributeInfo.renameClass(finfo.getAttributes(), classnames); local
472 public final void getRefClasses(Map classnames) {
482 AttributeInfo.getRefClasses(minfo.getAttributes(), classnames); local
491 AttributeInfo.getRefClasses(finfo.getAttributes(), classnames); local
    [all...]
LocalVariableAttribute.java 113 void renameClass(Map classnames) {
121 desc = renameEntry(desc, classnames);
127 String renameEntry(String desc, Map classnames) {
128 return Descriptor.rename(desc, classnames);
291 * @param classnames should be null.
293 public AttributeInfo copy(ConstPool newCp, Map classnames) {
317 sig = Descriptor.rename(sig, classnames);
AnnotationsAttribute.java 162 public AttributeInfo copy(ConstPool newCp, Map classnames) {
163 Copier copier = new Copier(info, constPool, newCp, classnames);
279 void renameClass(Map classnames) {
280 Renamer renamer = new Renamer(info, getConstPool(), classnames);
288 void getRefClasses(Map classnames) { renameClass(classnames); }
410 Map classnames; field in class:AnnotationsAttribute.Renamer
424 classnames = map;
446 String newName = Descriptor.rename(name, classnames);
458 Map classnames; field in class:AnnotationsAttribute.Copier
    [all...]
  /frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java 77 Set<String> classNames = new TreeSet<String>();
79 findClasses(packageName, classNames, subpackageNames);
80 for (String className : classNames) {
107 private void findClasses(String packageName, Set<String> classNames,
120 findClassesInApk(entryName, packageName, classNames, subpackageNames);
125 scanForApkFiles(file, packageName, classNames, subpackageNames);
137 Set<String> classNames, Set<String> subpackageNames) throws IOException {
139 findClassesInApk(source.getPath(), packageName, classNames, subpackageNames);
144 scanForApkFiles(file, packageName, classNames, subpackageNames);
155 String packagePrefix, String pathPrefix, Set<String> classNames,
    [all...]
  /frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
TestCaseCollector.java 48 * @param classNames class must be subclass of {@link UiAutomatorTestCase}
51 public void addTestClasses(List<String> classNames) throws ClassNotFoundException {
52 for (String className : classNames) {
  /external/libcxx/src/
regex.cpp 207 struct classnames struct in namespace:__anon27395
217 const classnames ClassNames[] =
240 bool operator()(const classnames& x, const char* y)
260 const classnames* i =
261 _VSTD::lower_bound(begin(ClassNames), end(ClassNames), s, use_strcmp());
263 if (i != end(ClassNames) && strcmp(s, i->elem_) == 0)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
regex.cpp 207 struct classnames struct in namespace:__anon42869
217 const classnames ClassNames[] =
240 bool operator()(const classnames& x, const char* y)
260 const classnames* i =
261 _VSTD::lower_bound(begin(ClassNames), end(ClassNames), s, use_strcmp());
263 if (i != end(ClassNames) && strcmp(s, i->elem_) == 0)
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorFilter.cpp 45 const SpaceSplitString& classNames = element.classNames();
46 size_t count = classNames.size();
48 identifierHashes.append(classNames[i].impl()->existingHash() * ClassAttributeSalt);
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp 101 bool SharedStyleFinder::classNamesAffectedByRules(const SpaceSplitString& classNames) const
103 unsigned count = classNames.size();
105 if (m_features.hasSelectorForClass(classNames[i]))
134 if (candidate.hasClass() && classNamesAffectedByRules(candidate.classNames()))
141 } else if (element().classNames() != candidate.classNames()) {
313 m_elementAffectedByClassRules = element().hasClass() && classNamesAffectedByRules(element().classNames());

Completed in 867 milliseconds

1 2 3 4 5