HomeSort by relevance Sort by last modified time
    Searched full:within (Results 151 - 175 of 6810) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_task.h 8 // - Fetch |http_url| within |url_fetch_deadline_ms| msec.
11 // - Connect to |url| with WebSocket protocol within
16 // wait it from server within |websocket_hello_echoback_deadline_ms| msec.
22 // - Wait for some message from server within
26 // - Expect that |websocket_bye_message| message arrives within
  /external/clang/test/Sema/
parentheses.c 29 (void)(i & i | i); // expected-warning {{'&' within '|'}} \
32 (void)(i | i & i); // expected-warning {{'&' within '|'}} \
36 i && i); // expected-warning {{'&&' within '||'}} \
40 (void)(i || i && "w00t" || i); // expected-warning {{'&&' within '||'}} \
42 (void)(i || "w00t" && i || i); // expected-warning {{'&&' within '||'}} \
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Rectangle.java 41 * <code>Rectangle</code> defines a finite plane within three dimensional space
141 * <code>random</code> returns a random point within the plane defined by:
144 * @return a random point within the rectangle.
151 * <code>random</code> returns a random point within the plane defined by:
156 * @return a random point within the rectangle.
Ring.java 40 * <code>Ring</code> defines a flat ring or disk within three dimensional
167 * <code>random</code> returns a random point within the ring.
169 * @return a random point within the ring.
177 * <code>random</code> returns a random point within the ring.
180 * @return a random point within the ring.
  /frameworks/base/core/java/android/app/backup/
BackupDataInputStream.java 24 * entity's data during a restore operation. Used by {@link BackupHelper} classes within the {@link
69 * {@code offset} within the array.
73 * within the array.
75 * data exists within the entity to fulfill this request, only as much data
98 * Report the key string associated with this entity within the backup data set.
FileBackupHelper.java 47 * Construct a helper to manage backup/restore of entire files within the
68 * This should only be called directly from within the {@link BackupAgentHelper}
91 * This should only be called directly from within the {@link BackupAgentHelper}
  /external/chromium/chrome/browser/ui/views/frame/
browser_view_layout.h 48 // is within the views managed by the laymanager. Returns one of
120 // The bounds within which the vertically-stacked contents of the BrowserView
121 // should be laid out within. When the SideTabstrip is not visible, this is
  /external/clang/docs/
BlockLanguageSpec.txt 80 The compound statement body establishes a new lexical scope within that of its parent. Variables used within the scope of the compound statement are bound to the Block in the normal manner with the exception of those in automatic (stack) storage. Thus one may access functions and global variables as one would expect, as well as static local variables. [testme]
82 Local automatic (stack) variables referenced within the compound statement of a Block are imported and captured by the Block as const copies. The capture (binding) is performed at the time of the Block literal expression evaluation.
84 The lifetime of variables declared in a Block is that of a function; each activation frame contains a new copy of variables declared within the local scope of the Block. Such variable declarations should be allowed anywhere [testme] rather than only when C99 parsing is requested, including for statements. [testme]
86 Block literal expressions may occur within Block literal expressions (nest) and all variables captured by any nested blocks are implicitly also captured in the scopes of their enclosing Blocks.
113 In addition to the new Block type we also introduce a new storage qualifier, __block, for local variables. [testme: a __block declaration within a block literal] The __block storage qualifier is mutually exclusive to the existing local storage qualifiers auto, register, and static.[testme] Variables qualified by __block act as if they were in allocated storage and this storage is automatically recovered after last use of said variable. An implementation may choose an optimization where the storage is initially automatic and only "moved" to allocated (heap) storage upon a Block_copy of a referencing Block. Such variables may be mutated as normal variables are.
129 Within a Block literal expression within a method definition references to instance variables are also imported into the lexical scope of the compound statement. These variables are implicitly qualified as references from self, and so self is imported as a const copy. The net effect is that instance variables can be mutated.
131 The Block_copy operator retains all objects held in variables of automatic storage referenced within the Block expression (or form strong references if running under garbage collection). Object variables of __block storage type are assumed to hold normal pointers with no provision for retain and release messages.
144 Block literal expressions within functions are extended to allow const use of C++ objects, pointers, or references held in automati (…)
    [all...]
  /external/freetype/include/freetype/
