Searched defs:classes (Results 76 - 100 of 205) sorted by relevance

123456789

/external/wpa_supplicant_8/src/p2p/
H A Dp2p_utils.c384 int p2p_channel_select(struct p2p_channels *chans, const int *classes, argument
389 for (j = 0; classes == NULL || classes[j]; j++) {
396 if (classes == NULL || c->reg_class == classes[j]) {
407 if (classes == NULL)
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_utils.c384 int p2p_channel_select(struct p2p_channels *chans, const int *classes, argument
389 for (j = 0; classes == NULL || classes[j]; j++) {
396 if (classes == NULL || c->reg_class == classes[j]) {
407 if (classes == NULL)
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DLambdaDesugaring.java49 * Visitor that desugars classes with uses of lambdas into Java 7-looking code. This includes
250 "%s's lambda classes can't see interface method: %s",
312 // because the additional visibility protected gives doesn't help lambda classes, which are in
356 private static String[] toInternalNames(Class<?>[] classes) { argument
357 String[] result = new String[classes.length];
358 for (int i = 0; i < classes.length; ++i) {
359 result[i] = Type.getInternalName(classes[i]);
421 // Give generated classes to have more stable names (b/35643761). Use BSM's naming scheme
439 // For stateless lambda classes we'll generate a singleton instance that we can just load
502 // Lambdas in anonymous inner classes hav
[all...]
/external/guice/core/test/com/google/inject/
H A DJitBindingsTest.java601 private void ensureWorks(Injector injector, Class<?>... classes) { argument
602 for(int i = 0; i < classes.length; i++) {
603 injector.getInstance(classes[i]);
604 injector.getProvider(classes[i]).get();
605 injector.getBinding(classes[i]).getProvider().get();
610 private void ensureFails(Injector injector, GetBindingCheck getBinding, Class<?>... classes) { argument
611 for(int i = 0; i < classes.length; i++) {
613 injector.getInstance(classes[i]);
614 fail("should have failed tring to retrieve class: " + classes[i]);
616 assertContains(expected.getMessage(), jitFailed(classes[
655 ensureInChild(Injector injector, Class<?>... classes) argument
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-kern-table.hh98 inline unsigned int get_class (hb_codepoint_t g) const { return classes[g - firstGlyph]; }
103 return_trace (firstGlyph.sanitize (c) && classes.sanitize (c));
108 ArrayOf<UINT16> classes; /* Glyph classes. */ member in struct:OT::KernClassTable
110 DEFINE_SIZE_ARRAY (4, classes);
/external/javassist/src/main/javassist/
H A DClassPool.java47 * that have been created so that the consistency among modified classes
51 * should be recreated, for example, every hundred classes processed.
140 protected Hashtable classes; // should be synchronous field in class:ClassPool
181 this.classes = new Hashtable(INIT_HASH_SIZE);
187 classes.put(pt[i].getName(), pt[i]);
232 * caching of classes.
238 return (CtClass)classes.get(classname);
243 * caching of classes.
249 classes.put(classname, c);
254 * caching of classes
[all...]
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTracer.java39 public Tracer(ClassPool classes, ConstPool cp, int maxStack, int maxLocals, argument
41 classPool = classes;
/external/libcups/cups/
H A Dutil.c289 * 'cupsGetClasses()' - Get a list of printer classes from the default server.
292 * classes - use @link cupsGetDests@ instead.
297 int /* O - Number of classes */
298 cupsGetClasses(char ***classes) /* O - Classes */ argument
300 if (classes)
301 *classes = NULL;
/external/libffi/src/x86/
H A Dffi64.c70 /* All reference to register classes here is identical to the code in
74 These represent classes as documented by the PS ABI, with the
75 exception of SSESF, SSEDF classes, that are basically SSE class,
110 /* Rule #1: If both classes are equal, this is the resulting class. */
114 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is
121 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */
125 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */
133 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class,
151 sized containers, classes[0] will be NO_CLASS and 1 is returned.
156 classify_argument (ffi_type *type, enum x86_64_reg_class classes[], argument
312 examine_argument(ffi_type *type, enum x86_64_reg_class classes[MAX_CLASSES], _Bool in_return, int *pngpr, int *pnsse) argument
358 enum x86_64_reg_class classes[MAX_CLASSES]; local
425 enum x86_64_reg_class classes[MAX_CLASSES]; local
588 enum x86_64_reg_class classes[MAX_CLASSES]; local
615 enum x86_64_reg_class classes[MAX_CLASSES]; local
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenSchedule.h106 /// four types of classes:
152 // Is this class generated from a variants if existing classes? Instructions
153 // are never mapped directly to inferred scheduling classes.
188 // Map itinerary classes to per-operand resources.
261 // iterator access to the scheduling classes.
268 iterator_range<class_iterator> classes() { function in class:llvm::CodeGenSchedModels
271 iterator_range<const_class_iterator> classes() const { function in class:llvm::CodeGenSchedModels
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_reg_allocate.cpp115 /* Compute the total number of registers across all classes. */
147 int *classes = ralloc_array(compiler, int, class_count); local
157 /* Now, add the registers to their classes, and add the conflicts
203 classes[i] = ra_alloc_reg_class(regs);
213 ra_class_add_reg(regs, classes[i], reg);
227 ra_class_add_reg(regs, classes[i], reg);
279 for (unsigned i = 0; i < ARRAY_SIZE(compiler->fs_reg_sets[index].classes); i++)
280 compiler->fs_reg_sets[index].classes[i] = -1;
282 compiler->fs_reg_sets[index].classes[class_sizes[i] - 1] = classes[
[all...]
/external/mockito/src/test/java/org/mockitoutil/
H A DClassLoaders.java79 HashSet<Class<?>> classes = new HashSet<Class<?>>();
80 classes.add(safeGetClass("net.sourceforge.cobertura.coveragedata.TouchCollector"));
81 classes.add(safeGetClass("org.slf4j.LoggerFactory"));
83 classes.remove(null);
84 return classes.toArray(new Class<?>[classes.size()]);
195 public IsolatedURLClassLoaderBuilder withCodeSourceUrlOf(Class<?>... classes) { argument
196 for (Class<?> clazz : classes) {
238 throw new ClassNotFoundException(format("Can only load classes with prefixes : %s, but not : %s",
281 public ExcludingURLClassLoaderBuilder withCodeSourceUrlOf(Class<?>... classes) { argument
484 addFromFileBasedClassLoader(Set<String> classes, URI uri) argument
489 addFromInMemoryBasedClassLoader(Set<String> classes, URI uri) argument
[all...]
/external/oj-libjdwp/src/share/back/
H A DVirtualMachineImpl.c123 /* Count classes in theClasses which match signature */
125 /* Count classes written to the JDWP connection */
137 /* We want prepared classes, primitives, and arrays only */
148 /* Float interesting classes (those that
158 /* At this point matching prepared classes occupy
214 /* Count classes in theClasses which are prepared */
216 /* Count classes written to the JDWP connection */
226 /* We want prepared classes and arrays only */
228 /* Float interesting classes (those that
236 /* At this point prepared classes occup
300 jclass *classes; local
[all...]
/external/python/cpython2/Modules/_ctypes/libffi/src/x86/
H A Dffi64.c70 /* All reference to register classes here is identical to the code in
74 These represent classes as documented by the PS ABI, with the
75 exception of SSESF, SSEDF classes, that are basically SSE class,
110 /* Rule #1: If both classes are equal, this is the resulting class. */
114 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is
121 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */
125 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */
133 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class,
151 sized containers, classes[0] will be NO_CLASS and 1 is returned.
156 classify_argument (ffi_type *type, enum x86_64_reg_class classes[], argument
312 examine_argument(ffi_type *type, enum x86_64_reg_class classes[MAX_CLASSES], _Bool in_return, int *pngpr, int *pnsse) argument
358 enum x86_64_reg_class classes[MAX_CLASSES]; local
425 enum x86_64_reg_class classes[MAX_CLASSES]; local
588 enum x86_64_reg_class classes[MAX_CLASSES]; local
615 enum x86_64_reg_class classes[MAX_CLASSES]; local
[all...]
/external/python/cpython2/Modules/_ctypes/libffi_osx/x86/
H A Dx86-ffi64.c52 /* All reference to register classes here is identical to the code in
56 These represent classes as documented by the PS ABI, with the exception
57 of SSESF, SSEDF classes, that are basically SSE class, just gcc will
91 /* Rule #1: If both classes are equal, this is the resulting class. */
95 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is
103 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */
107 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */
116 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class,
134 sized containers, classes[0] will be NO_CLASS and 1 is returned.
141 enum x86_64_reg_class classes[],
139 classify_argument( ffi_type* type, enum x86_64_reg_class classes[], size_t byte_offset) argument
302 examine_argument( ffi_type* type, enum x86_64_reg_class classes[MAX_CLASSES], _Bool in_return, int* pngpr, int* pnsse) argument
361 enum x86_64_reg_class classes[MAX_CLASSES]; local
436 enum x86_64_reg_class classes[MAX_CLASSES]; local
638 enum x86_64_reg_class classes[MAX_CLASSES]; local
668 enum x86_64_reg_class classes[MAX_CLASSES]; local
[all...]
/external/python/cpython3/Modules/_ctypes/libffi/src/x86/
H A Dffi64.c70 /* All reference to register classes here is identical to the code in
74 These represent classes as documented by the PS ABI, with the
75 exception of SSESF, SSEDF classes, that are basically SSE class,
110 /* Rule #1: If both classes are equal, this is the resulting class. */
114 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is
121 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */
125 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */
133 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class,
151 sized containers, classes[0] will be NO_CLASS and 1 is returned.
156 classify_argument (ffi_type *type, enum x86_64_reg_class classes[], argument
312 examine_argument(ffi_type *type, enum x86_64_reg_class classes[MAX_CLASSES], _Bool in_return, int *pngpr, int *pnsse) argument
358 enum x86_64_reg_class classes[MAX_CLASSES]; local
425 enum x86_64_reg_class classes[MAX_CLASSES]; local
588 enum x86_64_reg_class classes[MAX_CLASSES]; local
615 enum x86_64_reg_class classes[MAX_CLASSES]; local
[all...]
/external/python/cpython3/Modules/_ctypes/libffi_osx/x86/
H A Dx86-ffi64.c52 /* All reference to register classes here is identical to the code in
56 These represent classes as documented by the PS ABI, with the exception
57 of SSESF, SSEDF classes, that are basically SSE class, just gcc will
91 /* Rule #1: If both classes are equal, this is the resulting class. */
95 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is
103 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */
107 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */
116 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class,
134 sized containers, classes[0] will be NO_CLASS and 1 is returned.
141 enum x86_64_reg_class classes[],
139 classify_argument( ffi_type* type, enum x86_64_reg_class classes[], size_t byte_offset) argument
304 examine_argument( ffi_type* type, enum x86_64_reg_class classes[MAX_CLASSES], _Bool in_return, int* pngpr, int* pnsse) argument
363 enum x86_64_reg_class classes[MAX_CLASSES]; local
438 enum x86_64_reg_class classes[MAX_CLASSES]; local
641 enum x86_64_reg_class classes[MAX_CLASSES]; local
671 enum x86_64_reg_class classes[MAX_CLASSES]; local
[all...]
/external/testng/src/main/java/org/testng/remote/strprotocol/
H A DTestResultMessage.java389 private String[] toString(Class<?>[] classes) { argument
390 if(null == classes) {
393 List<String> result= Lists.newArrayList(classes.length);
394 for(Class<?> cls: classes) {
/external/doclava/src/com/google/doclava/
H A DConverter.java57 ClassDoc[] classes = getClasses(r);
58 for (ClassDoc c : classes) {
65 // fill in the fields that reference other classes
82 mRootClasses = Converter.convertClasses(classes);
95 ClassDoc[] classDocs = r.classes();
271 public static ClassInfo[] convertClasses(ClassDoc[] classes) { argument
272 if (classes == null) return null;
273 int N = classes.length;
276 result[i] = Converter.obtainClass(classes[i]);
512 // Constructors of inner classes d
[all...]
H A DPackageInfo.java168 // TODO should return false if all classes are hidden but the package isn't.
190 * @param classes the Array of ClassInfo to be filtered
191 * @return an Array of ClassInfo without any hidden or removed classes
193 public static ClassInfo[] filterHiddenAndRemoved(ClassInfo[] classes) { argument
196 for (ClassInfo cl : classes) {
217 ClassInfo.makeLinkListHDF(data, base + ".classes", ordinaryClasses());
471 * <li>brand new classes that are not present in current package
472 * <li>stripped existing classes stripped where only newly added methods are kept
485 * <li>brand new classes that are not present in current package
486 * <li>stripped existing classes strippe
[all...]
/external/guava/guava/src/com/google/common/reflect/
H A DTypeToken.java356 * Returns the set of interfaces and classes that this type is or is a subtype of. The returned
544 * The set of interfaces and classes that {@code T} is or is a subtype of. {@link Object} is not
558 /** Returns the types that are classes. */
559 public TypeSet classes() { method in class:TypeToken.TypeSet
628 @Override public TypeSet classes() { method in class:TypeToken.InterfaceSet
629 throw new UnsupportedOperationException("interfaces().classes() not supported.");
641 private transient ImmutableSet<TypeToken<? super T>> classes; field in class:TypeToken.ClassSet
644 ImmutableSet<TypeToken<? super T>> result = classes;
649 return (classes = FluentIterable.from(collectedTypes)
657 @Override public TypeSet classes() { method in class:TypeToken.ClassSet
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dir3_ra.c43 * algo with interference classes. To handle the cases where we need
46 * with the corresponding registers in other classes.
48 * Additionally we create additional classes for half-regs, which
49 * do not conflict with the full-reg classes. We do need at least
52 * classes as half-reg frequently does not have enough precision
109 unsigned int classes[class_count]; member in struct:ir3_ra_reg_set
141 /* calculate # of regs across all classes: */
197 /* .. and classes */
200 set->classes[i] = ra_alloc_reg_class(set->regs);
205 ra_class_add_reg(set->regs, set->classes[
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_pair_regalloc.c288 const struct rc_class * classes,
295 if (classes[i].WritemaskCount > max_writemask_count) {
299 if (classes[i].Writemasks[j] == writemask) {
328 const struct rc_class * classes)
350 class_index = find_class(classes, writemask, 3);
354 c = classes[class_index];
435 class_index = find_class(classes, writemask,
439 return classes[class_index].ID;
699 /* Create the register classes */
704 /* Assign registers to the classes */
287 find_class( const struct rc_class * classes, unsigned int writemask, unsigned int max_writemask_count) argument
326 variable_get_class( struct rc_variable * variable, const struct rc_class * classes) argument
[all...]
/external/mesa3d/src/util/
H A Dregister_allocate.c55 * In this system, there are register classes each containing various
95 struct ra_class **classes; member in struct:ra_regs
260 * This can simplify code for setting up multiple register classes
282 * This can simplify code for setting up multiple register classes
306 regs->classes = reralloc(regs->regs, regs->classes, struct ra_class *,
310 regs->classes[regs->class_count] = class;
320 struct ra_class *class = regs->classes[c];
336 * Must be called after all conflicts and register classes have been
347 regs->classes[
[all...]
/external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/
H A DJavaApiConverter.java720 public Object getContent(Class[] classes) throws IOException { argument

Completed in 1890 milliseconds

123456789