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

12 3 4 5 6 7 8 91011>>

  /external/clang/lib/Driver/
Action.cpp 1 //===--- Action.cpp - Abstract compilation steps --------------------------===//
10 #include "clang/Driver/Action.h"
18 Action::~Action() {}
20 const char *Action::getClassName(ActionClass AC) {
46 : Action(InputClass, _Type), Input(_Input) {
51 BindArchAction::BindArchAction(Action *Input, const char *_ArchName)
52 : Action(BindArchClass, Input), ArchName(_ArchName) {}
56 CudaDeviceAction::CudaDeviceAction(Action *Input, clang::CudaArch Arch,
58 : Action(CudaDeviceClass, Input), GpuArch(Arch), AtTopLevel(AtTopLevel) {
    [all...]
  /external/libyuv/files/
setup_links.py 127 class Action(object):
132 """Log a description of this action.
141 """Execute the action, recording what we did to links_db, if necessary."""
145 class Remove(Action):
166 class Rmtree(Action):
187 class Makedirs(Action):
201 class Symlink(Action):
258 # First, make a plan of action
280 for action in actions:
281 action.announce(planning=True
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.h 69 unsigned Action;
72 /// Compute the actions table and gather the first action index for each
82 /// containing the call, a non-zero landing pad and an appropriate action.
84 /// zero for the landing pad and the action. Calls marked 'nounwind' have
101 /// 2. The action table, in our case, is composed of pairs of type ids
102 /// and next action offset. Starting with the action index from the
105 /// on to the landing pad. Otherwise the next action is looked up. This
106 /// chain is terminated with a next action of zero. If no type id is
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVDecorate.cpp 29 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
193 auto Action = [=](){
216 auto Res = Action();
  /external/spirv-llvm/tools/llvm-spirv/
llvm-spirv.cpp 28 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
220 auto Action = [&](llvm::raw_ostream &OFS) {
231 return Action(OFS);
233 return Action(outs());
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfException.h 56 /// 2. The action table, in our case, is composed of pairs of type ids
57 /// and next action offset. Starting with the action index from the
60 /// on to the landing pad. Otherwise the next action is looked up. This
61 /// chain is terminated with a next action of zero. If no type id is
98 unsigned Action;
102 /// action index for each landing pad site.
113 /// appropriate action. The entry for an ordinary call has a try-range
114 /// containing the call and zero for the landing pad and the action. Calls
  /external/swiftshader/third_party/LLVM/utils/TableGen/
TableGen.cpp 63 Action(cl::desc("Action to perform:"),
110 switch (Action) {
183 assert(1 && "Invalid Action");
196 LLVMTableGenAction Action;
197 return TableGenMain(argv[0], Action);
  /external/webrtc/
setup_links.py 148 class Action(object):
153 """Log a description of this action.
162 """Execute the action, recording what we did to links_db, if necessary."""
166 class Remove(Action):
187 class Rmtree(Action):
208 class Makedirs(Action):
222 class Symlink(Action):
279 # First, make a plan of action
301 for action in actions:
302 action.announce(planning=True
    [all...]
  /external/webrtc/webrtc/test/
rtp_rtcp_observer.h 33 enum Action {
42 virtual Action OnSendRtp(const uint8_t* packet, size_t length) {
46 virtual Action OnSendRtcp(const uint8_t* packet, size_t length) {
50 virtual Action OnReceiveRtp(const uint8_t* packet, size_t length) {
54 virtual Action OnReceiveRtcp(const uint8_t* packet, size_t length) {
95 RtpRtcpObserver::Action action; variable
98 action = observer_->OnSendRtp(packet, length);
100 action = observer_->OnReceiveRtp(packet, length);
103 switch (action) {
115 RtpRtcpObserver::Action action; variable
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
EhFrameReader.h 54 /// Action - the transition function of autometa.
58 typedef bool (*Action)(EhFrame& pEhFrame,
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
Action.java 22 * An action contains one or two lines of text, an optional image and an optional id. It may also
25 public class Action {
37 * Constructor for an Action.
39 * @param id The id of the Action.
41 public Action(long id) {
46 * Constructor for an Action.
48 * @param id The id of the Action.
49 * @param label The label to display for the Action.
51 public Action(long id, CharSequence label) {
56 * Constructor for an Action
    [all...]
  /packages/apps/Car/libs/car-media-common/src/com/android/car/media/common/
PlayPauseStopImageView.java 53 public @interface Action {}
55 /** Used when no action can be executed at this time */
59 /** Used when the media source is playing and it only support stop action */
61 /** Used when the media source is playing and it supports pause action */
75 * Sets the action to display on this view
77 * @param action one of {@link Action}
79 public void setAction(@Action int action) {
80 mAction = action;
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/error/
VoicemailErrorMessage.java 50 private final List<Action> actions;
56 public static class Action {
62 public Action(CharSequence text, View.OnClickListener listener) {
66 public Action(CharSequence text, View.OnClickListener listener, boolean raised) {
94 public List<Action> getActions() {
117 public VoicemailErrorMessage(CharSequence title, CharSequence description, Action... actions) {
122 CharSequence title, CharSequence description, @Nullable List<Action> actions) {
129 public static Action createChangeAirplaneModeAction(final Context context) {
130 return new Action(
144 public static Action createSetPinAction
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/actions/
Action.java 32 public abstract class Action {
41 public Action(Context context, PackageManager pm, DocumentInfo doc) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/GlobalISel/
LegalizerInfo.h 95 /// Sentinel value for when no action was found in the specified table.
103 /// should be handled. This must be called after all "set*Action"methods but
107 /// More friendly way to set an action for common types that have an LLT
109 void setAction(const InstrAspect &Aspect, LegalizeAction Action) {
114 Actions[Aspect.Opcode - FirstOp][Aspect.Idx][Aspect.Type] = Action;
121 /// desired action in the first step is controlled by this function.
123 LegalizeAction Action) {
125 ScalarInVectorActions[std::make_pair(Opcode, ScalarTy)] = Action;
129 /// Determine what action should be taken to legalize the given generic
137 /// Determine what action should be taken to legalize the given generi
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/GlobalISel/
LegalizerInfo.h 95 /// Sentinel value for when no action was found in the specified table.
103 /// should be handled. This must be called after all "set*Action"methods but
107 /// More friendly way to set an action for common types that have an LLT
109 void setAction(const InstrAspect &Aspect, LegalizeAction Action) {
114 Actions[Aspect.Opcode - FirstOp][Aspect.Idx][Aspect.Type] = Action;
121 /// desired action in the first step is controlled by this function.
123 LegalizeAction Action) {
125 ScalarInVectorActions[std::make_pair(Opcode, ScalarTy)] = Action;
129 /// Determine what action should be taken to legalize the given generic
137 /// Determine what action should be taken to legalize the given generi
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/GlobalISel/
LegalizerInfo.h 95 /// Sentinel value for when no action was found in the specified table.
103 /// should be handled. This must be called after all "set*Action"methods but
107 /// More friendly way to set an action for common types that have an LLT
109 void setAction(const InstrAspect &Aspect, LegalizeAction Action) {
114 Actions[Aspect.Opcode - FirstOp][Aspect.Idx][Aspect.Type] = Action;
121 /// desired action in the first step is controlled by this function.
123 LegalizeAction Action) {
125 ScalarInVectorActions[std::make_pair(Opcode, ScalarTy)] = Action;
129 /// Determine what action should be taken to legalize the given generic
137 /// Determine what action should be taken to legalize the given generi
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/GlobalISel/
LegalizerInfo.h 95 /// Sentinel value for when no action was found in the specified table.
103 /// should be handled. This must be called after all "set*Action"methods but
107 /// More friendly way to set an action for common types that have an LLT
109 void setAction(const InstrAspect &Aspect, LegalizeAction Action) {
114 Actions[Aspect.Opcode - FirstOp][Aspect.Idx][Aspect.Type] = Action;
121 /// desired action in the first step is controlled by this function.
123 LegalizeAction Action) {
125 ScalarInVectorActions[std::make_pair(Opcode, ScalarTy)] = Action;
129 /// Determine what action should be taken to legalize the given generic
137 /// Determine what action should be taken to legalize the given generi
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/GlobalISel/
LegalizerInfo.h 95 /// Sentinel value for when no action was found in the specified table.
103 /// should be handled. This must be called after all "set*Action"methods but
107 /// More friendly way to set an action for common types that have an LLT
109 void setAction(const InstrAspect &Aspect, LegalizeAction Action) {
114 Actions[Aspect.Opcode - FirstOp][Aspect.Idx][Aspect.Type] = Action;
121 /// desired action in the first step is controlled by this function.
123 LegalizeAction Action) {
125 ScalarInVectorActions[std::make_pair(Opcode, ScalarTy)] = Action;
129 /// Determine what action should be taken to legalize the given generic
137 /// Determine what action should be taken to legalize the given generi
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/GlobalISel/
LegalizerInfo.h 95 /// Sentinel value for when no action was found in the specified table.
103 /// should be handled. This must be called after all "set*Action"methods but
107 /// More friendly way to set an action for common types that have an LLT
109 void setAction(const InstrAspect &Aspect, LegalizeAction Action) {
114 Actions[Aspect.Opcode - FirstOp][Aspect.Idx][Aspect.Type] = Action;
121 /// desired action in the first step is controlled by this function.
123 LegalizeAction Action) {
125 ScalarInVectorActions[std::make_pair(Opcode, ScalarTy)] = Action;
129 /// Determine what action should be taken to legalize the given generic
137 /// Determine what action should be taken to legalize the given generi
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Request.java 60 static class Action {
63 private Action(String name) { this.name = name; }
66 static Action GET = new Action("GET");
67 static Action PUT = new Action("PUT");
68 static Action POST = new Action("POST");
69 static Action HEAD = new Action("HEAD")
84 private Action action; field in class:Request
88 Action action() { return action; } method in class:Request
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Request.java 60 static class Action {
63 private Action(String name) { this.name = name; }
66 static Action GET = new Action("GET");
67 static Action PUT = new Action("PUT");
68 static Action POST = new Action("POST");
69 static Action HEAD = new Action("HEAD")
84 private Action action; field in class:Request
88 Action action() { return action; } method in class:Request
    [all...]
  /system/core/libsysutils/include/sysutils/
NetlinkEvent.h 25 enum class Action {
42 Action mAction;
54 Action getAction() { return mAction; }
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/
UefiIfrOpCodeCreation.c 142 EFI_IFR_ACTION Action;
155 Action.Header.OpCode = EFI_IFR_ACTION_OP;
156 Action.Header.Length = (UINT8) sizeof (EFI_IFR_ACTION);
157 Action.Header.Scope = 0;
158 Action.Question.QuestionId = QuestionId;
159 Action.Question.Header.Prompt = Prompt;
160 Action.Question.Header.Help = Help;
161 Action.Question.VarStoreId = INVALID_VARSTORE_ID;
162 Action.Question.Flags = QuestionFlags;
163 Action.QuestionConfig = QuestionConfig;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/EfiCompress/
EfiCompressMain.c 181 COMPRESS_ACTION_LIST **Action;
183 Action = ActionListHead;
213 if (*Action == NULL) {
215 // need to create a new action item
217 *Action = (COMPRESS_ACTION_LIST*) malloc (sizeof **Action);
218 if (*Action == NULL) {
222 memset (*Action, 0, sizeof **Action);
223 (*Action)->CompressType = CurrentType;
    [all...]

Completed in 1233 milliseconds

12 3 4 5 6 7 8 91011>>