HomeSort by relevance Sort by last modified time
    Searched refs:to (Results 726 - 750 of 11374) sorted by null

<<21222324252627282930>>

  /external/chromium/chrome/browser/resources/touch_ntp/
newtab.js 11 // Use an anonymous function to enable strict mode just for this file (which
17 * The Slider object to use for changing app pages.
23 * Template to use for creating new 'apps-page' elements
29 * Template to use for creating new 'app-container' elements
35 * Template to use for creating new 'dot' elements
67 * to rely on the ID being the same, and JSCompiler doesn't know about it.
74 * in newtab.css. Unfortunately there's no better way to try to time
75 * something to occur until after a transition has completed.
88 * Holds all event handlers tied to apps (and so subject to removal when th
    [all...]
  /build/target/board/generic/
BoardConfig.mk 15 # it is supposed to replace (unlike on real devices where it is 2x to 3x
19 # that are slower to emulate. On the other hand, it is possible to emulate
33 # Enable dex-preoptimization to speed up the first boot sequence
48 # Set the phase offset of the system's vsync event relative to the hardware
54 # wake-up (by Choregographer) time to the time at which the resulting window
56 # or negative (before the HW vsync). Setting it to 0 will result in a
58 # will run just after the HW vsync. Setting it to a positive number will
64 # to not have their window content image ready in time. When this happen
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_INVOKE_METHOD_CHAIN.S 3 * For monomorphic callsite, setup the Dalvik frame and return to the
4 * Thumb code through the link register to transfer control to the callee
9 @ methodToCall is guaranteed to be non-native
17 add r12, lr, #2 @ setup the punt-to-interp address
20 bxlo r12 @ return to raise stack overflow excep.
31 bxne r12 @ bail to the interpreter
49 bx lr @ return to the callee-chaining cell
  /external/chromium/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 32 // Search history to find up to ten links that a user has typed in,
35 // To look for history items visited in the last week,
41 // that we expect to get. When it reaches zero, we have all results.
53 // We need the url of the visited item to process the visit.
54 // Use a closure to bind the url into the callback's args.
68 // Maps URLs to a count of the number of times the user typed that URL into
88 // If this is the final outstanding call to processVisits(),
89 // then we have the final results. Use them to build the list
90 // of URLs to show in the popup
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 36 // Search history to find up to ten links that a user has typed in,
39 // To look for history items visited in the last week,
45 // that we expect to get. When it reaches zero, we have all results.
57 // We need the url of the visited item to process the visit.
58 // Use a closure to bind the url into the callback's args.
72 // Maps URLs to a count of the number of times the user typed that URL into
92 // If this is the final outstanding call to processVisits(),
93 // then we have the final results. Use them to build the list
94 // of URLs to show in the popup
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
path_canonicalizer.py 24 many incarnations - e.g. there didn't use to be apps/ - there may be old
25 paths lying around the webs. We try to redirect those to where they are now.
28 # Map of simplified API names (for typo detection) to their real paths.
36 permanent canonicalisation (e.g. when we redirect from a channel to a
38 to an extensions one - we may at some point enable it for extensions).
62 # People go to just "extensions" or "apps". Redirect to the directory.
66 # The rest of this function deals with trying to figure out what API page
67 # for extensions/apps to redirect to, if any. We see a few different case
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedIntegerOptionalInteger.cpp 15 * along with this library; see the file COPYING.LIB. If not, write to
76 void SVGAnimatedIntegerOptionalIntegerAnimator::addAnimatedTypes(SVGAnimatedType* from, SVGAnimatedType* to)
79 ASSERT(from->type() == to->type());
82 pair<int, int>& toIntegerPair = to->integerOptionalInteger();
88 void SVGAnimatedIntegerOptionalIntegerAnimator::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType* toAtEndOfDuration, SVGAnimatedType* animated)
94 const pair<int, int>& toIntegerPair = to->integerOptionalInteger();
SVGAnimatedNumberList.cpp 15 * along with this library; see the file COPYING.LIB. If not, write to
66 void SVGAnimatedNumberListAnimator::addAnimatedTypes(SVGAnimatedType* from, SVGAnimatedType* to)
69 ASSERT(from->type() == to->type());
72 SVGNumberList& toNumberList = to->numberList();
82 void SVGAnimatedNumberListAnimator::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType* toAtEndOfDuration, SVGAnimatedType* animated)
87 const SVGNumberList& toNumberList = to->numberList();
SVGAnimatedNumberOptionalNumber.cpp 15 * along with this library; see the file COPYING.LIB. If not, write to
73 void SVGAnimatedNumberOptionalNumberAnimator::addAnimatedTypes(SVGAnimatedType* from, SVGAnimatedType* to)
76 ASSERT(from->type() == to->type());
79 pair<float, float>& toNumberPair = to->numberOptionalNumber();
85 void SVGAnimatedNumberOptionalNumberAnimator::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType* toAtEndOfDuration, SVGAnimatedType* animated)
91 const pair<float, float>& toNumberPair = to->numberOptionalNumber();
SVGAnimatedPointList.cpp 15 * along with this library; see the file COPYING.LIB. If not, write to
67 void SVGAnimatedPointListAnimator::addAnimatedTypes(SVGAnimatedType* from, SVGAnimatedType* to)
70 ASSERT(from->type() == to->type());
73 SVGPointList& toPointList = to->pointList();
83 void SVGAnimatedPointListAnimator::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType* toAtEndOfDuration, SVGAnimatedType* animated)
88 const SVGPointList& toPointList = to->pointList();
SVGAnimatedRect.cpp 15 * along with this library; see the file COPYING.LIB. If not, write to
66 void SVGAnimatedRectAnimator::addAnimatedTypes(SVGAnimatedType* from, SVGAnimatedType* to)
69 ASSERT(from->type() == to->type());
71 to->rect() += from->rect();
74 void SVGAnimatedRectAnimator::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType* toAtEndOfDuration, SVGAnimatedType* animated)
80 const SVGRect& toRect = to->rect();
SVGAnimatedTypeAnimator.cpp 16 * along with this library; see the file COPYING.LIB. If not, write to
49 void SVGAnimatedTypeAnimator::calculateFromAndToValues(OwnPtr<SVGAnimatedType>& from, OwnPtr<SVGAnimatedType>& to, const String& fromString, const String& toString)
52 to = constructFromString(toString);
55 void SVGAnimatedTypeAnimator::calculateFromAndByValues(OwnPtr<SVGAnimatedType>& from, OwnPtr<SVGAnimatedType>& to, const String& fromString, const String& byString)
58 to = constructFromString(byString);
59 addAnimatedTypes(from.get(), to.get());
  /external/chromium_org/third_party/mesa/src/src/gallium/docs/
