HomeSort by relevance Sort by last modified time
    Searched refs:Behavior (Results 1 - 13 of 13) sorted by null

  /frameworks/base/include/androidfw/
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;
  /frameworks/base/libs/androidfw/
KeyCharacterMap.cpp 232 const Behavior* behavior; local
233 if (getKeyBehavior(keyCode, metaState, &key, &behavior)) {
234 result = behavior->character;
249 const Behavior* behavior; local
250 if (getKeyBehavior(keyCode, metaState, &key, &behavior)) {
251 if (behavior->fallbackKeyCode) {
252 outFallbackAction->keyCode = behavior->fallbackKeyCode;
253 outFallbackAction->metaState = metaState & ~behavior->metaState
373 const Behavior* behavior = key->firstBehavior; local
589 Behavior* behavior = new Behavior(); local
644 Behavior* behavior = firstBehavior; local
921 Behavior behavior; local
    [all...]
  /external/llvm/lib/VMCore/
Module.cpp 338 ConstantInt *Behavior = cast<ConstantInt>(Flag->getOperand(0));
341 Flags.push_back(ModuleFlagEntry(ModFlagBehavior(Behavior->getZExtValue()),
363 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
367 ConstantInt::get(Int32Ty, Behavior), MDString::get(Context, Key), Val
371 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
374 addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val));
  /external/llvm/include/llvm/
Module.h 157 /// module flags behavior values are supported:
159 /// Value Behavior
171 /// the Require behavior but different values. There may be
177 /// same ID to have the Override behavior but different
182 ModFlagBehavior Behavior;
186 : Behavior(B), Key(K), Val(V) {}
423 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Value *Val);
424 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 415 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
416 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
418 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
    [all...]
  /external/clang/lib/Parse/
ParseInit.cpp 500 switch (Result.Behavior) {
Parser.cpp     [all...]
ParseStmt.cpp     [all...]
ParseDeclCXX.cpp     [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 422 // Ignore flags with 'Require' behavior.
423 if (MFE.Behavior == Module::Require)
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/v8/test/mjsunit/
array-sort.js 258 // Behavior of sort with accessors is undefined. This accessor is
  /external/clang/include/clang/Parse/
Parser.h     [all...]

Completed in 371 milliseconds