/external/chromium_org/chrome/browser/sessions/ |
session_restore.h | 28 enum Behavior { 41 // Restores the last session. |behavior| is a bitmask of Behaviors, see it 52 uint32 behavior,
|
/external/llvm/lib/IR/ |
Module.cpp | 319 ConstantInt *Behavior = cast<ConstantInt>(Flag->getOperand(0)); 322 Flags.push_back(ModuleFlagEntry(ModFlagBehavior(Behavior->getZExtValue()), 357 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, 361 ConstantInt::get(Int32Ty, Behavior), MDString::get(Context, Key), Val 365 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, 368 addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val));
|
Verifier.cpp | 650 // Each module flag should have three arguments, the merge behavior (a 654 ConstantInt *Behavior = dyn_cast<ConstantInt>(Op->getOperand(0)); 656 Assert1(Behavior, 657 "invalid behavior operand in module flag (expected constant integer)", 659 unsigned BehaviorValue = Behavior->getZExtValue(); 668 "invalid behavior operand in module flag (unexpected constant)", 675 // These behavior types accept any value. 698 // These behavior types require the operand be an MDNode. [all...] |
/frameworks/native/include/input/ |
KeyCharacterMap.h | 139 struct Behavior { 140 Behavior(); 141 Behavior(const Behavior& other); 143 /* The next behavior in the list, or NULL if none. */ 144 Behavior* next; 146 /* The meta key modifiers for this behavior. */ 169 Behavior* firstBehavior; 227 const Key** outKey, const Behavior** outBehavior) const;
|
/external/llvm/include/llvm/IR/ |
Module.h | 165 /// module flag should be restricted to. This behavior can be used to 167 /// IDs with the **Override** behavior. 170 /// Uses the specified value, regardless of the behavior or value of the 185 ModFlagBehavior Behavior; 189 : Behavior(B), Key(K), Val(V) {} 432 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Value *Val); 433 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
|
/frameworks/native/libs/input/ |
KeyCharacterMap.cpp | 233 const Behavior* behavior; local 234 if (getKeyBehavior(keyCode, metaState, &key, &behavior)) { 235 result = behavior->character; 250 const Behavior* behavior; local 251 if (getKeyBehavior(keyCode, metaState, &key, &behavior)) { 252 if (behavior->fallbackKeyCode) { 253 outFallbackAction->keyCode = behavior->fallbackKeyCode; 254 outFallbackAction->metaState = metaState & ~behavior->metaState 374 const Behavior* behavior = key->firstBehavior; local 590 Behavior* behavior = new Behavior(); local 645 Behavior* behavior = firstBehavior; local 922 Behavior behavior; local [all...] |
/external/llvm/lib/Linker/ |
LinkModules.cpp | [all...] |
/external/clang/include/clang/Parse/ |
Parser.h | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/ |
compiler.jar | |