HomeSort by relevance Sort by last modified time
    Searched defs:Flag (Results 26 - 50 of 89) sorted by null

12 3 4

  /external/libbrillo/brillo/
flag_helper.h 9 // delimeter, e.g. "--flag=value". An argument of "--" will terminate flag
10 // parsing, so that any subsequent arguments will be treated as non-flag
11 // arguments, regardless of prefix. Non-flag arguments are outside the scope
15 // The FlagHelper class will automatically take care of the --help flag, as
29 // with the name FLAGS_<name>, that can be used to access the flag's
39 // DEFINE_int32(example, 0, "Example int flag");
42 // printf("You passed in %d to --example command line flag\n",
66 // The corresponding class representation of a command line flag, used
69 class Flag {
    [all...]
flag_helper.cc 21 Flag::Flag(const char* name,
31 class HelpFlag : public brillo::Flag {
33 HelpFlag() : Flag("help", "false", "Show this help message", true) {}
45 : Flag(name, default_value, help, visible),
76 : Flag(name, default_value, help, visible), value_(value) {
92 : Flag(name, default_value, help, visible), value_(value) {
108 : Flag(name, default_value, help, visible), value_(value) {
124 : Flag(name, default_value, help, visible), value_(value) {
140 : Flag(name, default_value, help, visible), value_(value)
219 Flag* flag = df_it->second.get(); local
254 const Flag* flag = pair.second.get(); local
    [all...]
  /external/v8/src/compiler/
js-typed-lowering.h 35 enum Flag {
40 typedef base::Flags<Flag> Flags;
scheduler.h 31 enum Flag { kNoFlags = 0u, kSplitNodes = 1u << 1 };
32 typedef base::Flags<Flag> Flags;
typer.h 25 enum Flag {
29 typedef base::Flags<Flag> Flags;
machine-operator.h 113 enum Flag {
144 typedef base::Flags<Flag, unsigned> Flags;
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pv_amr_wb_type_defs.h 131 #ifndef Flag
132 typedef Int Flag;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_TransformDequantChromaDCFromPair_s.s 52 Flag RN 6
89 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop>
94 TST Flag, #0x10 ;// Computing (Flag & 0x10)
97 AND strOffset, cstOffset, Flag, LSL #1 ;// strOffset = (Flag & 15) < 1;
101 TST Flag, #0x20 ;// Computing (Flag & 0x20) to check, if we're done
102 LDRBEQ Flag, [pSrc], #1 ;// Flag = (OMX_U8) *pSrc++, for next iteratio
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_TransformDequantChromaDCFromPair_s.s 55 Flag RN 6
97 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop>
101 TST Flag, #0x10 ;// Computing (Flag & 0x10)
104 AND strOffset, cstOffset, Flag, LSL #1 ;// strOffset = (Flag & 15) < 1;
108 TST Flag, #0x20 ;// Computing (Flag & 0x20) to check, if we're done
109 LDRBEQ Flag, [pSrc], #1 ;// Flag = (OMX_U8) *pSrc++, for next iteratio
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
AccessSourcer.java 36 private enum Flag {
61 Flag(int value, int filter) {
90 * e.g. {@link Flag#ACC_SYNTHETIC}.
100 for (Flag f : Flag.values()) {
  /external/libchrome/base/memory/
weak_ptr.h 91 // Although Flag is bound to a specific SequencedTaskRunner, it may be
93 class BASE_EXPORT Flag : public RefCountedThreadSafe<Flag> {
95 Flag();
101 friend class base::RefCountedThreadSafe<Flag>;
103 ~Flag();
110 explicit WeakReference(const Flag* flag);
116 scoped_refptr<const Flag> flag_;
133 mutable scoped_refptr<WeakReference::Flag> flag_
    [all...]
  /external/libweave/third_party/chromium/base/memory/
weak_ptr.h 89 // Although Flag is bound to a specific SequencedTaskRunner, it may be
91 class Flag : public RefCountedThreadSafe<Flag> {
93 Flag();
99 friend class base::RefCountedThreadSafe<Flag>;
101 ~Flag();
107 explicit WeakReference(const Flag* flag);
113 scoped_refptr<const Flag> flag_;
130 mutable scoped_refptr<WeakReference::Flag> flag_
    [all...]
  /external/webrtc/webrtc/base/
flags.cc 25 // Implementation of Flag
27 Flag::Flag(const char* file, const char* name, const char* comment,
39 void Flag::SetToDefault() {
41 // flag variables are not really of type FlagValue and thus may
43 // of a flag variable for convenient access. Since union members
46 case Flag::BOOL:
49 case Flag::INT:
52 case Flag::FLOAT:
55 case Flag::STRING
193 Flag* flag = Lookup(name); local
    [all...]
flags.h 15 // where xxx is the flag type. Flags are referred to via FLAG_yyy,
16 // where yyy is the flag name. For intialization and iteration of flags,
18 // flag, see the Flag class.
39 // flag is defined via: DEFINE_bool(flag, "false", "some comment");.
71 // Each flag can be accessed programmatically via a Flag object.
72 class Flag {
77 Flag(const char* file, const char* name, const char* comment
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/python-gflags/
gflags2man.py 126 class Flag(object):
127 """The information about a single flag."""
130 """Create the flag object.
147 # match the start of a flag listing
158 # match the start of a flag listing
165 # match the start of a flag listing
278 flag = None
288 if flag:
289 modlist.append(flag)
293 flag = Non
    [all...]
  /external/chromium-trace/catapult/third_party/python_gflags/
gflags2man.py 126 class Flag(object):
127 """The information about a single flag."""
130 """Create the flag object.
147 # match the start of a flag listing
158 # match the start of a flag listing
165 # match the start of a flag listing
278 flag = None
288 if flag:
289 modlist.append(flag)
293 flag = Non
    [all...]
  /external/eigen/test/
nomalloc.cpp 183 enum { Flag = MatrixType::IsRowMajor ? Eigen::RowMajor : Eigen::ColMajor};
187 typedef Eigen::Ref<const Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic, Flag > > Ref;
  /external/llvm/include/llvm/Support/
ARMWinEH.h 27 RT_POP, /// return via pop {pc} (L flag must be set)
43 /// Flag : 2-bit field with the following meanings:
59 /// H : 1-bit flag indicating whether the function "homes" the integer parameter
67 /// R : 1-bit flag indicating whether the non-volatile registers are integer or
69 /// special case of the R-flag being set and Reg being set to 7 indicates
71 /// L : 1-bit flag indicating whether the function saves/restores the link
73 /// C : 1-bit flag indicating whether the function includes extra instructions
74 /// to setup a frame chain for fast walking. If this flag is set, r11 is
89 /// + L flag must be set since frame chaining requires r11 and lr
92 /// + L flag must be se
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 617 /// Chain/Flag as the input and updates them for the output Chain/Flag.
618 /// If the Flag pointer is NULL, no flag is used.
622 SDValue &Chain, SDValue *Flag,
642 if (!Flag) {
645 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
646 *Flag = P.getValue(2);
715 /// Chain/Flag as the input and updates them for the output Chain/Flag
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 160 unsigned Flag, Kind;
186 Flag = C->getZExtValue();
187 Kind = InlineAsm::getKind(Flag);
202 unsigned NumRegs = InlineAsm::getNumOperandRegisters(Flag);
210 if (Changed && InlineAsm::isUseOperandTiedToDef(Flag, DefIdx))
218 bool HasRC = InlineAsm::hasRegClassConstraint(Flag, RC);
295 Flag = InlineAsm::getFlagWord(Kind, 1 /* RegNum*/);
297 Flag = InlineAsm::getFlagWordForMatchingOp(Flag, DefIdx);
299 Flag = InlineAsm::getFlagWordForRegClass(Flag, SP::IntPairRegClassID)
    [all...]
  /external/llvm/tools/llvm-readobj/
StreamWriter.h 110 for (const auto &Flag : Flags) {
111 if (Flag.Value == 0)
115 if (Flag.Value & EnumMask1)
117 else if (Flag.Value & EnumMask2)
119 else if (Flag.Value & EnumMask3)
121 bool IsEnum = (Flag.Value & EnumMask) != 0;
122 if ((!IsEnum && (Value & Flag.Value) == Flag.Value) ||
123 (IsEnum && (Value & EnumMask) == Flag.Value)) {
124 SetFlags.push_back(Flag);
    [all...]
  /external/skia/bench/
MatrixBench.cpp 196 enum Flag {
  /external/llvm/lib/Target/BPF/
BPFISelLowering.cpp 341 // flag operands which copy the outgoing args into registers. The InFlag in
357 // Returns a chain & a flag for retval copy to use.
409 SDValue Flag;
417 Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(), OutVals[i], Flag);
421 Flag = Chain.getValue(1);
428 // Add the flag if we have it.
429 if (Flag.getNode())
430 RetOps.push_back(Flag);
573 // Insert Branch if Flag
  /external/v8/src/
flags.cc 24 #include "src/flag-definitions.h" // NOLINT(build/include)
28 #include "src/flag-definitions.h" // NOLINT(build/include)
32 // This structure represents a single entry in the flag system, with a pointer
33 // to the actual flag, default value, comment, etc. This is designed to be POD
35 struct Flag {
39 FlagType type_; // What type of flag, bool, int, or string.
40 const char* name_; // Name of the flag, ex "my_flag".
41 void* valptr_; // Pointer to the global flag variable.
44 bool owns_ptr_; // Does the flag own its string value?
115 // Compare this flag's current value against the default
    [all...]
  /external/icu/icu4c/source/i18n/
decNumberLocal.h 33 /* Conditional code flag -- set this to match hardware platform */
38 /* Conditional code flag -- set this to 1 for best performance */
68 #define Flag uint8_t
    [all...]

Completed in 2481 milliseconds

12 3 4