ftbdf.h 186 * A `property' is a either key-value pair within the STARTPROPERTIES
188 * `info->props' array within a `FontRec' structure of a PCF font.
190 * Integer properties are always stored as `signed' within PCF fonts;
  /external/icu4c/samples/msgfmt/
README.TXT 75 within a MessageFormat pattern.
77 Use a ChoiceFormat pattern within the MessageFormat pattern, instead
80 EXTRA: Embed a number element within the choice element to handle
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberMatch.java 24 * The immutable match of a phone number within a piece of text. Matches may be found using
88 /** Returns the start index of the matched phone number within the searched text. */
93 /** Returns the exclusive end index of the matched phone number within the searched text. */
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_enum.h 62 // within the enum's package namespace, but NOT within any class, even for
70 // For enums nested within a message, generate code to import all the enum's
  /frameworks/base/media/mca/effect/java/android/media/effect/
EffectContext.java 29 * <p>An EffectContext keeps all necessary state information to run Effects within a Open GL ES 2.0
52 * Creates a context within the current GL context.
68 * <p>The EffectFactory returned from this method allows instantiating new effects within this
  /libcore/luni/src/main/java/javax/net/ssl/
SSLParameters.java 44 * use within the SSLParameters, or null.
56 * use within the SSLParameters, or null.
58 * use within the SSLParameters, or null.
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/
ObsoleteLayoutParamsDetectorTest.java 53 "wrongparams3.xml:5: Warning: Invalid layout param 'layout_alignParentTop' (included from within a LinearLayout in layout/wrongparams4.xml)",
61 "wrongparams5.xml:15: Warning: Invalid layout param 'layout_alignParentLeft' (included from within a LinearLayout in layout/wrongparams6.xml)\n" +
62 "wrongparams5.xml:8: Warning: Invalid layout param 'layout_alignParentTop' (included from within a LinearLayout in layout/wrongparams6.xml)",
  /development/testrunner/test_defs/
test_walker.py 83 # tests within this directory
86 logger.SilentLog('No tests found within %s, searching upwards' % path)
91 """Return true if given path is within current Android build tree.
97 True if path is within Android build tree
111 ValueError: if path is not within build tree
120 """Recursively finds all tests within given path.
  /external/clang/www/analyzer/
xcode.html 5 <title>Build and Analyze: running the analyzer within Xcode</title>
17 <h1>Build and Analyze: running the analyzer within Xcode</h1>
26 within Xcode</a>.</p>
29 presents analysis results directly within Xcode's editor.</p>
43 <li><b>Integrated workflow:</b> Results are integrated within Xcode. There is
97 specify for static analysis. Within this model it provides you two basic modes:</p>
  /external/libnfc-nxp/src/
phFriNfc_ISO15693Map.h 71 * within a context variable (must not be modified by the integration).
87 * \retval NFCSTATUS_RF_TIMEOUT No data has been received within the TIMEOUT period.
115 * within a context variable (must not be modified by the integration).
132 * \retval NFCSTATUS_RF_TIMEOUT No data has been received within the TIMEOUT period.
157 * \retval NFCSTATUS_RF_TIMEOUT No data has been received within the TIMEOUT period.
208 * \retval NFCSTATUS_RF_TIMEOUT No data has been received within the TIMEOUT period.
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.5-1.js 40 6. Let c be the character at position k within Result(1).
43 9. If the character at position k+1 within result(1) is not u, go to step
45 10. If the four characters at positions k+2, k+3, k+4, and k+5 within
49 within Result(1).
53 15. If the two characters at positions k+1 and k+2 within Result(1) are not
57 within Result(1).
15.1.2.5-3.js 44 6. Let c be the character at position k within Result(1).
47 9. If the character at position k+1 within result(1) is not u, go to step
49 10. If the four characters at positions k+2, k+3, k+4, and k+5 within
53 within Result(1).
57 15. If the two characters at positions k+1 and k+2 within Result(1) are not
61 within Result(1).
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
FileFilter.java 156 * Path given should relative within LayoutTests folder, e.g. fast/dom/foo.html
159 * - a relative path within LayoutTests folder
176 * Path given should relative within LayoutTests folder, e.g. fast/dom/foo.html
179 * - a relative path within LayoutTests folder
196 * Path given should relative within LayoutTests folder, e.g. fast/dom/foo.html
199 * - a relative path within LayoutTests folder
  /libcore/luni/src/main/java/java/sql/
Clob.java 33 * for searching for data within the {@code Clob}.
86 * the position within this {@code Clob} to start the search
88 * Clob} occurs within this {@code Clob}.
101 * the position at which to start the search within this {@code
104 * occurs within this {@code Clob}.
159 * the offset within {@code str} to start writing from.
  /development/host/windows/usb/
NOTICE 64 subsequently incorporated within the Work.
84 or a Contribution incorporated within the Work constitutes direct
109 within such NOTICE file, excluding those notices that do not
111 of the following places: within a NOTICE text file distributed
112 as part of the Derivative Works; within the Source form or
114 within a display generated by the Derivative Works, if and
118 notices within Derivative Works that You distribute, alongside
187 identification within third-party archives.
  /development/scripts/app_engine_server/
LICENSE 65 subsequently incorporated within the Work.
85 or a Contribution incorporated within the Work constitutes direct
110 within such NOTICE file, excluding those notices that do not
112 of the following places: within a NOTICE text file distributed
113 as part of the Derivative Works; within the Source form or
115 within a display generated by the Derivative Works, if and
119 notices within Derivative Works that You distribute, alongside
188 identification within third-party archives.
  /external/android-mock/
LICENSE.txt 65 subsequently incorporated within the Work.
85 or a Contribution incorporated within the Work constitutes direct
110 within such NOTICE file, excluding those notices that do not
112 of the following places: within a NOTICE text file distributed
113 as part of the Derivative Works; within the Source form or
115 within a display generated by the Derivative Works, if and
119 notices within Derivative Works that You distribute, alongside
188 identification within third-party archives.

Completed in 1096 milliseconds

1 2 3 4 5 67 8 91011>>