/external/chromium_org/remoting/protocol/ |
fake_authenticator.cc | 82 Type type, int round_trips, Action action, bool async) 85 action_(action), 166 FakeAuthenticator::Action action, bool async) 169 action_(action), async_(async) {
|
/external/chromium_org/third_party/ |
PRESUBMIT.py | 77 if 'D' in f.Action(): 124 if 'D' not in f.Action():
|
/external/clang/lib/Driver/ |
Job.cpp | 27 Command::Command(const Action &_Source, const Tool &_Creator, 134 FallbackCommand::FallbackCommand(const Action &Source_, const Tool &Creator_,
|
/external/clang/lib/Sema/ |
SemaAttr.cpp | 330 PragmaMsStackAction Action, 333 if (Action == PSK_Reset) { 337 if (Action & PSK_Push) 339 else if (Action & PSK_Pop) { 357 if (Action & PSK_Set) { 412 PragmaMsStackAction Action, 422 if (Action & PSK_Pop && Stack->Stack.empty()) 425 Stack->Act(PragmaLocation, Action, StackSlotLabel, SegmentName);
|
/external/clang/utils/TableGen/ |
TableGen.cpp | 59 cl::opt<ActionType> Action( 60 cl::desc("Action to perform:"), 144 switch (Action) {
|
/external/llvm/utils/TableGen/ |
TableGen.cpp | 49 Action(cl::desc("Action to perform:"), 95 switch (Action) {
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/ |
FwdLockEngine.cpp | 108 DrmConstraints* FwdLockEngine::onGetConstraints(int uniqueId, const String8* path, int action) { 114 (RightsStatus::RIGHTS_VALID == onCheckRightsStatus(uniqueId, *path, action))) { 265 int action) { 270 // Only Transfer action is not allowed for forward Lock files. 272 switch(action) { 273 case Action::DEFAULT: 274 case Action::PLAY: 275 case Action::RINGTONE: 276 case Action::OUTPUT: 277 case Action::PREVIEW [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
VisualRefactoringAction.java | 27 import org.eclipse.jface.action.Action; 28 import org.eclipse.jface.action.IAction; 59 * Examine the selection to determine if the action should be enabled or not. 64 public void selectionChanged(IAction action, ISelection selection) { 71 // At that point, just enable the action and later decide if it's valid when it actually 95 action.setEnabled((mTextSelection != null || mTreeSelection != null) 103 public abstract void run(IAction action); 141 private static class ActionWrapper extends Action { 154 VisualRefactoringAction action; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
PasteAction.java | 24 import org.eclipse.jface.action.Action; 41 public class PasteAction extends Action {
|
/external/chromium_org/chrome/browser/sync/ |
abstract_profile_sync_service_test.cc | 24 int64 node_id, syncer::ChangeRecord::Action action) { 26 record.action = action; 37 record.action = syncer::ChangeRecord::ACTION_DELETE;
|
/external/chromium_org/chrome/browser/ui/webui/ |
downloads_dom_handler.h | 124 void DangerPromptDone(int download_id, DownloadDangerPrompt::Action action);
|
/external/lldb/tools/debugserver/source/MacOSX/ |
MachException.h | 122 struct Action 129 uint8_t flags; // Action flags describing what to do with the exception
|
/frameworks/base/core/java/android/widget/ |
RemoteViews.java | 95 private ArrayList<Action> mActions; 192 * Exception to send when something goes wrong executing an action 236 private abstract static class Action implements Parcelable { 275 * action-specific merge rules. 288 HashMap<String, Action> map = new HashMap<String, Action>(); 290 mActions = new ArrayList<Action>(); 295 Action a = mActions.get(i); 299 ArrayList<Action> newActions = copy.mActions; 303 Action a = newActions.get(i) [all...] |
/art/runtime/arch/arm/ |
fault_handler_arm.cc | 103 bool NullPointerHandler::Action(int sig, siginfo_t* info, void* context) { 130 bool SuspensionHandler::Action(int sig, siginfo_t* info, void* context) { 199 bool StackOverflowHandler::Action(int sig, siginfo_t* info, void* context) {
|
/art/runtime/ |
fault_handler.cc | 97 static void SetUpArtAction(struct sigaction* action) { 98 action->sa_sigaction = art_fault_handler; 99 sigemptyset(&action->sa_mask); 100 action->sa_flags = SA_SIGINFO | SA_ONSTACK; 102 action->sa_restorer = nullptr; 108 struct sigaction action; local 109 SetUpArtAction(&action); 110 EnsureFrontOfChain(SIGSEGV, &action); 118 struct sigaction action; local 119 SetUpArtAction(&action); 341 struct sigaction action, oldsegvaction, oldabortaction; local [all...] |
/developers/samples/android/wearable/wear/Geofencing/Wearable/src/main/java/com/example/android/geofencing/ |
HomeListenerService.java | 28 import android.app.Notification.Action; 131 // This action will be embedded into the notification. 132 Action checkInAction = new Action(R.drawable.ic_action_check_in,
|
/development/samples/wearable/Geofencing/Wearable/src/main/java/com/example/android/wearable/geofencing/ |
HomeListenerService.java | 28 import android.app.Notification.Action; 131 // This action will be embedded into the notification. 132 Action checkInAction = new Action(R.drawable.ic_action_check_in,
|
/external/chromium_org/chrome/browser/ui/app_list/search/webstore/ |
webstore_result.cc | 139 actions.push_back(Action( 143 actions.push_back(Action( 147 actions.push_back(Action(
|
/external/chromium_org/tools/grit/grit/ |
scons.py | 239 import SCons.Action 243 build_action = SCons.Action.FunctionAction(_Builder, varlist=['RCFLAGS']) 244 emit_action = SCons.Action.FunctionAction(_Emitter, varlist=['RCFLAGS']) 246 builder = SCons.Builder.Builder(action=build_action, emitter=emit_action,
|
/external/clang/include/clang/Tooling/ |
Tooling.h | 66 /// \brief Perform an action for an invocation. 88 /// The caller takes ownership of the returned action. 137 /// \param ToolAction The action to run over the code. 148 /// \param ToolAction The action to run over the code. 188 /// \param FAction The action to be executed. Class takes ownership. 197 /// \param Action The action to be executed. 199 ToolInvocation(std::vector<std::string> CommandLine, ToolAction *Action, 226 ToolAction *Action; 239 /// a frontend action. One could install an additional command lin [all...] |
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
LinearSmoothScroller.java | 106 protected void onTargetFound(View targetView, RecyclerView.State state, Action action) { 112 action.update(-dx, -dy, time, mDecelerateInterpolator); 120 protected void onSeekTargetStep(int dx, int dy, RecyclerView.State state, Action action) { 134 updateActionForInterimTarget(action); 224 protected void updateActionForInterimTarget(Action action) { 245 action.update((int) (mInterimTargetDx * TARGET_SEEK_EXTRA_SCROLL_RATIO)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ListViewTypeMenu.java | 33 import org.eclipse.jface.action.Action; 34 import org.eclipse.jface.action.ActionContributionItem; 35 import org.eclipse.jface.action.IAction; 36 import org.eclipse.jface.action.Separator; 72 IAction action = new PickLayoutAction("Choose Layout...", KEY_LV_ITEM); local 73 new ActionContributionItem(action).fill(menu, -1); 84 action = new SetListTypeAction("Spinner Item", 86 new ActionContributionItem(action).fill(menu, -1); 87 action = new SetListTypeAction("Spinner Dropdown Item" [all...] |
PlayAnimationMenu.java | 33 import org.eclipse.jface.action.Action; 34 import org.eclipse.jface.action.ActionContributionItem; 35 import org.eclipse.jface.action.IAction; 36 import org.eclipse.jface.action.Separator; 108 IAction action = new PlayAnimationAction(title, animation, mFramework); local 109 new ActionContributionItem(action).fill(menu, -1); 118 // "Create New" action 132 private class PlayAnimationAction extends Action { 222 * Action which brings up the "Create new XML File" wizard, pre-selected with th [all...] |
/external/littlemock/src/com/google/testing/littlemock/ |
LittleMock.java | 118 return new BehaviourImpl(new Action() { 130 return new BehaviourImpl(new Action() { 140 return new BehaviourImpl(new Action() { 200 private static List<Action> sUnfinishedStubbingActions = new ArrayList<Action>(); 492 private final Action mAction; 494 private BehaviourImpl(Action action) { 495 mAction = action; 627 * The action to be associated with the stubbed method [all...] |
/external/clang/tools/scan-build/ |
ccc-analyzer | 422 my $Action = 'link'; 477 if ($Arg =~ /^-(E|MM?)$/) { $Action = 'preprocess'; } 478 elsif ($Arg eq '-c') { $Action = 'compile'; } 636 if ($Action eq 'compile' or $Action eq 'link') {
|