HomeSort by relevance Sort by last modified time
    Searched refs:SET (Results 51 - 75 of 187) sorted by null

1 23 4 5 6 7 8

  /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/proguard/bin/
proguard.bat 11 SET PROGUARD_HOME=%~dp0\..
proguardgui.bat 11 SET PROGUARD_HOME=%~dp0\..
retrace.bat 11 SET PROGUARD_HOME=%~dp0\..
  /external/llvm/tools/msbuild/
install.bat 4 set SUCCESS=0
10 set PLATFORM=None
13 IF %PLATFORM% == Win32 SET PLATFORM=x64
14 IF %PLATFORM% == None SET PLATFORM=Win32
18 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets"
20 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets"
24 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets"
26 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets"
30 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets"
32 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets"
    [all...]
uninstall.bat 8 set PLATFORM=None
11 IF %PLATFORM% == Win32 SET PLATFORM=x64
12 IF %PLATFORM% == None SET PLATFORM=Win32
15 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets"
19 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets"
24 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets"
31 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets"
39 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets"
46 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets"
54 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V140\Platforms\%PLATFORM%\PlatformToolsets"
    [all...]
  /external/curl/lib/
md5.c 247 * SET reads 4 input bytes in little-endian byte order and stores them
255 #define SET(n) \
258 SET(n)
260 #define SET(n) \
294 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
295 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
296 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
297 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
298 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
299 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1StreamParser.java 51 case BERTags.SET:
74 case BERTags.SET:
86 case BERTags.SET:
195 case BERTags.SET:
BERSet.java 7 * Indefinite length <code>SET</code> and <code>SET OF</code> constructs.
9 * Note: This does not know which syntax the set is!
11 * Length field has value 0x80, and the set ends with two bytes of: 0x00, 0x00.
24 * Create an empty SET.
31 * Create a SET containing one object.
33 * @param obj - a single object that makes up the set.
42 * Create a SET containing multiple objects.
43 * @param v a vector of objects making up the set.
52 * Create a SET from an array of objects
    [all...]
BERTags.java 15 public static final int SET = 0x11; // decimal 17
16 public static final int SET_OF = 0x11; // for completeness - used to model a SET of the same type.
DERSet.java 7 * A DER encoded SET object
22 * create an empty set
29 * create a set containing one object
30 * @param obj the object to go in the set
39 * create a set containing a vector of objects.
40 * @param v the vector of objects to make up the set.
49 * create a set containing an array of objects.
50 * @param a the array of objects to make up the set.
98 * ASN.1 descriptions given. Rather than just outputting SET,
108 out.write(BERTags.SET | BERTags.CONSTRUCTED)
    [all...]
DLSet.java 7 * The DLSet encodes ASN.1 SET value without element ordering,
12 * <h4>8.11 Encoding of a set value </h4>
13 * <b>8.11.1</b> The encoding of a set value shall be constructed
17 * ASN.1 definition of the set type, in an order chosen by the sender,
25 * NOTE &mdash; The order of data values in a set value is not significant,
29 * <h4>9.3 Set components</h4>
30 * The encodings of the component values of a set value shall
39 * <h4>10.3 Set components</h4>
40 * The encodings of the component values of a set value shall appear
44 * NOTE &mdash; Where a component of the set is an untagged choice type
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
ASN1StreamParser.java 53 case BERTags.SET:
76 case BERTags.SET:
88 case BERTags.SET:
197 case BERTags.SET:
BERSet.java 8 * Indefinite length <code>SET</code> and <code>SET OF</code> constructs.
10 * Note: This does not know which syntax the set is!
12 * Length field has value 0x80, and the set ends with two bytes of: 0x00, 0x00.
26 * Create an empty SET.
33 * Create a SET containing one object.
35 * @param obj - a single object that makes up the set.
44 * Create a SET containing multiple objects.
45 * @param v a vector of objects making up the set.
54 * Create a SET from an array of objects
    [all...]
BERTags.java 19 public static final int SET = 0x11; // decimal 17
20 public static final int SET_OF = 0x11; // for completeness - used to model a SET of the same type.
DERSet.java 8 * A DER encoded SET object
24 * create an empty set
31 * create a set containing one object
32 * @param obj the object to go in the set
41 * create a set containing a vector of objects.
42 * @param v the vector of objects to make up the set.
52 * create a set containing an array of objects.
53 * @param a the array of objects to make up the set.
101 * ASN.1 descriptions given. Rather than just outputting SET,
111 out.write(BERTags.SET | BERTags.CONSTRUCTED)
    [all...]
  /external/libcap/contrib/
