HomeSort by relevance Sort by last modified time
    Searched refs:classes (Results 76 - 100 of 468) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/program/
register_allocate.c 55 * In this system, there are register classes each containing various
93 struct ra_class **classes; member in struct:ra_regs
213 * This can simplify code for setting up multiple register classes
235 regs->classes = reralloc(regs->regs, regs->classes, struct ra_class *,
239 regs->classes[regs->class_count] = class;
249 struct ra_class *class = regs->classes[c];
256 * Must be called after all conflicts and register classes have been
265 regs->classes[b]->q = ralloc_array(regs, unsigned int, regs->class_count);
280 if (!regs->classes[c]->regs[rc]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Linkifier.js 61 * @param {string=} classes
64 linkifyLocation: function(sourceURL, lineNumber, columnNumber, classes)
68 return WebInspector.linkifyResourceAsNode(sourceURL, lineNumber, classes);
69 return this.linkifyRawLocation(rawLocation, classes);
74 * @param {string=} classes
77 linkifyRawLocation: function(rawLocation, classes)
82 var anchor = WebInspector.linkifyURLAsNode("", "", classes, false);
DOMPresentationUtils.js 57 var classes = classAttribute.split(/\s+/);
60 if (classes.length) {
65 for (var i = 0; i < classes.length; ++i) {
66 var className = classes[i];
  /external/javassist/src/main/javassist/scopedpool/
ScopedClassPool.java 121 classes.clear();
132 classes.remove(classname);
145 classes.remove(clazz.getName());
250 CtClass cached = (CtClass)classes.get(classname);
270 CtClass clazz = (CtClass)classes.get(classname);
303 // org.apache.jsp. For classes belonging to org.apache.jsp,
  /external/oprofile/pp/
opreport.cpp 207 cout << classes.cpuinfo << endl;
208 if (!classes.event.empty())
209 cout << classes.event << endl;
212 i < classes.v.size(); ++i) {
213 cout << classes.v[i].longname << endl;
244 for (size_t i = 0; i < classes.v.size(); ++i) {
245 string name = classes.v[i].name;
261 for (size_t i = 0; i < classes.v.size(); ++i) {
274 for (size_t i = 0; i < classes.v.size(); ++i) {
502 nr_classes = classes.v.size()
    [all...]
oparchive.cpp 106 string archive_path = classes.extra_found_images.get_archive_path();
116 list<inverted_profile> iprofiles = invert_profiles(classes);
118 report_image_errors(iprofiles, classes.extra_found_images);
129 classes.extra_found_images.find_image_path(it->image,
133 exe_name = classes.extra_found_images.strip_path_prefix(real_exe_name);
168 debug_filename, classes.extra_found_images)) {
  /build/core/
dex_preopt.mk 28 # $(1): the .jar or .apk to remove classes.dex
29 define dexpreopt-remove-classes.dex
30 $(hide) $(AAPT) remove $(1) classes.dex
60 $$(call dexpreopt-remove-classes.dex,$$@)
java.mk 59 ifneq ($(filter classes-compiled.jar classes.jar,$(LOCAL_BUILT_MODULE_STEM)),)
74 full_classes_compiled_jar_leaf := classes-no-debug-var.jar
75 built_dex_intermediate_leaf := classes-no-local.dex
77 full_classes_compiled_jar_leaf := classes-full-debug.jar
78 built_dex_intermediate_leaf := classes-with-local.dex
86 proguard_jar_leaf := proguard.classes.jar
88 proguard_jar_leaf := noproguard.classes.jar
92 jarjar_leaf := classes-jarjar.jar
107 full_classes_jar := $(intermediates.COMMON)/classes.ja
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
Serializer.java 55 * they can be sent across the network. Serializing classes should extend
98 // Registers the classes we already have serializers for.
123 // all the Collection classes go here
136 // All the Map classes go here
155 * When set to true, classes that do not have intrinsic IDs in their
168 public static void registerClasses(Class... classes) {
169 for( Class c : classes ) {
225 ArrayList<Class> classes = new ArrayList<Class>(); local
227 classes.addAll(findClasses(directory, pkgName));
230 SerializerRegistration[] registeredClasses = new SerializerRegistration[classes.size()]
243 List<Class> classes = new ArrayList<Class>(); local
    [all...]
  /cts/tools/cts-java-scanner-doclet/src/com/android/cts/javascannerdoclet/
CtsJavaScannerDoclet.java 67 ClassDoc[] classes = root.classes(); local
68 if (classes == null) {
74 for (ClassDoc clazz : classes) {
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 30 * Tests that native delegate classes implement all the required methods.
32 * This looks at {@link CreateInfo#DELEGATE_CLASS_NATIVES} to get the list of classes that
46 final String[] classes = CreateInfo.DELEGATE_CLASS_NATIVES; local
47 final int count = classes.length;
49 loadAndCompareClasses(classes[i], classes[i] + "_Delegate");
68 // load the classes
  /development/samples/ApiDemos/tests/
Android.mk 14 # automatically get all of its classes loaded into our environment.
  /development/tools/mkstubs/src/com/android/mkstubs/
SourceGenerator.java 34 * Given a set of already filtered classes, this filters out all private members and then
35 * generates the Java source for the remaining classes.
49 * Generate source for the stubbed classes, mostly for debug purposes.
53 Map<String, ClassReader> classes,
56 for (Entry<String, ClassReader> entry : classes.entrySet()) {
Main.java 51 /** Sets the name of the input jar, where to read classes from. Must not be null. */
56 /** Sets the name of the output jar, where to write classes to. Must not be null. */
61 /** Returns the name of the input jar, where to read classes from. */
66 /** Returns the name of the output jar, where to write classes to. */
256 System.out.println("Usage: mkstub [--h|--s|--v] input.jar output.jar [excluded-class @excluded-classes-file ...]");
265 "+com.package.Class[$Inner] or ...Class*: whole classes with optional glob\n" +
270 "-com.package.Class[$Inner] or ...Class*: whole classes with optional glob\n" +
280 * <li> Read the input Jar to get all its classes.
281 * <li> Filter out all classes that should not be included or that should be excluded.
282 * <li> Goes thru the classes, filters methods/fields and generate their sourc
290 Map<String, ClassReader> classes = aa.parseInputJar(p.getInputJarPath()); local
    [all...]
  /external/chromium_org/ppapi/cpp/documentation/
removefilesCPP.sh 9 rm classes.html
  /external/chromium_org/ppapi/generators/
idl_visitor.py 65 self.classes = classes
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryExporter.java 51 * 1. "number of classes" - four bytes - int value representing the number of
157 private HashMap<String, BinaryClassObject> classes field in class:BinaryExporter
176 classes.clear();
189 int classNum = classes.keySet().size();
195 for (String key : classes.keySet()) {
196 BinaryClassObject bco = classes.get(key);
256 byte[] aliasBytes = fixClassAlias(classes.get(savableName).alias, aliasSize);
292 logger.log(Level.INFO, "classes: {0}", classNum);
351 classes.put(clazz.getName(), bco);
361 BinaryClassObject bco = classes.get(object.getClass().getName())
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.h 88 vp9_prob classes[MV_CLASSES - 1]; member in struct:__anon23036
116 unsigned int classes[MV_CLASSES]; member in struct:__anon23038
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.ml 11 * representation, the classes in the VMCore library.
  /external/proguard/examples/annotations/
examples.pro 3 # specifying which classes and class members should be kept.
12 -injars classes(*.class)
34 # Preserve all native method names and the names of their classes.
41 # classes.
51 # If your code contains serializable classes that have to be backward
  /frameworks/base/tests/SmokeTest/tests/
Android.mk 12 # automatically get all of its classes loaded into our environment.
  /external/android-mock/tests/com/google/android/testing/mocking/
AndroidFrameworkMockGeneratorTest.java 38 private void cleanupGeneratedClasses(CtClass... classes) {
39 for (CtClass clazz : classes) {
75 private List<String> getClassNames(List<GeneratedClassFile> classes) {
77 for (GeneratedClassFile clazz : classes) {
91 List<GeneratedClassFile> classes = mockGenerator.createMocksForClass(Object.class, version); local
97 List<String> actualNames = getClassNames(classes);
  /external/doclava/res/assets/templates/
hierarchy.cs 25 <?cs def:hierarchy_list(classes) ?>
26 <?cs each:cl = classes ?>
55 <?cs call:hierarchy_list(classes) ?>
macros.cs 218 <?cs # A table of links to classes with descriptions, as in a package file or the nested classes ?><?cs
219 def:class_link_table(classes) ?><?cs
222 each:cl=classes ?>
231 <?cs # A list of links to classes, for use in the side navigation of classes when viewing a package (panel nav) ?><?cs
232 def:class_link_list(label, classes) ?><?cs
233 if:subcount(classes) ?>
236 each:cl=classes ?>
244 <?cs # A list of links to classes, for use in the side navigation of classes when viewing a class (panel nav) ?><?cs
    [all...]
  /prebuilts/tools/common/proguard/proguard4.7/examples/
android.pro 17 -injars bin/classes
19 -outjars bin/classes-processed.jar
28 -printmapping bin/classes-processed.map
32 #-printseeds bin/classes-processed.seeds
58 # Preserve all fundamental application classes.
76 # Preserve all classes that have special context constructors, and the
83 # Preserve all classes that have special context constructors, and the
96 # Preserve static fields of inner classes of R classes that might be accessed
110 # The Android Compatibility library references some classes that may not b
    [all...]

Completed in 644 milliseconds

1 2 34 5 6 7 8 91011>>