make.bat 17 echo. html to make standalone HTML files
18 echo. dirhtml to make HTML files named index.html in directories
19 echo. pickle to make pickle files
20 echo. json to make JSON files
21 echo. htmlhelp to make HTML files and a HTML help project
22 echo. qthelp to make HTML files and a qthelp project
23 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
24 echo. changes to make an overview over all changed/added/deprecated items
25 echo. linkcheck to check all external links for integrity
26 echo. doctest to run all doctests embedded in the documentation if enabled
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa.h 7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
89 unsigned char *to,
92 unsigned char *to,
95 unsigned char *to,
98 unsigned char *to,
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
rsa.h 7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
89 unsigned char *to,
92 unsigned char *to,
95 unsigned char *to,
98 unsigned char *to,
    [all...]
  /external/compiler-rt/make/
AppleBI.mk 3 # Make rules to build compiler_rt in Apple B&I infrastructure
29 # Copies any public headers to DSTROOT.
33 # Copies source code to SRCROOT.
40 # Copy results to DSTROOT.
53 # Rule to make each dylib slice
70 # Rule to make fat dylib
77 # Copy results to DSTROOT.
92 # Rule to make fat archive
97 # rule to make each archive slice for dyld (which removes a few archive members)
107 # rule to make make archive for dyl
    [all...]
  /external/kernel-headers/original/asm-arm/
