HomeSort by relevance Sort by last modified time
    Searched refs:before (Results 276 - 300 of 2355) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_gcc.h 11 # error GNU compilers before 2.95 are not supported anymore.
35 /* define for gcc versions before 3.4.0. */
55 /* For gcc before version 3 this macro is defined below */
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_gcc.h 11 # error GNU compilers before 2.95 are not supported anymore.
35 /* define for gcc versions before 3.4.0. */
55 /* For gcc before version 3 this macro is defined below */
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_gcc.h 11 # error GNU compilers before 2.95 are not supported anymore.
35 /* define for gcc versions before 3.4.0. */
55 /* For gcc before version 3 this macro is defined below */
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/
_gcc.h 11 # error GNU compilers before 2.95 are not supported anymore.
35 /* define for gcc versions before 3.4.0. */
55 /* For gcc before version 3 this macro is defined below */
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
TextEditor.java 54 public void onTextChanged(CharSequence s, int start, int before, int count) {
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
AccessPermissionWithDiffSigTest.java 1262 long before = System.currentTimeMillis(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
visitor.rb 70 before = pre_action || @pre_action
73 tree = before.call( tree ) unless before.nil? or flat
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ObjectTest.java 299 long before = System.currentTimeMillis(); local
302 long error = (after - before - delay);
306 // Allow jit to warm up before testing
309 toLong[count][1] = before;
319 sb.append(", before: ");
  /frameworks/base/core/java/android/content/
SyncRequest.java 47 * Amount of time before {@link #mSyncRunTimeSecs} from which the sync may optionally be
354 * @param beforeSeconds the amount of flex time in seconds before
368 private void setupInterval(long at, long before) {
369 if (before > at) {
374 mSyncFlexTimeSecs = before;
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
profiledata_unittest.cc 286 // space before the filename.
300 // before the filename.
329 void ExpectSameState(const ProfileData::State& before,
331 EXPECT_EQ(before.enabled, after.enabled);
332 EXPECT_EQ(before.samples_gathered, after.samples_gathered);
333 EXPECT_EQ(before.start_time, after.start_time);
334 EXPECT_STREQ(before.profile_name, after.profile_name);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
profiledata_unittest.cc 286 // space before the filename.
300 // before the filename.
329 void ExpectSameState(const ProfileData::State& before,
331 EXPECT_EQ(before.enabled, after.enabled);
332 EXPECT_EQ(before.samples_gathered, after.samples_gathered);
333 EXPECT_EQ(before.start_time, after.start_time);
334 EXPECT_STREQ(before.profile_name, after.profile_name);
  /external/markdown/markdown/
blockprocessors.py 228 before = block[:m.start()] # Lines before blockquote
229 # Pass lines before blockquote in recursively for parsing forst.
230 self.parser.parseBlocks(parent, [before])
343 before = block[:m.start()] # All lines before header
345 if before:
347 # lines before the header must be parsed first,
349 self.parser.parseBlocks(parent, [before])
399 # Check for lines in block before hr
    [all...]
  /external/opencv/cv/src/
_cvlist.h 3 // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
290 ELEMENT_##type* before;\
294 before = (ELEMENT_##type*)pos.m_pos;\
295 element->m_prev = before;\
296 element->m_next = before->m_next;\
297 before->m_next = element;\
  /frameworks/base/core/tests/coretests/src/android/net/
NetworkStatsTest.java 119 final NetworkStats before = new NetworkStats(TEST_START, 2) local
127 final NetworkStats result = after.subtract(before);
135 final NetworkStats before = new NetworkStats(TEST_START, 2) local
143 final NetworkStats result = after.subtract(before);
151 final NetworkStats before = new NetworkStats(TEST_START, 2) local
160 final NetworkStats result = after.subtract(before);
169 final NetworkStats before = new NetworkStats(TEST_START, 2) local
176 final NetworkStats result = after.subtract(before);
282 final NetworkStats before = new NetworkStats(TEST_START, 3) local
290 final NetworkStats after = before.withoutUids(new int[] { 100 })
    [all...]
  /external/compiler-rt/lib/asan/
asan_report.cc 101 static void PrintShadowByte(const char *before, u8 byte,
104 Printf("%s%s%x%x%s%s", before,
108 static void PrintShadowBytes(const char *before, u8 *bytes,
111 if (before)
112 Printf("%s%p:", before, bytes);
115 const char *before = p == guilty ? "[" : local
118 PrintShadowByte(before, *p, after);
445 // Use ScopedInErrorReport to run common actions just before and
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputConnection.java 258 // If we have some composing text and a space before, then we should have
513 // Get the nth word before cursor. n = 1 retrieves the word immediately before the cursor,
514 // n = 2 retrieves the word before that, and so on. This splits on whitespace only.
515 // Also, it won't return words that end in a separator (if the nth word before the cursor
563 * @param additionalPrecedingWordsCount the number of words before the current word that should
573 final CharSequence before = mIC.getTextBeforeCursor(Constants.EDITOR_CONTENTS_CACHE_SIZE, local
577 if (before == null || after == null) {
584 int startIndexInBefore = before.length();
588 final int codePoint = Character.codePointBefore(before, startIndexInBefore)
    [all...]
  /external/chromium_org/third_party/pexpect/
pexpect.py 148 ## """Raised when a buffer fills before matching an expected pattern."""
246 child_result_list.append(child.before + child.after)
250 child_result_list.append(child.before)
264 child_result_list.append(child.before)
267 child_result_list.append(child.before)
369 turn off stdin echo, but if you send your password before the
372 real keyboard. If you introduce a slight delay just before writing then
375 to sleep just before writing to the child application. 1/20th of a
402 self.before = None
426 # Data before searchwindowsize point is preserved, but not searched
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
html.css 72 -webkit-margin-before: 1__qem;
100 -webkit-margin-before: 1__qem;
112 -webkit-margin-before: 1em;
122 q:before {
138 -webkit-margin-before: 0.5em;
155 -webkit-margin-before: 0.67__qem;
164 -webkit-margin-before: 0.83__qem;
170 -webkit-margin-before: 1__qem;
176 -webkit-margin-before: 1.33__qem;
182 -webkit-margin-before: 1.67__qem
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
pep8.py 73 blank_lines: blank lines before this one
90 before the docstring, you can use \n for newline, \t for tab and \s
244 return # Don't expect blank lines before the first line
267 - Immediately before a comma, semicolon, or colon.
289 return found, "E202 whitespace before '%s'" % char
293 return found, "E203 whitespace before '%s'" % char
313 before = line[:index]
314 if char == ':' and before.count('[') > before.count(']'):
352 - Immediately before the open parenthesis that starts the argumen
    [all...]
  /frameworks/base/core/java/android/widget/
CalendarView.java 120 * before acting on it.
356 if (mMaxDate.before(mMinDate)) {
357 throw new IllegalArgumentException("Max date cannot be before min date.");
409 if (mTempDate.before(mMinDate)) {
411 } else if (mMaxDate.before(mTempDate)) {
749 if (date.before(mMinDate)) {
754 if (date.before(mMinDate)) {
905 * @throws IllegalArgumentException of the provided date is before the
924 * @throws IllegalArgumentException of the provided date is before the
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollAnimatorNoneTest.cpp 548 double before = m_currentPosition; local
552 EXPECT_NEAR(before, after, 10);
557 before = m_currentPosition;
561 EXPECT_NEAR(before, after, 10);
621 double before = m_currentPosition; local
625 EXPECT_NEAR(before, after, 10);
630 before = m_currentPosition;
634 EXPECT_NEAR(before, after, 10);
1017 double before = m_currentPosition; local
1038 double before = m_currentPosition; local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_database.cc 486 // Ensure we haven't been run before.
584 const base::TimeTicks before = base::TimeTicks::Now(); local
590 << (base::TimeTicks::Now() - before).InMilliseconds() << " ms";
592 base::TimeTicks::Now() - before);
940 const base::TimeTicks before = base::TimeTicks::Now(); local
1318 const base::TimeTicks before = base::TimeTicks::Now(); local
1435 const base::TimeTicks before = base::TimeTicks::Now(); local
1498 const base::TimeTicks before = base::TimeTicks::Now(); local
1564 const base::TimeTicks before = base::TimeTicks::Now(); local
    [all...]
  /bootable/recovery/mtdutils/
mtdutils.c 290 struct mtd_ecc_stats before, after; local
291 if (ioctl(fd, ECCGETSTATS, &before)) {
308 } else if (after.failed != before.failed) {
310 after.corrected - before.corrected,
311 after.failed - before.failed, pos);
313 memcpy(&before, &after, sizeof(struct mtd_ecc_stats));
  /development/scripts/app_engine_server/
memcache_zipserve.py 173 # Apply manual redirects from redirects.yaml. This occurs before any
195 # in the intl/lang tree. Before going to 404, see if there is an
592 (2) Upper case letters before lower case letters. The traversal of a
594 before the files of any child directories
613 """Determines whether file1 is lexigraphically 'before' file2.
616 with parent directories' files stored before childs'
618 We say that file1 is lexigraphically before file2 if the last non-matching
619 path segment of file1 is alphabetically before file2.
626 A positive number if file1 is before file2
627 A negative number if file2 is before file
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
widgets.css 118 input[type='checkbox']:checked::before {
128 html[dir='rtl'] input[type='checkbox']:checked::before {
132 input[type='radio']:checked::before {

Completed in 867 milliseconds

<<11121314151617181920>>