/external/chromium_org/chrome/common/extensions/api/ |
input_method_private.json | 14 "description": "Gets the current input method.", 20 "description": "Callback which is called with the current input method.", 25 "description": "Current input method."
|
/external/chromium_org/components/policy/core/common/ |
policy_types.h | 10 // The scope of a policy flags whether it is meant to be applied to the current 13 // USER policies apply to sessions of the current user. 16 // MACHINE policies apply to any users of the current machine.
|
/external/chromium_org/net/quic/ |
quic_clock.h | 23 // Returns the approximate current time as a QuicTime object. 26 // Returns the current time as a QuicTime object. 30 // WallNow returns the current wall-time - a time that is consistent across
|
/external/chromium_org/sync/internal_api/public/engine/ |
passive_model_worker.cc | 21 base::MessageLoop::current()->AddDestructionObserver(this); 27 DCHECK_EQ(base::MessageLoop::current(), sync_loop_); 28 // Simply do the work on the current thread.
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_GetKeyState.3 | 3 SDL_GetKeyState \- Get a snapshot of the current keyboard state 11 Gets a snapshot of the current keyboard state\&. The current state is return as a pointer to an array, the size of this array is stored in \fBnumkeys\fR\&. The array is indexed by the \fI\fBSDLK_*\fP\fR symbols\&. A value of 1 means the key is pressed and a value of 0 means its not\&. The pointer returned is a pointer to an internal SDL array and should not be freed by the caller\&.
|
SDL_GetMouseState.3 | 3 SDL_GetMouseState \- Retrieve the current state of the mouse 11 The current button state is returned as a button bitmask, which can be tested using the \fBSDL_BUTTON(X)\fP macros, and \fBx\fR and \fBy\fR are set to the current mouse cursor position\&. You can pass \fBNULL\fP for either \fBx\fR or \fBy\fR\&.
|
SDL_JoystickGetHat.3 | 3 SDL_JoystickGetHat \- Get the current state of a joystick hat 11 SDL_JoystickGetHat returns the current state of the given \fBhat\fR on the given \fBjoystick\fR\&. 14 The current state is returned as a Uint8 which is defined as an OR\&'d combination of one or more of the following
|
/libcore/luni/src/main/java/java/text/ |
CharacterIterator.java | 28 * A constant which indicates that there is no character at the current 43 * Returns the character at the current index. 45 * @return the current character, or {@code DONE} if the current index is 48 public char current(); method in interface:CharacterIterator 51 * Sets the current position to the begin index and returns the character at 73 * Returns the current index. 75 * @return the current index. 80 * Sets the current position to the end index - 1 and returns the character 88 * Increments the current index and returns the character at the new index [all...] |
/system/core/include/cutils/ |
process_name.h | 18 * Gives the current process a name. 29 * Sets the current process name. 35 /** Gets the current process name. */
|
/external/llvm/lib/Support/ |
YAMLParser.cpp | 268 if (Current >= End) 269 Current = End - 1; 274 printError(SMLoc::getFromPointer(Current), SourceMgr::DK_Error, Message); 279 setError(Message, Current); 289 return StringRef(Current, End - Current); 394 /// Invalid simple keys are not on the current line or are further than 1024 468 /// @brief The current position of the scanner. 469 StringRef::iterator Current; 474 /// @brief Current YAML indentation level in spaces [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
MatrixGrabber.java | 28 * Record the current modelView and projection matrix state. 29 * Has the side effect of setting the current matrix state to GL_MODELVIEW 38 * Record the current modelView matrix state. Has the side effect of 39 * setting the current matrix state to GL_MODELVIEW 47 * Record the current projection matrix state. Has the side effect of 48 * setting the current matrix state to GL_PROJECTION
|
/external/chromium_org/cc/debug/ |
rendering_stats_instrumentation.h | 21 // Return current main thread rendering stats. 25 // Return current impl thread rendering stats. 32 // Add current main thread rendering stats to accumulator and 33 // clear current stats. 35 // Add current impl thread rendering stats to accumulator and 36 // clear current stats.
|
/external/chromium_org/chrome/browser/ui/tab_contents/ |
tab_contents_iterator.h | 36 // Returns the Browser instance associated with the current 44 // Returns the current WebContents, valid as long as !done(). 58 // Tab index into the current Browser of the current web view. 61 // Current WebContents, or NULL if we're at the end of the list. This 63 // cache this since the caller may access the current host many times.
|
/external/chromium_org/media/base/ |
seekable_buffer.h | 9 // both backward and forward directions, the current read position can be reset 15 // In the case of reading and seeking forward, the current read position 57 // Reads a maximum of |size| bytes into |data| from the current read 59 // The current read position will advance by the amount of bytes read. If 64 // Copies up to |size| bytes from current position to |data|. Returns 65 // number of bytes copied. Doesn't advance current position. Optionally 66 // starts at a |forward_offset| from current position. 70 // Returns pointer to the current chunk of data that is being consumed. 87 // current read position is moved forward. If negative, the current rea [all...] |
/external/chromium_org/net/websockets/ |
websocket_deflater.h | 42 // Flushes the current processing data. 49 // Returns the current deflated output. 50 // If the current output is larger than |size| bytes, 51 // returns the first |size| bytes of the current output. 52 // The returned bytes will be dropped from the current output and never be 56 // Returns the size of the current deflated output.
|
/external/libexif/test/ |
test-sorted.c | 33 ExifTag last = 0, current; local 36 current = exif_tag_table_get_tag(i); 37 if (current < last) { 39 current); 43 printf("Tag 0x%04x has a NULL name\n", current); 46 last = current;
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
LVC_MixSoft_2St_D16C31_SAT.c | 43 if ((pInstance1->Current == pInstance1->Target)&&(pInstance1->Current == 0)){ 46 else if ((pInstance2->Current == pInstance2->Target)&&(pInstance2->Current == 0)){ 49 else if ((pInstance1->Current != pInstance1->Target) || (pInstance2->Current != pInstance2->Target))
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
ScrollViewListener.java | 29 * @param scrollX The current horizontal position 30 * @param scrollY The current vertical position 40 * @param scrollX The current horizontal position 41 * @param scrollY The current vertical position 51 * @param scrollX The current horizontal position 52 * @param scrollY The current vertical position
|
/dalvik/vm/ |
Exception.h | 24 * Create a Throwable and throw an exception in the current thread (where 90 * Return the exception being thrown in the current thread, or NULL if 98 * Set the exception being thrown in the current thread. 206 * Throw an AbstractMethodError in the current thread, with the given detail 212 * Throw an ArithmeticException in the current thread, with the given detail 218 * Throw an ArrayIndexOutOfBoundsException in the current thread, 224 * Throw an ArrayStoreException in the current thread, using the given classes' 231 * Throw an ArrayStoreException in the current thread, using the given 238 * Throw an ArrayStoreException in the current thread, using the given 245 * Throw an ArrayStoreException in the current thread, using the give [all...] |
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
MemoryCache.cpp | 94 blink::Platform::current()->currentThread()->removeTaskObserver(this); 178 // elapsedTime will evaluate to false as the current time will be a lot 179 // greater than the current->m_lastDecodedFrameTimeStamp. 184 Resource* current = m_liveDecodedResources[priority].m_tail; local 185 while (current) { 186 Resource* prev = current->m_prevInLiveResourcesList; 187 ASSERT(current->hasClients()); 188 if (current->isLoaded() && current->decodedSize()) { 190 double elapsedTime = m_pruneFrameTimeStamp - current->m_lastDecodedAccessTime 219 Resource* current = m_allResources[i].m_tail; local 236 Resource* current = m_allResources[i].m_tail; local 675 Resource* current = m_allResources[i].m_tail; local [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
version.rb | 8 # testing the current version of this library 19 # The version data for the current state the library itself
|
/external/chromium/chrome/browser/first_run/ |
first_run_import_observer.cc | 19 MessageLoop::current()->Run(); 24 MessageLoop::current()->Quit();
|
/external/chromium_org/chrome/common/ |
dump_without_crashing.h | 12 // Handler to silently dump the current process without crashing. 16 // Sets a function that'll be invoked to dump the current process when
|
/external/chromium_org/chrome/common/extensions/docs/examples/howto/tab_shortcuts/ |
manifest.json | 16 "description": "Toggles whether the current tab is pinned." 23 "description": "Duplicates the current tab."
|
/external/chromium_org/chrome/renderer/safe_browsing/ |
feature_extractor_clock.h | 5 // A simple abstraction for getting the current time during feature extraction. 20 // Returns the current time. May be mocked for testing.
|