HomeSort by relevance Sort by last modified time
    Searched defs:SET (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /toolchain/binutils/binutils-2.25/include/gdb/
signals.h 35 (1) This set of signals represents a widely-accepted attempt to
39 recognized that this set of signals has limitations (such as not
52 #define SET(symbol, constant, name, string) \
55 #undef SET
  /external/dagger2/core/src/main/java/dagger/
Provides.java 45 * The method's return type forms the generic type argument of a {@code Set<T>}, and the
46 * returned value is contributed to the set. The object graph will pass dependencies to the
47 * method as parameters. The {@code Set<T>} produced from the accumulation of values will be
51 SET,
54 * Like {@link #SET}, except the method's return type is {@code Set<T>}, where any values are
55 * contributed to the set. An example use is to provide a default empty set binding, which is
56 * otherwise not possible using {@link #SET}.
  /external/dagger2/producers/src/main/java/dagger/producers/
Produces.java 46 * The method's resulting type forms the generic type argument of a {@code Set<T>}, and the
47 * returned value or future is contributed to the set. The {@code Set<T>} produced from the
50 SET,
53 * Like {@link #SET}, except the method's return type is either {@code Set<T>} or
54 * {@code Set<ListenableFuture<T>>}, where any values are contributed to the set. An example use
55 * is to provide a default empty set binding, which is otherwise not possible using
56 * {@link #SET}
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ContributionBinding.java 37 import java.util.Set;
60 Set<DependencyRequest> implicitDependencies() {
73 /** Represents set bindings. */
74 SET,
85 case SET:
87 return ContributionType.SET;
241 Set<ContributionType> types = EnumSet.noneOf(ContributionType.class);
258 Set<ContributionBinding> mapBindings) {
276 indexMapBindingsByAnnotationType(Set<ContributionBinding> mapBindings) {
  /external/freetype/src/base/
md5.c 66 * SET reads 4 input bytes in little-endian byte order and stores them
74 #define SET(n) \
77 SET(n)
79 #define SET(n) \
113 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
114 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
115 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
116 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
117 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
118 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
md5.c 66 * SET reads 4 input bytes in little-endian byte order and stores them
74 #define SET(n) \
77 SET(n)
79 #define SET(n) \
113 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
114 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
115 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
116 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
117 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
118 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12
    [all...]
  /external/llvm/lib/Support/
MD5.cpp 62 // SET reads 4 input bytes in little-endian byte order and stores them
64 #define SET(n) \
95 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
96 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
97 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
98 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
99 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
100 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
101 STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
102 STEP(F, b, c, d, a, SET(7), 0xfd469501, 22
    [all...]
  /external/pdfium/third_party/freetype/src/base/
md5.c 66 * SET reads 4 input bytes in little-endian byte order and stores them
74 #define SET(n) \
77 SET(n)
79 #define SET(n) \
113 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
114 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
115 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
116 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
117 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
118 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
obj-ecoff.c 33 /* Set section VMAs and GP values before reloc processing. */
41 /* Set the section VMA values. We force the .sdata and .sbss
124 as_fatal (_("Can't set GP value"));
131 as_fatal (_("Can't set register masks"));
145 char *set; local
153 set = buf;
154 #define SET(ptr, count, type, size) \
159 ecoff_data (stdoutput)->debug_info.ptr = (type) set; \
160 set += hdr->count * size; \
163 SET (line, cbLine, unsigned char *, sizeof (unsigned char))
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERTags.java 15 public static final int SET = 0x11;
16 public static final int SET_OF = 0x11; // for completeness - used to model a SET of the same type.
  /external/compiler-rt/lib/tsan/rtl/
tsan_md5.cc 27 #define SET(n) \
30 SET(n)
58 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
59 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
60 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
61 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
62 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
63 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
64 STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
65 STEP(F, b, c, d, a, SET(7), 0xfd469501, 22
    [all...]
  /external/curl/lib/
md4.c 83 * SET reads 4 input bytes in little-endian byte order and stores them
91 #define SET(n) \
94 SET(n)
96 #define SET(n) \
130 STEP(F, a, b, c, d, SET(0), 3)
131 STEP(F, d, a, b, c, SET(1), 7)
132 STEP(F, c, d, a, b, SET(2), 11)
133 STEP(F, b, c, d, a, SET(3), 19)
134 STEP(F, a, b, c, d, SET(4), 3)
135 STEP(F, d, a, b, c, SET(5), 7
    [all...]
md5.c 252 * SET reads 4 input bytes in little-endian byte order and stores them
260 #define SET(n) \
263 SET(n)
265 #define SET(n) \
299 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
300 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
301 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
302 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
303 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
304 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
Asn1Tag.java 18 SET,
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Label.java 35 * label such as a token or character. A label can be a set of char or
52 /** label is a set of tokens or char */
53 public static final int SET = -3;
120 /** A set of token types or character codes if label==SET */
128 /** Make a set label */
131 this.label = SET;
141 this.label = SET;
162 label=SET;
206 return label==SET;
    [all...]
  /external/minijail/
bpf.h 36 SET
45 #define SECCOMP_RET_ERRNO 0x00050000U /* return -1 and set errno */
  /external/opencv3/samples/cpp/
grabcut.cpp 22 "\tleft mouse button - set rectangle\n"
24 "\tCTRL+left mouse button - set GC_BGD pixels\n"
25 "\tSHIFT+left mouse button - set GC_FGD pixels\n"
27 "\tCTRL+right mouse button - set GC_PR_BGD pixels\n"
28 "\tSHIFT+right mouse button - set GC_PR_FGD pixels\n" << endl;
52 enum{ NOT_SET = 0, IN_PROCESS = 1, SET = 2 };
128 if( rectState == IN_PROCESS || rectState == SET )
180 case EVENT_LBUTTONDOWN: // set rect or GC_BGD(GC_FGD) labels
189 if ( (isb || isf) && rectState == SET )
193 case EVENT_RBUTTONDOWN: // set GC_PR_BGD(GC_PR_FGD) label
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
Tag.java 26 import java.util.Set;
35 public static final Tag SET = new Tag(PREFIX + "set");
47 public static final Map<Tag, Set<Class<?>>> COMPATIBILITY_MAP;
49 COMPATIBILITY_MAP = new HashMap<Tag, Set<Class<?>>>();
50 Set<Class<?>> floatSet = new HashSet<Class<?>>();
56 Set<Class<?>> intSet = new HashSet<Class<?>>();
62 Set<Class<?>> timestampSet = new HashSet<Class<?>>();
150 Set<Class<?>> set = COMPATIBILITY_MAP.get(this) local
    [all...]
  /external/v8/tools/oom_dump/
oom_dump.cc 50 #define SET(type) names[type] = #type;
51 INSTANCE_TYPE_LIST(SET)
52 #undef SET
  /bionic/libc/bionic/
fts.c 63 #define SET(opt) (sp->fts_options |= (opt))
96 SET(FTS_NOCHDIR);
151 * finished the node before the root(s); set p->fts_info to FTS_INIT
167 SET(FTS_NOCHDIR);
189 * actually enter the directory until after the preorder visit, set
268 /* Set current node pointer. */
326 * to make the names come out right, and set the parent errno
328 * Set the FTS_DONTCHDIR flag so that when we logically change
363 SET(FTS_STOP);
402 * Done; free everything up and set errno to 0 so the use
    [all...]
  /external/elfutils/libdw/
dwarf_getsrclines.c 111 /* Set the line information. For some fields we use bitfields,
120 /* Set the line information. For some fields we use bitfields,
124 #define SET(field) \
131 SET (addr);
132 SET (op_index);
133 SET (file);
134 SET (line);
135 SET (column);
136 SET (is_stmt);
137 SET (basic_block)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest.java 52 import java.util.Set;
133 static final Set<String> SET = new HashSet<String>(Arrays.asList(new String[] { "one",
180 CALENDAR.set(1999, Calendar.JUNE, 23, 15, 47, 13);
181 CALENDAR.set(Calendar.MILLISECOND, 553);
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_location_GnssLocationProvider.cpp 133 // Some drives doesn't set the size field correctly. Assume GpsSvStatus_v1
650 // this must be set before calling into the HAL library
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger-producers/2.0-beta/
dagger-producers-2.0-beta.jar 
  /toolchain/binutils/binutils-2.25/bfd/
ecofflink.c 599 #define SET(name, indx) \
606 SET (".text", scText);
607 SET (".data", scData);
608 SET (".bss", scBss);
609 SET (".sdata", scSData);
610 SET (".sbss", scSBss);
612 SET (".rdata", scRData);
613 SET (".rodata", scRData);
614 SET (".init", scInit);
615 SET (".fini", scFini)
    [all...]

Completed in 2740 milliseconds

1 2 3 4 5