HomeSort by relevance Sort by last modified time
    Searched defs:flag (Results 51 - 75 of 1535) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /prebuilts/ndk/current/platforms/android-19/arch-arm/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
61 int *flag; member in struct:option
62 /* if flag not NULL, value to set *flag to; else return value */
  /toolchain/binutils/binutils-2.25/gas/config/
rx-parse.y 139 %type <regno> REG FLAG CREG BCND BMCND SCCND
140 %type <regno> flag bwl bw memex
143 %token REG FLAG CREG
484 | SETPSW flag
486 | CLRPSW flag
906 flag : { need_flag = 1; } FLAG { need_flag = 0; $$ = $2; } label
994 { "c", FLAG, 0 },
995 { "z", FLAG, 1 },
996 { "s", FLAG, 2 }
    [all...]
  /toolchain/binutils/binutils-2.25/include/
getopt.h 71 If the field `flag' is not NULL, it points to a variable that is set
77 option's `flag' field to zero and its `val' field to a nonzero
79 one). For long options that have a zero `flag' field, `getopt'
92 int *flag; member in struct:option
  /bionic/libc/include/
getopt.h 54 /* if not NULL, set *flag to val when option found */
55 int *flag; member in struct:option
56 /* if flag not NULL, value to set *flag to; else return value */
  /development/ndk/platforms/android-21/include/
getopt.h 54 /* if not NULL, set *flag to val when option found */
55 int *flag; member in struct:option
56 /* if flag not NULL, value to set *flag to; else return value */
  /device/huawei/angler/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_queue.c 68 int flag = 1; local
71 flag = 0;
75 return flag;
  /device/lge/bullhead/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_queue.c 68 int flag = 1; local
71 flag = 0;
75 return flag;
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_queue.c 68 int flag = 1; local
71 flag = 0;
75 return flag;
  /external/aac/libSBRenc/src/
env_bit.cpp 118 USHORT flag; local
121 flag = ((*crc) & crcMask) ? (1) : (0) ;
122 flag ^= (bValue & (1<<i)) ? (1) : (0) ;
125 if(flag) (*crc) ^= crcPoly;
  /external/boringssl/src/ssl/test/
test_config.cc 28 struct Flag {
29 const char *flag; member in struct:__anon5876::Flag
33 // FindField looks for the flag in |flags| that matches |flag|. If one is found,
37 T *FindField(TestConfig *config, const Flag<T> (&flags)[N], const char *flag) {
39 if (strcmp(flag, flags[i].flag) == 0) {
46 const Flag<bool> kBoolFlags[] = {
103 const Flag<std::string> kStringFlags[] =
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p8.cpp 44 bool flag; member in class:std_example::debug_flag
  /external/clang/test/OpenMP/
task_codegen.cpp 214 const bool flag = false; local
215 #pragma omp task final(flag)
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_flags_test.cc 25 static const char kFlagDesc[] = "flag description";
29 T flag = start_value; local
32 RegisterFlag(&parser, kFlagName, kFlagDesc, &flag);
36 EXPECT_EQ(final_value, flag);
42 const char *flag = start_value; local
45 RegisterFlag(&parser, kFlagName, kFlagDesc, &flag);
49 EXPECT_EQ(0, internal_strcmp(final_value, flag));
113 TestTwoFlags("flag=1 other_flag='zzz'", true, "zzz", "flag", "other_flag");
114 TestTwoFlags("other_flag='zzz' flag=1", true, "zzz", "flag", "other_flag")
    [all...]
  /external/icu/icu4c/source/common/unicode/
enumset.h 41 inline void set(T toSet, int32_t v) { fBools=(fBools&(~flag(toSet)))|(v?(flag(toSet)):0); }
42 inline int32_t get(T toCheck) const { return (fBools & flag(toCheck))?1:0; }
56 inline uint32_t flag(T toCheck) const { return (1<<(toCheck-minValue)); } function in class:EnumSet
  /external/libchrome/base/metrics/
sparse_histogram_unittest.cc 141 int flag; local
142 EXPECT_TRUE(iter.ReadInt(&flag));
143 EXPECT_EQ(HistogramBase::kIPCSerializationSourceFlag, flag);

Completed in 1889 milliseconds

1 23 4 5 6 7 8 91011>>