HomeSort by relevance Sort by last modified time
    Searched refs:end (Results 201 - 225 of 11212) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebKit/chromium/src/
WebURLLoadTiming.cpp 81 void WebURLLoadTiming::setProxyEnd(int end)
83 m_private->proxyEnd = end;
101 void WebURLLoadTiming::setDNSEnd(int end)
103 m_private->dnsEnd = end;
121 void WebURLLoadTiming::setConnectEnd(int end)
123 m_private->connectEnd = end;
141 void WebURLLoadTiming::setSendEnd(int end)
143 m_private->sendEnd = end;
151 void WebURLLoadTiming::setReceiveHeadersEnd(int end)
153 m_private->receiveHeadersEnd = end;
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebDocumentPrivate.h 37 @end
43 @end
66 @end
70 @end
84 @end
87 @end
  /ndk/tests/device/test-gnustl-full/unit/
rndshf_test.cpp 56 __iota(v1.begin(), v1.end(), 0);
61 random_shuffle(v1.begin(), v1.end(), r);
62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1);
63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1);
64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1);
65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1);
66 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 4)==1);
67 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 5)==1);
68 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 6)==1);
69 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 7)==1)
    [all...]
  /ndk/tests/device/test-stlport/unit/
rndshf_test.cpp 56 __iota(v1.begin(), v1.end(), 0);
61 random_shuffle(v1.begin(), v1.end(), r);
62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1);
63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1);
64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1);
65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1);
66 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 4)==1);
67 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 5)==1);
68 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 6)==1);
69 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 7)==1)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCharStream.h 49 @end
  /external/chromium/chrome/browser/ui/cocoa/
chrome_browser_window.h 26 @end
floating_bar_backing_view.h 13 @end
nsview_additions.h 16 @end
  /external/chromium/chrome/browser/ui/cocoa/download/
download_shelf_view.h 18 @end
  /external/chromium/chrome/browser/ui/cocoa/extensions/
chevron_menu_button_cell.h 17 @end
  /external/chromium/chrome/browser/ui/cocoa/find_bar/
find_bar_view.h 22 @end
  /external/chromium/chrome/browser/ui/cocoa/infobars/
infobar_gradient_view.h 15 @end
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
instant_opt_in_view.h 14 @end
omnibox_popup_view.h 15 @end
  /external/clang/test/Sema/
pragma-arc-cf-code-audited.c 3 #pragma clang arc_cf_code_audited foo // expected-error {{expected 'begin' or 'end'}}
5 #pragma clang arc_cf_code_audited begin foo // expected-warning {{extra tokens at end of #pragma directive}}
7 #pragma clang arc_cf_code_audited end
8 #pragma clang arc_cf_code_audited end // expected-error {{not currently inside '#pragma clang arc_cf_code_audited'}}
  /external/clang/test/SemaCXX/
for-range-no-std.cpp 6 int *end();
14 int end(Range);
24 iter end(ADL);
29 NS::iter end(NS::NoADL);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Line.java 47 * A simple line implementation with a start and an end.
54 private Vector3f end; field in class:Line
59 public Line(Vector3f start, Vector3f end) {
61 updateGeometry(start, end);
64 protected void updateGeometry(Vector3f start, Vector3f end) {
66 this.end = end;
68 end.x, end.y, end.z,})
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
SliceFunction.java 28 * Returns the string slice starting at start and ending at end, similar to the Python slice
34 * @param args 1 string values then 2 numeric values (start and end).
43 int end = endValue.asNumber(); local
48 if (end == 0) {
49 end = length;
53 if (end < 0) {
54 end += length;
57 end = min(end, length);
59 if (end < start)
    [all...]
  /external/oprofile/libutil++/
glob_filter.cpp 30 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(str));
31 if (cit != exclude.end())
34 cit = find_if(include.begin(), include.end(), fnmatcher(str));
35 if (include.empty() || cit != include.end())
string_filter.cpp 40 cit = find(exclude.begin(), exclude.end(), str);
41 if (cit != exclude.end())
44 cit = find(include.begin(), include.end(), str);
45 if (include.empty() || cit != include.end())
  /external/webkit/Source/WebCore/platform/graphics/
SegmentedFontData.cpp 41 Vector<FontDataRange>::const_iterator end = m_ranges.end(); local
42 for (Vector<FontDataRange>::const_iterator it = m_ranges.begin(); it != end; ++it) {
51 Vector<FontDataRange>::const_iterator end = m_ranges.end(); local
52 for (Vector<FontDataRange>::const_iterator it = m_ranges.begin(); it != end; ++it) {
78 Vector<FontDataRange>::const_iterator end = m_ranges.end(); local
79 for (Vector<FontDataRange>::const_iterator it = m_ranges.begin(); it != end; ++it) {
  /external/webkit/Source/WebCore/platform/text/
ParserUtilities.h 29 inline bool skipString(const UChar*& ptr, const UChar* end, const UChar* name, int length)
31 if (end - ptr < length)
39 inline bool skipString(const UChar*& ptr, const UChar* end, const char* str)
42 if (end - ptr < length)
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultUIDelegate.h 36 @end
  /external/webkit/Source/WebKit/mac/Misc/
WebCache.h 35 @end
WebIconDatabasePrivate.h 66 @end
72 @end

Completed in 136 milliseconds

1 2 3 4 5 6 7 891011>>