HomeSort by relevance Sort by last modified time
    Searched defs:stage (Results 101 - 125 of 181) sorted by null

1 2 3 45 6 7 8

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Actor.java 57 private Stage stage; field in class:Actor
85 /** Updates the actor based on time. Typically this is called each frame by {@link Stage#act(float)}.
92 if (stage != null && stage.getActionsRequestRendering()) Gdx.graphics.requestRendering();
109 * actors as necessary. If this actor is not in the stage, the stage must be set before calling this method.
165 * must be set before calling this method. If this actor is not in the stage, the stage must be set before calling this method.
176 if (event.getStage() == null) event.setStage(stage);
718 Stage stage = this.stage; local
733 Stage stage = this.stage; local
    [all...]
Group.java 313 * @param unfocus If true, {@link Stage#unfocus(Actor)} is called.
318 Stage stage = getStage(); local
319 if (stage != null) stage.unfocus(actor);
362 protected void setStage (Stage stage) {
363 super.setStage(stage);
366 childrenArray[i].setStage(stage); // StackOverflowError here means the group is its own ancestor.
  /external/guice/core/src/com/google/inject/spi/
Elements.java 36 import com.google.inject.Stage;
87 return getElements(Stage.DEVELOPMENT, Arrays.asList(modules));
93 public static List<Element> getElements(Stage stage, Module... modules) {
94 return getElements(stage, Arrays.asList(modules));
101 return getElements(Stage.DEVELOPMENT, modules);
107 public static List<Element> getElements(Stage stage, Iterable<? extends Module> modules) {
108 RecordingBinder binder = new RecordingBinder(stage);
161 private final Stage stage field in class:Elements.RecordingBinder
    [all...]
  /external/guice/core/test/com/google/inject/spi/
ElementsTest.java 39 import com.google.inject.Stage;
1333 @Inject Stage stage; field in class:ElementsTest.A
1337 @Inject Stage stage; field in class:ElementsTest.B
    [all...]
  /external/guice/core/test/com/google/inject/util/
OverrideModuleTest.java 43 import com.google.inject.Stage;
671 final Stage stage = Stage.PRODUCTION; local
675 if (currentStage() != Stage.PRODUCTION) {
676 addError("Wronge stage in overridden module:" + currentStage());
682 if (currentStage() != Stage.PRODUCTION) {
683 addError("Wronge stage in overriding module:" + currentStage());
687 Guice.createInjector(stage, module);
  /external/harfbuzz_ng/src/
hb-ot-layout.cc 1099 const stage_map_t *stage = &stages[table_index][stage_index]; local
1100 for (; i < stage->last_lookup; i++)
1113 if (stage->pause_func)
1116 stage->pause_func (plan, font, buffer);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
ProgressBar.java 27 import com.badlogic.gdx.scenes.scene2d.Stage;
105 Stage stage = getStage(); local
106 if (stage != null && stage.getActionsRequestRendering()) Gdx.graphics.requestRendering();
TextArea.java 26 import com.badlogic.gdx.scenes.scene2d.Stage;
393 Stage stage = getStage(); local
394 if (stage != null && stage.getKeyboardFocus() == TextArea.this) {
ScrollPane.java 31 import com.badlogic.gdx.scenes.scene2d.Stage;
234 /** Cancels the stage's touch focus for all listeners except this scroll pane's flick scroll listener. This causes any widgets
238 Stage stage = getStage(); local
239 if (stage != null) stage.cancelTouchFocusExcept(flickScrollListener, this);
363 Stage stage = getStage(); local
364 if (stage != null && stage.getActionsRequestRendering()) Gdx.graphics.requestRendering();
    [all...]
TextField.java 34 import com.badlogic.gdx.scenes.scene2d.Stage;
270 Stage stage = getStage(); local
271 boolean focused = stage != null && stage.getKeyboardFocus() == this;
479 /** Focuses the next TextField. If none is found, the keyboard is hidden. Does nothing if the text field is not in a stage.
482 Stage stage = getStage(); local
483 if (stage == null) return;
485 TextField textField = findNextTextField(stage.getActors(), null, tmp2, tmp1, up)
785 Stage stage = getStage(); local
822 Stage stage = getStage(); local
945 Stage stage = getStage(); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_aaline.c 29 * AA line stage: AA lines are converted to texture mapped triangles.
88 struct draw_stage stage; member in struct:aaline_stage
352 struct pipe_context *pipe = aaline->stage.draw->pipe;
406 struct pipe_context *pipe = aaline->stage.draw->pipe;
500 struct pipe_context *pipe = aaline->stage.draw->pipe;
528 struct draw_context *draw = aaline->stage.draw;
545 aaline_stage( struct draw_stage *stage )
547 return (struct aaline_stage *) stage;
556 aaline_line(struct draw_stage *stage, struct prim_header *header)
558 const struct aaline_stage *aaline = aaline_stage(stage);
    [all...]
  /external/opencv/cv/src/
cvcorner.cpp 223 int stage = CV_START; local
323 stage = stage & CV_START ? CV_START + CV_END : CV_END;
324 dx_filter.process( src, Dx, cvRect(0,y,-1,delta), cvPoint(0,0), stage );
326 cvPoint(0,0), stage );
387 stage = stage & CV_START ? CV_START + CV_END : CV_END;
390 cvRect(0,0,-1,stripe_size.height),cvPoint(0,0),stage+CV_ISOLATED_ROI);
406 stage = CV_MIDDLE;
519 int stage = CV_START local
    [all...]
cvhaar.cpp 219 sprintf( errorstr, "header of the stage classifier #%d is invalid "
251 "the stage classifier #%d is not inside "
1546 const char* stage = input_cascade[i]; local
    [all...]
  /external/guice/core/test/com/google/inject/
BindingTest.java 228 final Constructor<D> constructor = D.class.getConstructor(Stage.class);
237 assertEquals(Stage.DEVELOPMENT, d.stage);
241 final Constructor<C> constructor = C.class.getConstructor(Stage.class, Object.class);
247 bind(s).toConstructor(constructor, new TypeLiteral<C<Stage>>() {});
252 C<Stage> one = (C<Stage>) injector.getInstance(s);
253 assertEquals(Stage.DEVELOPMENT, one.stage);
254 assertEquals(Stage.DEVELOPMENT, one.t)
431 private Stage stage; field in class:BindingTest.C
444 Stage stage; field in class:BindingTest.D
451 Stage stage; field in class:BindingTest.E
459 Stage stage; field in class:BindingTest.F
    [all...]
  /external/mdnsresponder/mDNSShared/
DebugServices.c 2388 uint8_t stage; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_render.c 1139 struct draw_stage* stage; local
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLScanner.java 632 h.stage(theOutputBuffer, 0, theSize);
Parser.java 1024 public void stage(char[] buff, int offset, int length) throws SAXException { method in class:Parser
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
xtensa-isa.c 416 int i, stage;
430 stage = use->stage;
431 if (stage > max_stage)
432 max_stage = stage;
414 int i, stage; local
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 478 // Tell the final stage how to clean up after itself
491 private int retainedWifiState; // provided by disable stage
492 private int scanAlways; // provided by disable stage
651 File stage = new File(root, STAGE_FILE); local
653 FileOutputStream filestream = new FileOutputStream(stage);
697 fullBackupFile(stage, data);
699 stage.delete();
    [all...]
  /bootable/recovery/
recovery.cpp 126 char* stage = NULL; variable
319 stage = strndup(boot.stage, sizeof(boot.stage));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/
vktSynchronization.cpp 356 VkShaderStageFlagBits stage; member in struct:vkt::__anon9048::ShaderDescParams
    [all...]
  /external/opencv3/modules/objdetect/src/
cascadedetect.cpp 1620 Stage stage; local
1685 const Stage& stage = stages[stageIdx]; local
    [all...]
cascadedetect.hpp 188 struct Stage
217 std::vector<Stage> stages;
512 CascadeClassifierImpl::Data::Stage* cascadeStages = &cascade.data.stages[0];
516 CascadeClassifierImpl::Data::Stage& stage = cascadeStages[si]; local
517 int wi, ntrees = stage.ntrees;
522 CascadeClassifierImpl::Data::DTree& weak = cascadeWeaks[stage.first + wi];
536 if( sum < stage.threshold )
554 CascadeClassifierImpl::Data::Stage* cascadeStages = &cascade.data.stages[0];
558 CascadeClassifierImpl::Data::Stage& stage = cascadeStages[si] local
598 const CascadeClassifierImpl::Data::Stage& stage = cascadeStages[stageIdx]; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmInstructionTests.cpp 3274 VkShaderStageFlagBits stage; member in struct:vkt::SpirVAssembly::__anon9020::ShaderElement
3347 const EntryToStage& stage = *shaderNdx; local
    [all...]

Completed in 794 milliseconds

1 2 3 45 6 7 8