HomeSort by relevance Sort by last modified time
    Searched full:second (Results 76 - 100 of 8787) sorted by null

1 2 34 5 6 7 8 91011>>

  /sdk/emulator/opengl/tests/ut_renderer/
Renderer.cpp 85 if (i->second->destroy(m_nw)) {
100 shared = sctx->second;
125 if (i->second->destroy()) {
143 if (c->second != currentContext) {
146 c->second->ref();
147 eglContext = c->second->eglContext();
148 thread->setCurrentContext(c->second);
149 thread->glDecoder().setContextData(&c->second->decoderContextData());
150 thread->gl2Decoder().setContextData(&c->second->decoderContextData());
153 eglContext = c->second->eglContext()
    [all...]
  /external/chromium/chrome/browser/net/
load_timing_observer.cc 78 return &it->second;
183 if (!it->second.connect_start.is_null()) {
184 timing.connect_start = TimeTicksToOffset(it->second.connect_start,
187 if (!it->second.connect_end.is_null())
188 timing.connect_end = TimeTicksToOffset(it->second.connect_end, record);
189 if (!it->second.dns_start.is_null())
190 timing.dns_start = TimeTicksToOffset(it->second.dns_start, record);
191 if (!it->second.dns_end.is_null())
192 timing.dns_end = TimeTicksToOffset(it->second.dns_end, record);
193 if (!it->second.ssl_start.is_null()
    [all...]
  /cts/tests/assets/webkit/
test_secondPage.html 17 <title>Second page</title>
19 <h1>Second page</h1>
  /external/chromium/chrome/browser/prefs/
pref_value_map.cc 22 *value = entry->second;
33 *value = entry->second;
45 if (Value::Equals(entry->second, value))
47 delete entry->second;
48 entry->second = value_ptr.release();
59 delete entry->second;
116 if (!this_pref->second->Equals(other_pref->second))
  /external/clang/include/clang/AST/
SelectorLocationsKind.h 35 /// "[foo first:1 second:2]" / "-(id)first:(int)x second:(int)y;
41 /// "[foo first: 1 second: 2]" / "-(id)first: (int)x second: (int)y;
55 /// before arguments: "[foo first: 1 second: 2]"
56 /// If false: "[foo first:1 second:2]"
73 /// before arguments: "-(id)first: (int)x second: (int)y;"
74 /// If false: "-(id)first:(int)x second:(int)y;"
  /external/clang/test/Preprocessor/
c99-6_10_3_4_p9.c 15 showlist(The first, second, and third items.);
16 // CHECK: puts("The first, second, and third items.");
  /external/compiler-rt/BlocksRuntime/tests/
localisglobal.c 21 int aresame(void *first, void *second) {
23 long *s = (long *)second;
  /external/junit/src/org/junit/runner/manipulation/
Filter.java 36 public Filter intersect(Filter second) {
37 return second;
94 * by this Filter and {@code second}
96 public Filter intersect(final Filter second) {
97 if (second == this || second == ALL) {
105 && second.shouldRun(description);
110 return first.describe() + " and " + second.describe();
  /external/kernel-headers/original/linux/hdlc/
ioctl.h 5 unsigned int clock_rate; /* bits per second */
11 unsigned int clock_rate; /* bits per second */
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/
DateTime.java 39 private final int second; field in class:DateTime
42 public DateTime(String yearString, int month, int day, int hour, int minute, int second, int timeZone) {
44 this.date = convertToDate(year, month, day, hour, minute, second, timeZone);
49 this.second = second;
69 public static Date convertToDate(int year, int month, int day, int hour, int minute, int second, int timeZone) {
71 c.set(year, month - 1, day, hour, minute, second);
107 return second;
  /external/chromium/base/
spin_wait.h 12 // We provide a simple one argument spin wait (for 1 second), and a generic
22 // Provide a macro that will wait no longer than 1 second for an asynchronous
29 // the time (1 second) expires.
30 // Since tests generally have a 5 second watch dog timer, this spin loop is
  /external/chromium/chrome/browser/policy/
policy_map.cc 22 return entry == map_.end() ? NULL : entry->second;
33 delete entry->second;
70 return a.first == b.first && Value::Equals(a.second, b.second);
  /external/chromium/chrome/browser/profiles/
profile_keyed_service_factory.cc 43 service = it->second;
79 if (it != mapping_.end() && it->second)
80 it->second->Shutdown();
87 delete it->second;
  /external/chromium/chrome/browser/sidebar/
sidebar_manager.cc 45 if (it->second.active_content_id.empty())
48 it->second.content_id_to_sidebar_host.find(it->second.active_content_id);
49 DCHECK(host_it != it->second.content_id_to_sidebar_host.end());
50 return host_it->second;
60 it->second.content_id_to_sidebar_host.find(content_id);
61 if (host_it == it->second.content_id_to_sidebar_host.end())
63 return host_it->second;
129 if (it->second.active_content_id == content_id)
136 it->second.active_content_id = content_id
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
model_type_payload_map.cc 40 value->SetString(syncable::ModelTypeToString(it->first), it->second);
52 (*original)[i->first] = i->second;
53 } else if (i->second.length() > 0) {
56 (*original)[i->first] = i->second;
  /external/clang/test/Index/
warning-flags.c 6 // RUN: c-index-test -test-load-source all -Wno-return-type %s 2>&1|FileCheck -check-prefix=CHECK-SECOND-WARNING %s
7 // RUN: c-index-test -test-load-source-reparse 5 all -Wno-return-type %s 2>&1|FileCheck -check-prefix=CHECK-SECOND-WARNING %s
14 // CHECK-SECOND-WARNING-NOT:control reaches end of non-void
15 // CHECK-SECOND-WARNING: warning: incompatible pointer types returning 'float *' from a function with result type 'int *'
  /external/markdown/tests/misc/
two-spaces.txt 4 and this is the second from last line
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Pair.java 33 public final B second; field in class:Pair
35 public Pair(A first, B second) {
37 this.second = second;
  /external/valgrind/main/massif/tests/
peak.c 10 free(p); // only every second one does.
  /external/webkit/Source/WebCore/manual-tests/
display-none-option.html 10 <option>Second choice</option>
  /external/webkit/Source/WebCore/manual-tests/wml/
access-target.wml 7 <p>If the test passes, this deck will jump to "targetdeck.wml" after 3 second</p>
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
uniq.sed 18 # back working on the second.
  /development/ndk/samples/two-libs/jni/
Android.mk 32 # second lib, which will depend on and include the first one
36 LOCAL_MODULE := libtwolib-second
37 LOCAL_SRC_FILES := second.c
  /external/chromium/chrome/browser/chromeos/notifications/
balloon_view_host.cc 23 if (!ret.second)
25 return ret.second;
39 callback->second->Run(&params.arguments);
  /external/openfst/src/script/
replace.cc 28 if (!ArcTypesMatch(*tuples[i].second, *tuples[i+1].second, "Replace")) {
33 if (!ArcTypesMatch(*tuples[0].second, *ofst, "Replace")) return;

Completed in 2378 milliseconds

1 2 34 5 6 7 8 91011>>