HomeSort by relevance Sort by last modified time
    Searched refs:second (Results 976 - 1000 of 5944) sorted by null

<<31323334353637383940>>

  /external/deqp/framework/randomshaders/
rsgExecutionContext.cpp 57 delete i->second;
76 const ExecValueStorage* samplerVal = m_varValues.find(sampler)->second;
80 return m_samplers2D.find(samplerNdx)->second;
85 const ExecValueStorage* samplerVal = m_varValues.find(sampler)->second;
89 return m_samplersCube.find(samplerNdx)->second;
  /external/guava/guava-tests/test/com/google/common/testing/
NullPointerTesterTest.java 179 * normalNullable: only second param is Nullable
212 public void reactToNullParameters(Object first, Object second) {
216 if (second == null) {
222 public void normalNormal(String first, Integer second) {
223 reactToNullParameters(first, second);
226 /** Two-arg method with the second param Nullable. */
227 public void normalNullable(String first, @Nullable Integer second) {
228 reactToNullParameters(first, second);
232 public void nullableNormal(@Nullable String first, Integer second) {
233 reactToNullParameters(first, second);
    [all...]
  /external/icu/icu4c/source/common/unicode/
normalizer2.h 217 * Appends the normalized form of the second string to the first string
220 * The first and second strings must be different objects.
222 * @param second string, will be normalized
232 const UnicodeString &second,
235 * Appends the second string to the first string
238 * The first and second strings must be different objects.
240 * @param second string, should be normalized
250 const UnicodeString &second,
482 * Appends the normalized form of the second string to the first string
485 * The first and second strings must be different objects
    [all...]
  /external/llvm/lib/IR/
TypeFinder.cpp 74 incorporateMDNode(MDForInst[i].second);
98 if (!VisitedTypes.insert(Ty).second)
115 if (VisitedTypes.insert(*I).second)
131 if (!VisitedConstants.insert(V).second)
152 if (!VisitedConstants.insert(V).second)
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryablePair.java 94 } else if (value.second == null) {
95 throw new UnsupportedOperationException("Pair#second must not be null");
99 mNestedTypeMarshalerSecond.marshal(value.second, buffer);
105 T2 second = mNestedTypeMarshalerSecond.unmarshal(buffer); local
108 return mConstructor.newInstance(first, second);
140 int secondSize = mNestedTypeMarshalerSecond.calculateMarshalSize(value.second);
  /frameworks/base/core/java/com/android/internal/http/
HttpDateTime.java 77 this.second = s;
82 int second; field in class:HttpDateTime.TimeOfDay
119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
220 int second = (timeString.charAt(i++) - '0') * 10 local
223 return new TimeOfDay(hour, minute, second);
  /external/chromium_org/content/browser/
child_process_security_policy_impl.cc 134 return (it->second & permissions) == permissions;
148 return (it->second & permissions) == permissions;
174 return judgment->second;
208 return (it->second & permissions) == permissions;
359 delete it->second;
429 state->second->GrantScheme(url.scheme());
449 state->second->GrantRequestOfSpecificFile(path);
481 state->second->GrantPermissionsForFile(file, permissions);
492 state->second->RevokeAllPermissionsForFile(file);
533 state->second->GrantPermissionForMidiSysEx()
    [all...]
  /external/chromium_org/chrome/browser/plugins/
plugin_finder.cc 197 if (language == metadata_it->second->language() &&
198 metadata_it->second->HasMimeType(mime_type)) {
199 *plugin_metadata = metadata_it->second->Clone();
202 installers_.find(metadata_it->second->identifier());
204 *installer = installer_it->second;
219 *plugin_metadata = metadata_it->second->Clone();
226 *installer = installer_it->second;
268 name = it->second->name();
278 if (!it->second->MatchesPlugin(plugin))
281 return it->second->Clone()
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
shader_manager_unittest.cc 182 EXPECT_EQ(it->second.type, variable_info->type);
183 EXPECT_EQ(it->second.size, variable_info->size);
184 EXPECT_EQ(it->second.precision, variable_info->precision);
185 EXPECT_EQ(it->second.static_use, variable_info->static_use);
186 EXPECT_EQ(it->second.name, variable_info->name);
193 EXPECT_EQ(it->second.type, variable_info->type);
194 EXPECT_EQ(it->second.size, variable_info->size);
195 EXPECT_EQ(it->second.precision, variable_info->precision);
196 EXPECT_EQ(it->second.static_use, variable_info->static_use);
197 EXPECT_EQ(it->second.name, variable_info->name)
    [all...]
framebuffer_manager.cc 294 Attachment* attachment = attachments_.begin()->second.get();
323 DCHECK(result.second);
357 const Attachment* attachment = it->second.get();
368 const Attachment* attachment = it->second.get();
419 Attachment* a = it->second.get();
434 Attachment* attachment = it->second.get();
456 const Attachment* attachment = it->second.get();
465 const Attachment* attachment = it->second.get();
479 Attachment* attachment = it->second.get();
514 Attachment* attachment = it->second.get()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
call.cc 60 return (it != map.end()) ? it->second : NULL;
109 Session* session = media_session_map_.begin()->second.session;
150 it->second.session->Accept(answer);
158 it->second.session->Reject(STR_TERMINATE_DECLINE);
165 it->second.session->Terminate();
255 sessions.push_back(it->second.session);
360 while (!it->second.started_screencasts.empty()) {
361 uint32 ssrc = it->second.started_screencasts.begin()->first;
362 if (!StopScreencastWithoutSendingUpdate(it->second.session, ssrc)) {
369 VideoChannel* video_channel = it->second.video_channel
    [all...]
  /external/llvm/include/llvm/IR/
ValueMap.h 130 return I != Map.end() ? I->second : ValueT();
138 Map.insert(std::make_pair(Wrap(KV.first), KV.second));
139 return std::make_pair(iterator(map_result.first), map_result.second);
187 // function because ValueMapCVH is constructed with a second parameter.
243 ValueT Target(I->second);
296 ValueT& second; member in struct:llvm::ValueMapIterator::ValueTypeProxy
299 return std::make_pair(first, second);
304 ValueTypeProxy Result = {I->first.Unwrap(), I->second};
346 const ValueT& second; member in struct:llvm::ValueMapConstIterator::ValueTypeProxy
349 return std::make_pair(first, second);
    [all...]
  /external/llvm/lib/MC/
MCContext.cpp 256 if (!IterBool.second) return Entry.second;
270 Entry.second = Result;
291 if (!IterBool.second)
292 return Iter->second;
302 Iter->second = Result;
317 return Iter->second;
352 assert(sec->second.first && "Start symbol must be set by now");
357 sec->second.second = SectionEndSym
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TimeTest.java 39 assertEquals(t.second, t2.second);
54 assertEquals(t.second, t2.second);
73 assertEquals(t.second, 1);
95 assertEquals(0, t.second);
140 assertEquals(0, t.second);
148 assertEquals(0, t.second);
166 assertEquals(0, t.second);
231 assertEquals(0, time.second);
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_pair.i 37 pair(T first, U second);
43 U second;
83 U* second;
119 U second;
155 U* second;
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/
hamcrest-core-1.3.jar 
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
objectNameManager.cpp 32 m_globalNameSpace->deleteName(m_type, (*n).second);
70 return (*n).second;
81 if((*it).second == p_globalName){
96 m_globalNameSpace->deleteName(m_type, (*n).second);
112 m_globalNameSpace->deleteName(m_type, (*n).second);
113 (*n).second = p_globalName;
283 if (i != map->end()) ret = (*i).second;
302 shareGroupReturn = (*s).second;
326 shareGroupReturn = (*s).second;
344 ShareGroupPtr shareGroupReturn((*s).second);
    [all...]
  /external/chromium_org/net/http/
http_server_properties_impl_unittest.cc 281 EXPECT_EQ(1234, it->second.port);
282 EXPECT_EQ(NPN_SPDY_3, it->second.protocol);
304 EXPECT_EQ(1234, it->second.port);
305 EXPECT_EQ(NPN_SPDY_3, it->second.protocol);
311 EXPECT_EQ(443, it->second.port);
312 EXPECT_EQ(NPN_SPDY_3, it->second.protocol);
324 EXPECT_EQ(1234, it->second.port);
325 EXPECT_EQ(NPN_SPDY_3, it->second.protocol);
334 EXPECT_EQ(443, it->second.port);
335 EXPECT_EQ(NPN_SPDY_3, it->second.protocol)
    [all...]
http_server_properties_impl.cc 59 if (old_it->second.protocol != ALTERNATE_PROTOCOL_BROKEN) {
68 alternate_protocol_map_.Put(it->first, it->second);
101 spdy_settings_map_.Put(it->first, it->second);
116 if (it->second) {
171 return spdy_host_port->second;
186 (spdy_host_port->second == support_spdy)) {
223 return it->second;
228 return alternate_protocol_map_.Get(canonical_host->second)->second;
292 it->second.protocol = ALTERNATE_PROTOCOL_BROKEN
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
extension_set.cc 167 iter->second.Free();
179 GOOGLE_DCHECK(!iter->second.is_repeated);
180 return !iter->second.is_cleared;
187 if (!iter->second.is_cleared) {
197 return iter->second.GetSize();
206 if (iter->second.is_cleared) {
209 return iter->second.type;
215 iter->second.Clear();
242 if (iter == extensions_.end() || iter->second.is_cleared) { \
245 GOOGLE_DCHECK_TYPE(iter->second, OPTIONAL, UPPERCASE);
    [all...]
  /external/chromium_org/content/browser/dom_storage/
dom_storage_context_impl.cc 84 return found->second.get();
119 for (std::vector<GURL>::const_iterator origin_it = it->second.begin();
120 origin_it != it->second.end(); ++origin_it) {
148 dom_storage_namespace = GetStorageNamespace(it->second);
167 it->second->Shutdown();
265 it->second->ready_for_deletion_pending_aliases()) {
268 it->second->set_ready_for_deletion_pending_aliases(true);
269 DOMStorageNamespace* alias_master = it->second->alias_master_namespace();
271 DCHECK(it->second->num_aliases() == 0);
275 if (it->second->DecrementMasterAliasCount()
    [all...]
  /external/chromium_org/net/tools/flip_server/
spdy_interface.cc 153 // url->second here only ever seems to contain just the path. When this
157 path_string = UrlUtilities::GetUrlPath(url->second);
158 host_string = UrlUtilities::GetUrlHost(url->second);
159 version_string = version->second;
171 host_string = host->second;
172 path_string = path->second;
176 if (scheme->second.compare("https") == 0) {
181 VLOG(1) << ACCEPTOR_CLIENT_IDENT << "Request: " << method->second
185 method->second);
189 method->second + " " + path_string + " " + version_string + "\r\n"
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_render/
video_render_impl.cc 222 delete it->second;
416 assert(it->second != NULL);
417 return it->second->IncomingRate();
504 delete item->second;
527 if (item->second == NULL) {
532 return item->second->SetExternalCallback(renderObject);
595 if (item->second->Start() == -1)
627 if (item->second->Stop() == -1)
644 if (it->second->Reset() == -1)
805 assert(item->second != NULL)
    [all...]
  /external/chromium_org/chrome/browser/history/
history_types.cc 147 DCHECK(!found->second->empty());
149 *num_matches = found->second->size();
150 return &found->second->front();
199 for (int match = 0; match < static_cast<int>(found->second->size());
201 if (found->second[match] >= begin && found->second[match] <= end) {
203 found->second->erase(found->second->begin() + match);
209 if (found->second->empty())
222 found->second->push_back(index)
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/
service_discovery_host_client.cc 30 DCHECK(interfaces[i].second == net::ADDRESS_FAMILY_IPV4 ||
31 interfaces[i].second == net::ADDRESS_FAMILY_IPV6);
34 net::ConvertAddressFamily(interfaces[i].second), SOCK_DGRAM,
38 << "Can't create socket, family=" << interfaces[i].second;
43 socket.address_family = interfaces[i].second;
378 if (!i->second.is_null()) {
379 i->second.Run(ServiceWatcher::UPDATE_INVALIDATED, "");
430 if (it != service_watcher_callbacks_.end() && !it->second.is_null())
431 it->second.Run(update, service_name);
440 if (it != service_resolver_callbacks_.end() && !it->second.is_null()
    [all...]

Completed in 1689 milliseconds

<<31323334353637383940>>