/external/chromium_org/win8/metro_driver/ime/ |
text_service_delegate.h | 26 // Called when on-going composition is updated. An empty |text| represents 34 // Called when |text| is committed.
|
/external/clang/include/clang/Lex/ |
CodeCompletionHandler.h | 22 /// \brief Callback handler that receives notifications when performing code 28 /// \brief Callback invoked when performing code completion for a preprocessor 31 /// This callback will be invoked when the preprocessor processes a '#' at the 38 /// \brief Callback invoked when performing code completion within a block of 42 /// \brief Callback invoked when performing code completion in a context 49 /// \brief Callback invoked when performing code completion in a preprocessor 53 /// \brief Callback invoked when performing code completion inside a 63 /// \brief Callback invoked when performing code completion in a part of the
|
/external/clang/test/SemaObjC/ |
property-and-class-extension.m | 4 When processing @synthesize, treat ivars in a class extension the same as ivars in the class @interface, 6 In particular, when searching for an ivar to back an @synthesize, do look at ivars in the class's own class
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/ |
antenv.cmd | 33 when param='-lcp' then mode = 'l' 34 when param='-cp' | param='-classpath' then mode = 'c' 35 when abbrev('-opts', param, 4) then mode = 'o' 36 when abbrev('-args', param, 4) then mode = 'a' 39 when mode = 'a' then args = space(args param, 1) 40 when mode = 'c' then cp = space(cp param, 1) 41 when mode = 'l' then lcp = space(lcp param, 1) 42 when mode = 'o' then opts = space(opts param, 1)
|
/external/icu4c/common/ |
msvcres.h | 8 //unnessarily building the resource files when it's not needed. 13 STLPort's broken stddef.h from being used when rc.exe parses this file.
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ |
PhysicsControl.java | 21 * The physics object is removed from the physics space when the control 22 * is disabled. When the control is enabled again the physics object is
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
SceneGraphVisitorAdapter.java | 14 * Called when a {@link Geometry} is visited. 21 * Called when a {@link visit} is visited.
|
/external/libcap-ng/libcap-ng-0.7/src/test/ |
thread_test.c | 19 printf("Capabilities missing when there should be some\n"); 36 printf("Detected capabilities when there should not be any\n");
|
/external/libpng/projects/beos/ |
x86-shared.txt | 10 Note: As of version 1.0.10, you'll get a fair number of warnings when 20 well when you link)
|
x86-static.txt | 10 Note: As of version 1.0.10, you'll get a fair number of warnings when 20 well when you link)
|
/external/llvm/test/CodeGen/R600/ |
legalizedag-bug-expand-setcc.ll | 4 ; BooleanContents value and always using one for true, when expanding 8 ; instructions, when only one is needed.
|
/external/llvm/test/Transforms/LCSSA/ |
unused-phis.ll | 9 ; Test to ensure that when there are multiple exit blocks, PHI nodes are 10 ; only inserted by LCSSA when there is a use dominated by a given exit
|
/external/llvm/test/tools/llvm-objdump/ |
disassembly-show-raw.s | 6 // Expect to find the raw incoding when run with raw output (default), but not 7 // when run explicitly with -no-show-raw-insn
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_JoyAxisEvent.3 | 30 \fBSDL_JoyAxisEvent\fR is a member of the \fI\fBSDL_Event\fR\fR union and is used when an event of type \fBSDL_JOYAXISMOTION\fP is reported\&. 32 A \fBSDL_JOYAXISMOTION\fP event occurs when ever a user moves an axis on the joystick\&. The field \fBwhich\fR is the index of the joystick that reported the event and \fBaxis\fR is the index of the axis (for a more detailed explaination see the \fIJoystick section\fR)\&. \fBvalue\fR is the current position of the axis\&.
|
/external/skia/include/effects/ |
SkLerpXfermode.h | 18 * When scale == 1, this is the same as kSrc_Mode 19 * When scale == 0, this is the same as kDst_Mode
|
/external/wpa_supplicant_8/src/wps/ |
httpread.h | 59 * when the instance is destroyed (the application must do that). 78 /* httpread_hdr_type_get -- When file is ready, returns header type. 83 /* httpread_uri_get -- When file is ready, uri_get returns (translated) URI 88 /* httpread_reply_code_get -- When reply is ready, returns reply code */ 92 /* httpread_length_get -- When file is ready, returns file length. */ 95 /* httpread_data_get -- When file is ready, returns file content 101 /* httpread_hdr_get -- When file is ready, returns header content 107 /* httpread_hdr_line_get -- When file is ready, returns pointer
|
/frameworks/base/core/java/android/app/ |
OnActivityPausedListener.java | 20 * A listener that is called when an Activity is paused. Since this is tracked client side 28 * Called when the given activity is paused.
|
/frameworks/base/core/java/android/text/style/ |
EasyEditSpan.java | 30 * {@link TextView} removes the span when the user deletes the whole text or modifies it. 32 * This span can be also used to receive notification when the user deletes or modifies the text; 47 * The value of {@link #EXTRA_TEXT_CHANGED_TYPE} when the text wrapped by this span is deleted. 52 * The value of {@link #EXTRA_TEXT_CHANGED_TYPE} when the text wrapped by this span is modified. 61 * Creates the span. No intent is sent when the wrapped text is modified or 70 * @param pendingIntent The intent will be sent when the wrapped text is deleted or modified. 71 * When the pending intent is sent, {@link #EXTRA_TEXT_CHANGED_TYPE} is 122 * @return the pending intent to send when the wrapped text is deleted or modified.
|
/libcore/luni/src/main/java/java/util/ |
TimerTask.java | 35 long when; field in class:TimerTask 42 * The time when task will be executed, or the time when task was launched 48 * Method called from the Timer for synchronized getting of when field. 52 return when; 57 * Method called from the Timer object when scheduling an event @param time 73 return when > 0 || scheduledTime > 0; 93 boolean willRun = !cancelled && when > 0;
|
/libcore/luni/src/main/java/java/util/concurrent/ |
TimeoutException.java | 10 * Exception thrown when a blocking operation times out. Blocking 13 * is possible to return a value that indicates timeout; when that is
|
/packages/apps/Browser/src/com/android/browser/ |
EventLogTags.logtags | 5 # This event is logged when a user adds a new bookmark. This could just be a boolean, 14 # This event is logged when the user navigates to a new page, sending the time spent on the current page.
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
UserInteractionListener.java | 20 // Called when a user interaction begins (for example, fling). 22 // Called when the user interaction ends.
|
/prebuilts/tools/common/proguard/proguard4.7/bin/ |
proguardgui.sh | 6 # Note: when passing file names containing spaces to this script, 12 # On Linux, Java 1.6.0_24 and higher hang when starting the GUI:
|
/external/chromium/net/spdy/ |
spdy_stream.h | 34 // Streams can be created either by the client or by the server. When they 36 // a SpdyNetworkTransaction) will maintain a reference to the stream. When 48 // Called when SYN frame has been sent. 52 // Called when stream is ready to send data. 53 // Returns network error code. OK when it successfully sent data. 56 // Called when data has been sent. |status| indicates network error 59 // Returns network error code. OK when it successfully sent data. 62 // Called when the SYN_STREAM, SYN_REPLY, or HEADERS frames are received. 72 // Called when data is received. 75 // Called when data is sent [all...] |
/cts/tools/dasm/src/java_cup/ |
internal_error.java | 14 for cases when we can't actually throw the exception. */
|