pcaps4convenience 14 # set and the applications are accepting the needed PCaps through
15 # their Inheritance set.
16 # a user who has not the PCaps in his Inheritance set CAN NOT
18 # --> SET=ie
19 # (if SET=pe than you relax the security level of your machine)
51 # we put it into this set
53 SET=ie
99 setcap $2=$SET $i
167 echo "run successful into their Inheritance and Effective Set."
169 echo "necessary POSIX Capabilities in his Inheritable Set. This might be done
    [all...]
pcaps4suid0 11 # implement idea of change between permitted/effective set
12 # or iherited/effective set (pam_cap.so)
18 # POSIX Capabilities through their Permitted and Effective Set
20 # --> use SET=pe
24 # POSIX Capabilities through their Inherited and Effective Set
25 # --> PAM support to set Inheritance set through pam_cap.so
26 # --> use SET=ie
64 # we put it into this set
66 #SET=p
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
EDEmitter.cpp 104 void set(const char *string) { function in class:__anon41117::LiteralConstantEmitter
241 #define SET(flag) { type->set(flag); return 0; }
243 #define REG(str) if (name == str) SET("kOperandTypeRegister");
244 #define MEM(str) if (name == str) SET("kOperandTypeX86Memory");
245 #define LEA(str) if (name == str) SET("kOperandTypeX86EffectiveAddress");
246 #define IMM(str) if (name == str) SET("kOperandTypeImmediate");
247 #define PCR(str) if (name == str) SET("kOperandTypeX86PCRelative");
252 /// @arg flags - The type object to set
343 #undef SET
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/msbuild/
install.bat 4 set SUCCESS=0
18 SET VCTargets=%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Professional\Common7\IDE\VC\VCTargets
27 SET PlatformToolsets=%VCTargets%\Platforms\x64\PlatformToolsets
36 SET PlatformToolsets=%VCTargets%\Platforms\Win32\PlatformToolsets
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
timemodule.c 254 #define SET(i,val) PyStructSequence_SET_ITEM(v, i, PyInt_FromLong((long) val))
256 SET(0, p->tm_year + 1900);
257 SET(1, p->tm_mon + 1); /* Want January == 1 */
258 SET(2, p->tm_mday);
259 SET(3, p->tm_hour);
260 SET(4, p->tm_min);
261 SET(5, p->tm_sec);
262 SET(6, (p->tm_wday + 6) % 7); /* Want Monday == 0 */
263 SET(7, p->tm_yday + 1); /* Want January, 1 == 1 */
264 SET(8, p->tm_isdst);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
timemodule.c 254 #define SET(i,val) PyStructSequence_SET_ITEM(v, i, PyInt_FromLong((long) val))
256 SET(0, p->tm_year + 1900);
257 SET(1, p->tm_mon + 1); /* Want January == 1 */
258 SET(2, p->tm_mday);
259 SET(3, p->tm_hour);
260 SET(4, p->tm_min);
261 SET(5, p->tm_sec);
262 SET(6, (p->tm_wday + 6) % 7); /* Want Monday == 0 */
263 SET(7, p->tm_yday + 1); /* Want January, 1 == 1 */
264 SET(8, p->tm_isdst);
    [all...]
  /external/python/cpython2/Modules/
timemodule.c 254 #define SET(i,val) PyStructSequence_SET_ITEM(v, i, PyInt_FromLong((long) val))
256 SET(0, p->tm_year + 1900);
257 SET(1, p->tm_mon + 1); /* Want January == 1 */
258 SET(2, p->tm_mday);
259 SET(3, p->tm_hour);
260 SET(4, p->tm_min);
261 SET(5, p->tm_sec);
262 SET(6, (p->tm_wday + 6) % 7); /* Want Monday == 0 */
263 SET(7, p->tm_yday + 1); /* Want January, 1 == 1 */
264 SET(8, p->tm_isdst)
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1SetOf.java 23 * Implements ASN.1 functionality. An asn1 set is a collection where order is
31 return Asn1Tag.SET;
  /external/autotest/contrib/
remove_old_tests_in_tko.sql 9 SET @cutoff_date = DATE_SUB(CURDATE(),INTERVAL 180 DAY);
19 -- Some tests may have started_time being NULL, but with finished_time set.
34 SET @cutoff_date = DATE_SUB(@cutoff_date,INTERVAL 5 DAY);

Completed in 591 milliseconds

1 23 4 5 6 7 8