Searched refs:handled (Results 1 - 25 of 132) sorted by relevance

123456

/external/valgrind/none/tests/
H A Dcoolo_sigaction.stdout.exp0 handled SIGCHLD
/external/clang/test/Frontend/
H A Dtrigraphs.cpp15 #error Not handled.
/external/testng/src/test/java/test/timeout/
H A DInvocationTimeOutSampleTest.java11 } catch (InterruptedException handled) {
20 } catch (InterruptedException handled) {
H A DTestTimeOutSampleTest.java11 } catch (InterruptedException handled) {
/external/testng/src/test/java/test/invokedmethodlistener/
H A DSample.java13 } catch (InterruptedException handled) {
22 } catch (InterruptedException handled) {
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
H A DEvent.java27 * An Event may be marked as "handled" which will end its propagation outside of the Stage (see {@link #handle()}). The default
28 * {@link Actor#fire(Event)} will mark events handled if an {@link EventListener} returns true.
30 * A cancelled event will be stopped and handled. Additionally, many actors will undo the side-effects of a canceled event. (See
41 private boolean handled; // true means the event was handled (the stage will eat the input) field in class:Event
45 /** Marks this event as handled. This does not affect event propagation inside scene2d, but causes the {@link Stage} event
48 handled = true;
57 handled = true;
72 handled = false;
107 return handled;
[all...]
H A DStage.java258 /** Applies a touch down event to the stage and returns true if an actor in the scene {@link Event#handle() handled} the event. */
285 boolean handled = event.isHandled();
287 return handled;
290 /** Applies a touch moved event to the stage and returns true if an actor in the scene {@link Event#handle() handled} the event.
321 boolean handled = event.isHandled();
323 return handled;
326 /** Applies a touch up event to the stage and returns true if an actor in the scene {@link Event#handle() handled} the event.
358 boolean handled = event.isHandled();
360 return handled;
363 /** Applies a mouse moved event to the stage and returns true if an actor in the scene {@link Event#handle() handled} th
[all...]
/external/testng/src/test/java/test/tmp/
H A DTmp.java16 catch (InterruptedException handled) {
18 handled.printStackTrace();
/external/testng/src/test/java/test/annotationtransformer/
H A DAnnotationTransformerClassSampleTest.java22 catch (InterruptedException handled) {
/external/testng/src/main/java/org/testng/internal/remote/
H A DSlavePool.java48 catch (InterruptedException handled) {
49 handled.printStackTrace();
/external/skia/src/animator/
H A DSkDisplayEvents.cpp42 bool handled = false; local
74 handled = true;
76 return handled;
/external/llvm/test/MC/AArch64/
H A Darm64-separator.s6 ; To make sure the output assembly correctly handled the instructions,
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowListView.java61 boolean handled = false;
63 handled = true;
77 handled |= super.performItemClick(view, position, id);
78 return handled;
/external/testng/src/test/java/test/listeners/
H A DEndMillisShouldNotBeZeroTest.java40 } catch (InterruptedException handled) {
/external/libvncserver/libvncserver/
H A Dcargs.c216 int handled=0; local
218 for(extension=rfbGetExtensionIterator();handled==0 && extension;
221 handled = extension->processArgument(*argc - i, argv + i);
224 if(handled==0) {
229 i+=handled-1;
/external/skia/src/views/
H A DSkWindow.cpp268 bool handled = false; local
292 handled = true;
299 handled = true;
307 handled = true;
314 return handled;
/external/vulkan-validation-layers/demos/smoke/
H A DShellAndroid.cpp175 bool handled = false;
180 handled = true;
186 return handled;
/external/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dsubsetter.cc74 bool handled = (*table_subsetter)->Subset(this, font_, font_builder); local
75 if (handled) {
/external/testng/src/main/java/org/testng/internal/thread/
H A DThreadUtil.java76 } catch (InterruptedException handled) {
77 handled.printStackTrace();
H A DExecutorAdapter.java44 catch(InterruptedException handled) {
/external/webrtc/webrtc/base/
H A Dwin32window.cc102 bool handled = that->OnMessage(uMsg, wParam, lParam, result); local
114 if (handled) {
/external/glide/library/src/main/java/com/bumptech/glide/manager/
H A DRequestManagerRetriever.java203 boolean handled = true;
218 handled = false;
220 if (handled && removed == null && Log.isLoggable(TAG, Log.WARN)) {
223 return handled;
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
H A D_AbstractFakeCommandHandlerTest.groovy66 assert commandHandler.handled
199 boolean handled = false
206 this.handled = true
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/command/
H A D_AbstractFakeCommandHandlerTest.groovy66 assert commandHandler.handled
197 boolean handled = false
204 this.handled = true
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
H A D_AbstractFakeCommandHandlerTest.groovy66 assert commandHandler.handled
197 boolean handled = false
204 this.handled = true

Completed in 1438 milliseconds

123456