page.h 21 /* to align the pointer to the (next) page boundary */
42 * We have the following to choose from:
111 void (*cpu_copy_user_page)(void *to, const void *from,
127 extern void __cpu_copy_user_page(void *to, const void *from,
132 #define copy_user_page(to,from,vaddr,pg) __cpu_copy_user_page(to, from, vaddr)
135 extern void copy_page(void *to, const void *from);
141 * These are used to make use of C type-checking..
  /external/kernel-headers/original/linux/
highmem.h 78 * Same but also flushes aliased cache contents to RAM.
92 static inline void copy_user_highpage(struct page *to, struct page *from, unsigned long vaddr)
97 vto = kmap_atomic(to, KM_USER1);
98 copy_user_page(vto, vfrom, vaddr, to);
105 static inline void copy_highpage(struct page *to, struct page *from)
110 vto = kmap_atomic(to, KM_USER1);
  /external/mesa3d/src/gallium/docs/
make.bat 17 echo. html to make standalone HTML files
18 echo. dirhtml to make HTML files named index.html in directories
19 echo. pickle to make pickle files
20 echo. json to make JSON files
21 echo. htmlhelp to make HTML files and a HTML help project
22 echo. qthelp to make HTML files and a qthelp project
23 echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
24 echo. changes to make an overview over all changed/added/deprecated items
25 echo. linkcheck to check all external links for integrity
26 echo. doctest to run all doctests embedded in the documentation if enable
    [all...]
  /external/openssl/crypto/rsa/
rsa.h 7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
89 unsigned char *to,
92 unsigned char *to,
95 unsigned char *to,
98 unsigned char *to,
    [all...]
  /external/openssl/include/openssl/
rsa.h 7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
89 unsigned char *to,
92 unsigned char *to,
95 unsigned char *to,
98 unsigned char *to,
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 24 ; * 14496-2. Furthermore, indexes 6 to 9 indicate the
25 ; * alpha blocks spatially corresponding to luminance
26 ; * blocks 0 to 3 in the same macroblock.
27 ; * [in] pCoefBufRow pointer to the coefficient row buffer
28 ; * [in] pQpBuf pointer to the quantization parameter buffer
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 24 ; * 14496-2. Furthermore, indexes 6 to 9 indicate the
25 ; * alpha blocks spatially corresponding to luminance
26 ; * blocks 0 to 3 in the same macroblock.
27 ; * [in] pCoefBufRow pointer to the coefficient row buffer
28 ; * [in] pQpBuf pointer to the quantization parameter buffer
  /ndk/sources/cxx-stl/llvm-libc++/
Android.mk 37 # For now, this library can only be used to build C++11 binaries.
47 # LIBCXXRT tells the library to support building against the libcxxrt
52 # Since libcxxrt seems to hard to port to Android, use GAbi++ instead.
54 # to tell them they'll be part of libc++.
56 # This is also used in a couple of places inside of libc++ to deal with
62 # Find the GAbi++ sources to include them here.
63 # The voodoo below is to allow building libc++ out of the NDK source
64 # tree. This can make it easier to experiment / update / debug it
    [all...]
  /sdk/emulator/opengl/
Android.mk 4 # You must define BUILD_EMULATOR_OPENGL to 'true' in your environment to
7 # Also define BUILD_EMULATOR_OPENGL_DRIVER to 'true' to build the gralloc
16 # This is always set to a module's LOCAL_C_INCLUDES
22 # This is always set to a module's LOCAL_CFLAGS
27 # Uncomment the following line if you want to enable debug traces
39 # For the import/export feature to work properly, you must include
46 # Note that the build system will complain if you try to import a
52 # It will be used by other modules to generate wire protocol encode/decode
    [all...]

Completed in 2832 milliseconds

<<21222324252627282930>>