HomeSort by relevance Sort by last modified time
    Searched full:over (Results 426 - 450 of 13432) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/common/unicode/
uchriter.h 22 * A concrete subclass of CharacterIterator that iterates over the
25 * iterator that iterates over an entire UChar array, but also to
26 * create one that iterates over only a subrange of a UChar array
27 * (iterators over different subranges of the same UChar array don't
36 * Create an iterator over the UChar array referred to by "textPtr".
40 * @param textPtr The UChar array to be iterated over
47 * Create an iterator over the UChar array referred to by "textPtr".
54 * @param textPtr The UChar array to be iteratd over
63 * Create an iterator over the UChar array referred to by "textPtr".
71 * @param textPtr The UChar array to be iterated over
    [all...]
  /prebuilts/go/darwin-x86/src/image/draw/
draw_test.go 127 {"nop", vgradGreen(255), fillAlpha(0), Over, color.RGBA{136, 0, 0, 255}},
133 {"fill", fillBlue(90), fillAlpha(255), Over, color.RGBA{88, 0, 90, 255}},
135 {"fillAlpha", fillBlue(90), fillAlpha(192), Over, color.RGBA{100, 0, 68, 255}},
137 {"fillNil", fillBlue(90), nil, Over, color.RGBA{88, 0, 90, 255}},
143 {"copy", vgradGreen(90), fillAlpha(255), Over, color.RGBA{88, 48, 0, 255}},
145 {"copyAlpha", vgradGreen(90), fillAlpha(192), Over, color.RGBA{100, 36, 0, 255}},
147 {"copyNil", vgradGreen(90), nil, Over, color.RGBA{88, 48, 0, 255}},
154 {"nrgba", vgradGreenNRGBA(90), fillAlpha(255), Over, color.RGBA{88, 46, 0, 255}},
156 {"nrgbaAlpha", vgradGreenNRGBA(90), fillAlpha(192), Over, color.RGBA{100, 34, 0, 255}},
158 {"nrgbaNil", vgradGreenNRGBA(90), nil, Over, color.RGBA{88, 46, 0, 255}}
    [all...]
  /prebuilts/go/linux-x86/src/image/draw/
draw_test.go 127 {"nop", vgradGreen(255), fillAlpha(0), Over, color.RGBA{136, 0, 0, 255}},
133 {"fill", fillBlue(90), fillAlpha(255), Over, color.RGBA{88, 0, 90, 255}},
135 {"fillAlpha", fillBlue(90), fillAlpha(192), Over, color.RGBA{100, 0, 68, 255}},
137 {"fillNil", fillBlue(90), nil, Over, color.RGBA{88, 0, 90, 255}},
143 {"copy", vgradGreen(90), fillAlpha(255), Over, color.RGBA{88, 48, 0, 255}},
145 {"copyAlpha", vgradGreen(90), fillAlpha(192), Over, color.RGBA{100, 36, 0, 255}},
147 {"copyNil", vgradGreen(90), nil, Over, color.RGBA{88, 48, 0, 255}},
154 {"nrgba", vgradGreenNRGBA(90), fillAlpha(255), Over, color.RGBA{88, 46, 0, 255}},
156 {"nrgbaAlpha", vgradGreenNRGBA(90), fillAlpha(192), Over, color.RGBA{100, 34, 0, 255}},
158 {"nrgbaNil", vgradGreenNRGBA(90), nil, Over, color.RGBA{88, 46, 0, 255}}
    [all...]
  /packages/apps/TV/res/values/
rating_system_strings.xml 22 <string name="description_age_4" translatable="false">Recommended for ages 4 and over.</string>
23 <string name="description_age_5" translatable="false">Recommended for ages 5 and over.</string>
24 <string name="description_age_6" translatable="false">Recommended for ages 6 and over.</string>
25 <string name="description_age_7" translatable="false">Recommended for ages 7 and over.</string>
26 <string name="description_age_8" translatable="false">Recommended for ages 8 and over.</string>
27 <string name="description_age_9" translatable="false">Recommended for ages 9 and over.</string>
28 <string name="description_age_10" translatable="false">Recommended for ages 10 and over.</string>
29 <string name="description_age_11" translatable="false">Recommended for ages 11 and over.</string>
30 <string name="description_age_12" translatable="false">Recommended for ages 12 and over.</string>
31 <string name="description_age_13" translatable="false">Recommended for ages 13 and over.</string
    [all...]
  /external/clang/include/clang/Tooling/
Tooling.h 14 // to run over. The tool will then run a user-specified FrontendAction over
17 // It is also possible to run a FrontendAction over a snippet of code by
20 // Applications that need more fine grained control over how to run
21 // multiple FrontendActions over code can use ToolInvocation.
24 // - running clang -fsyntax-only over source code from an editor to get
26 // - running match/replace tools over C++ code
143 /// \param ToolAction The action to run over the code.
162 /// \param ToolAction The action to run over the code.
272 /// \brief Utility to run a FrontendAction over a set of files
    [all...]
  /external/v8/src/
global-handles.h 186 // Iterates over all strong handles.
189 // Iterates over all handles.
192 // Iterates over all handles that have embedder-assigned class ID.
195 // Iterates over all handles in the new space that have embedder-assigned
199 // Iterate over all handles in the new space that are weak, unmodified
203 // Iterates over all weak roots in heap.
211 // scavenge collections and iterate over sets of handles that are
215 // Iterates over strong and dependent handles. See the node above.
222 // Iterates over weak independent or partially independent handles.
231 // Iterates over weak independent or unmodified handles
    [all...]
  /external/clang/docs/
LibTooling.rst 15 Tools built with LibTooling, like Clang Plugins, run ``FrontendActions`` over
21 ``SyntaxOnlyAction``, which runs a quick syntax check, over a bunch of code.
26 If you ever wanted to run a ``FrontendAction`` over some sample code, for
35 // runToolOnCode returns whether the action was correctly run over the
84 our ``FrontendAction`` over some code. For example, to run the
85 ``SyntaxOnlyAction`` over the files "a.cc" and "b.cc" one would write:
89 // A clang tool can run over a number of sources in the same process...
94 // We hand the CompilationDatabase we created and the sources to run over into
170 Now you can run :program:`clang-check` over files in the project by specifying
Tooling.rst 31 * want full control over the Clang AST
50 * need full control over the Clang AST
57 * need to run over a specific subset of files in your project which is not
72 * want to run tools over a single file, or a specific subset of files,
74 * want full control over the Clang AST
  /frameworks/base/docs/html/distribute/analyze/
understand-user-value.jd 9 value over time. Fundamentally, users are people ? and no two people are
56 back over time.
88 come back over time and when usage tends to fall off. You can easily take this same
96 <h2 id="measure-value">Measure Value over Time</h2>
101 value over time. To get the most out of this report, it?s important to start with a clear
107 revenue per user and number of screen views per user over a period of 90 days. For example, if
110 your app over time.
115 campaigns. If your cost to acquire a new user is higher than the average value over time,
126 such as how their purchase patterns change over time. However, in order to
  /libcore/ojluni/src/main/java/java/util/
AbstractSequentialList.java 194 * <p>This implementation gets an iterator over the specified collection and
195 * a list iterator over this list pointing to the indexed element (with
196 * <tt>listIterator(index)</tt>). Then, it iterates over the specified
199 * <tt>ListIterator.next</tt> (to skip over the added element).
231 * Returns an iterator over the elements in this list (in proper
234 * This implementation merely returns a list iterator over the list.
236 * @return an iterator over the elements in this list (in proper sequence)
243 * Returns a list iterator over the elements in this list (in proper
248 * @return a list iterator over the elements in this list (in proper
  /prebuilts/go/darwin-x86/test/
goto.go 42 goto L // ERROR "goto L jumps over declaration of x at LINE+1|goto jumps over declaration"
60 goto L // ERROR "goto L jumps over declaration of x at LINE+5|goto jumps over declaration"
80 goto L // ERROR "goto L jumps over declaration of x at LINE+1|goto jumps over declaration"
90 goto L // ERROR "goto L jumps over declaration of x at LINE+1|goto jumps over declaration"
143 // error prefers block diagnostic over declaration diagnostic
  /prebuilts/go/linux-x86/test/
goto.go 42 goto L // ERROR "goto L jumps over declaration of x at LINE+1|goto jumps over declaration"
60 goto L // ERROR "goto L jumps over declaration of x at LINE+5|goto jumps over declaration"
80 goto L // ERROR "goto L jumps over declaration of x at LINE+1|goto jumps over declaration"
90 goto L // ERROR "goto L jumps over declaration of x at LINE+1|goto jumps over declaration"
143 // error prefers block diagnostic over declaration diagnostic
  /external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java 54 * An array of headers to iterate over.
64 * Negative if the iteration is over.
71 * <code>null</code> to iterate over all headers in the array.
80 * @param headers an array of headers over which to iterate
81 * @param name the name of the headers over which to iterate, or
BasicListHeaderIterator.java 56 * A list of headers to iterate over.
64 * Negative if the iteration is over.
78 * <code>null</code> to iterate over all headers in the array.
87 * @param headers a list of headers over which to iterate
88 * @param name the name of the headers over which to iterate, or
  /external/autotest/client/cros/cellular/mbim_compliance/
mbim_device_context.py 53 # descirptor corresponds to the alternate setting of the interface over
58 # descriptor corresponds to the alternate setting of the interface over
63 # descriptor corresponds to the alternate setting of the interface over
68 # descriptor corresponds to the alternate setting of the interface over
73 # descriptor corresponds to the alternate setting of the interface over
  /external/chromium-trace/catapult/dashboard/dashboard/
main.py 89 return 'over-50'
91 return 'over-40'
93 return 'over-30'
95 return 'over-20'
97 return 'over-10'
  /external/curl/docs/
HTTP2.md 23 Over an http:// URL
32 use HTTP/2 at once over http://
34 Over an https:// URL
71 term for doing multiple independent transfers over the same physical TCP
76 attempt to re-use existing HTTP/2 connections and just add a new stream over
  /external/tcpdump/missing/
dlnames.c 62 DLT_CHOICE(DLT_ATM_RFC1483, "RFC 1483 IP-over-ATM"),
71 DLT_CHOICE(DLT_ATM_CLIP, "Linux Classical IP-over-ATM"),
74 DLT_CHOICE(DLT_PPP_SERIAL, "PPP over serial"),
107 DLT_CHOICE(DLT_IP_OVER_FC, "RFC 2625 IP-over-Fibre Channel"),
125 DLT_CHOICE(DLT_CIP, "Linux Classical IP-over-ATM"),
  /external/vulkan-validation-layers/loader/
debug_report.h 47 * Since the instance chain requires us iterating over the available ICDs
56 * takes an instance. That way we can iterate over the ICDs properly.
71 * The loader CreateMsgCallback terminator will iterate over the ICDs.
92 * iterate over the ICDs and
103 * ending in the loader's DestroyMsgCallback terminator which will iterate over
  /frameworks/base/docs/html/distribute/monetize/
payments.jd 20 <li>Direct carrier billing in over 35 countries.</li>
21 <li>Google Play gift cards in over 25 countries.</li>
22 <li>PayPal in over 20 countries.</li>
23 <li>Developers can sell their apps from over 75 countries.</li>
24 <li>Users can buy apps in over 135 countries.</li>
  /libcore/luni/src/main/java/org/w3c/dom/traversal/
NodeIterator.java 45 * be considered. Note that this skip takes precedence over the filter,
59 * that this rejection takes precedence over <code>whatToShow</code> and
80 * @return The next <code>Node</code> in the set being iterated over, or
92 * @return The previous <code>Node</code> in the set being iterated over,
103 * over, releasing any computational resources and placing the
  /libcore/ojluni/src/main/java/java/text/
StringCharacterIterator.java 46 * The <code>StringCharacterIterator</code> class iterates over the
71 * @param text The String to be iterated over
80 * Constructs an iterator over the given range of the given string, with the
83 * @param text The String to be iterated over
110 * @param text The String to be iterated over
  /dalvik/libdex/
DexCatch.h 28 * Catch handler entry, used while iterating over catch_handler_items.
44 * Iterator over catch handler data. This structure should be treated as
108 /* Get the handler offset just past the end of the one just iterated over.
  /device/htc/flounder/wifi_only_overlay/frameworks/base/core/res/res/values/
config.xml 22 USB interfaces. If the device doesn't want to support tething over USB this should
28 Wifi interfaces. If the device doesn't want to support tethering over Wifi this
34 bluetooth interfaces. If the device doesn't want to support tethering over bluetooth this
  /external/apache-http/src/org/apache/http/
HttpServerConnection.java 77 * Sends the response line and headers of a response over this connection.
86 * Sends the response entity of a response over this connection.
95 * Sends all pending buffered data over this connection.

Completed in 856 milliseconds

<<11121314151617181920>>