HomeSort by relevance Sort by last modified time
    Searched refs:info (Results 851 - 875 of 4844) sorted by null

<<31323334353637383940>>

  /external/eigen/test/
schur_complex.cpp 23 VERIFY_IS_EQUAL(schurOfA.info(), Success);
38 VERIFY_RAISES_ASSERT(csUninitialized.info());
45 VERIFY_IS_EQUAL(cs1.info(), Success);
46 VERIFY_IS_EQUAL(cs2.info(), Success);
53 VERIFY_IS_EQUAL(cs3.info(), Success);
57 VERIFY_IS_EQUAL(cs3.info(), size > 1 ? NoConvergence : Success);
63 VERIFY_IS_EQUAL(cs3.info(), Success);
69 VERIFY_IS_EQUAL(csOnlyT.info(), Success);
78 VERIFY_IS_EQUAL(csNaN.info(), NoConvergence);
schur_real.cpp 46 VERIFY_IS_EQUAL(schurOfA.info(), Success);
57 VERIFY_RAISES_ASSERT(rsUninitialized.info());
64 VERIFY_IS_EQUAL(rs1.info(), Success);
65 VERIFY_IS_EQUAL(rs2.info(), Success);
72 VERIFY_IS_EQUAL(rs3.info(), Success);
77 VERIFY_IS_EQUAL(rs3.info(), NoConvergence);
84 VERIFY_IS_EQUAL(rs3.info(), Success);
90 VERIFY_IS_EQUAL(rsOnlyT.info(), Success);
99 VERIFY_IS_EQUAL(rsNaN.info(), NoConvergence);
  /external/ltrace/sysdeps/linux-gnu/ppc/
trace.c 174 arch_type_sizeof(struct process *proc, struct arg_type_info *info)
179 switch (info->type) {
210 assert(info->type != info->type);
217 arch_type_alignof(struct process *proc, struct arg_type_info *info)
222 switch (info->type) {
224 assert(info->type != info->type);
240 return arch_type_sizeof(proc, info);
  /cts/tests/tests/media/src/android/media/cts/
CodecState.java 173 MediaCodec.BufferInfo info = new MediaCodec.BufferInfo(); local
174 int indexOutput = mCodec.dequeueOutputBuffer(info, 0 /* timeoutUs */);
183 mAvailableOutputBufferInfos.add(info);
240 MediaCodec.CryptoInfo info = new MediaCodec.CryptoInfo(); local
241 mExtractor.getSampleCryptoInfo(info);
244 index, 0 /* offset */, info, sampleTime, 0 /* flags */);
311 MediaCodec.BufferInfo info = mAvailableOutputBufferInfos.peekFirst(); local
313 if ((info.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0) {
322 mMediaTimeProvider.getRealTimeUsForMediaTime(info.presentationTimeUs);
333 byte[] audioCopy = new byte[info.size]
    [all...]
  /external/chromium_org/base/android/java/src/org/chromium/base/
ApplicationStatus.java 195 ActivityInfo info = sActivityInfo.get(activity); local
196 info.setStatus(newState);
199 for (ActivityStateListener listener : info.getListeners()) {
300 ActivityInfo info = sActivityInfo.get(activity); local
301 return info != null ? info.getStatus() : ActivityState.DESTROYED;
357 ActivityInfo info = sActivityInfo.get(activity); local
358 assert info != null && info.getStatus() != ActivityState.DESTROYED;
359 info.getListeners().addObserver(listener)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/audio/
audio_service_chromeos.cc 109 linked_ptr<OutputDeviceInfo> info(new OutputDeviceInfo());
110 info->id = base::Uint64ToString(devices[i].id);
111 info->name = devices[i].device_name + ": " + devices[i].display_name;
112 info->is_active = devices[i].active;
113 info->volume =
115 info->is_muted =
117 output_info.push_back(info);
119 linked_ptr<InputDeviceInfo> info(new InputDeviceInfo());
120 info->id = base::Uint64ToString(devices[i].id);
121 info->name = devices[i].device_name + ": " + devices[i].display_name
    [all...]
  /external/chromium_org/chrome/browser/extensions/
plugin_manager.cc 90 content::WebPluginInfo info; local
91 info.type = content::WebPluginInfo::PLUGIN_TYPE_BROWSER_PLUGIN;
92 info.name = base::UTF8ToUTF16(handler->extension_id());
93 info.path = base::FilePath::FromUTF8Unsafe(handler->extension_id());
100 info.mime_types.push_back(mime_type_info);
104 PluginService::GetInstance()->RegisterInternalPlugin(info, true);
159 void PluginManager::RegisterNaClModule(const NaClModuleInfo& info) {
160 DCHECK(FindNaClModule(info.url) == nacl_module_list_.end());
161 nacl_module_list_.push_front(info);
164 void PluginManager::UnregisterNaClModule(const NaClModuleInfo& info) {
192 content::WebPluginInfo info = pepper_info->ToWebPluginInfo(); local
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_delegate_impl_win_unittest.cc 65 void CheckGalleryInfo(const MediaFileSystemInfo& info,
122 StorageInfo info(id, location, label, base::string16(), base::string16(), 0);
123 monitor_->receiver()->ProcessAttach(info);
139 const MediaFileSystemInfo& info,
144 EXPECT_EQ(name, info.name);
145 EXPECT_EQ(path, info.path);
146 EXPECT_EQ(removable, info.removable);
147 EXPECT_EQ(media_device, info.media_device);
148 EXPECT_NE(0UL, info.pref_id);
151 EXPECT_NE(0UL, info.transient_device_id.size())
174 MediaFileSystemInfo info = i->second; local
    [all...]
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
settings_overrides_handler.cc 137 scoped_ptr<SettingsOverrides> info(new SettingsOverrides);
138 info->homepage = ParseHomepage(*settings, error);
139 info->search_engine = ParseSearchEngine(settings.get(), error);
140 info->startup_pages = ParseStartupPage(*settings, error);
141 if (!info->homepage && !info->search_engine && info->startup_pages.empty()) {
148 if (info->search_engine) {
154 RemoveWwwPrefix(CreateManifestURL(info->search_engine->search_url)
158 if (!info->startup_pages.empty())
    [all...]
automation.cc 177 scoped_ptr<AutomationInfo> info = local
184 if (!info)
187 extension->SetManifestData(keys::kAutomation, info.release());
202 const AutomationInfo* info = AutomationInfo::Get(extension); local
203 if (info) {
206 info->desktop, info->matches, info->interact)));
289 scoped_ptr<base::Value> AutomationInfo::ToValue(const AutomationInfo& info) {
290 return AsManifestType(info)->ToValue().Pass()
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
query_tracker.cc 33 bool QuerySyncManager::Alloc(QuerySyncManager::QueryInfo* info) {
34 DCHECK(info);
52 *info = free_queries_.front();
53 ++(info->bucket->used_query_count);
54 info->sync->Reset();
59 void QuerySyncManager::Free(const QuerySyncManager::QueryInfo& info) {
60 DCHECK_GT(info.bucket->used_query_count, 0u);
61 --(info.bucket->used_query_count);
62 free_queries_.push_back(info);
89 const QuerySyncManager::QueryInfo& info)
206 QuerySyncManager::QueryInfo info; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestInterfaceNamedConstructor2.cpp 39 static void V8TestInterfaceNamedConstructor2ConstructorCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
41 if (!info.IsConstructCall()) {
42 V8ThrowException::throwTypeError(ExceptionMessages::constructorNotCallableAsFunction("Audio"), info.GetIsolate());
46 if (ConstructorMode::current(info.GetIsolate()) == ConstructorMode::WrapExistingObject) {
47 v8SetReturnValue(info, info.Holder());
50 if (UNLIKELY(info.Length() < 1)) {
51 V8ThrowException::throwException(createMinimumArityTypeErrorForConstructor("TestInterfaceNamedConstructor2", 1, info.Length(), info.GetIsolate()), info.GetIsolate())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositingInputsUpdater.cpp 92 void CompositingInputsUpdater::updateRecursive(RenderLayer* layer, UpdateType updateType, AncestorInfo info)
100 info.enclosingCompositedLayer = layer;
103 if (info.enclosingCompositedLayer)
104 info.enclosingCompositedLayer->compositedLayerMapping()->setNeedsGraphicsLayerUpdate(GraphicsLayerUpdateSubtree);
127 if (info.hasAncestorWithClipOrOverflowClip) {
133 if (info.lastScrollingAncestor) {
142 const RenderObject* lastScroller = info.lastScrollingAncestor->renderer();
151 && !info.ancestorStackingContext->renderer()->isDescendantOf(properties.ancestorScrollingLayer->renderer()))
156 properties.hasAncestorWithClipPath = info.hasAncestorWithClipPath;
161 info.ancestorStackingContext = layer
    [all...]
  /external/chromium_org/third_party/cld/languages/internal/
languages.cc 237 const LanguageInfo& info = kLanguageInfoTable[lang]; local
238 if (info.language_code_639_1_) {
239 return info.language_code_639_1_;
240 } else if (info.language_code_639_2_) {
241 return info.language_code_639_2_;
242 } else if (info.language_code_other_) {
243 return info.language_code_other_;
282 const LanguageInfo& info = kLanguageInfoTable[i]; local
283 if ((info.language_code_639_1_ &&
284 !base::strcasecmp(lang_code, info.language_code_639_1_)) |
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
resize_test.cc 149 for (std::vector<FrameInfo>::const_iterator info = frame_info_list_.begin();
150 info != frame_info_list_.end(); ++info) {
151 const unsigned int frame = static_cast<unsigned>(info->pts);
155 EXPECT_EQ(expected_w, info->w)
157 EXPECT_EQ(expected_h, info->h)
250 for (std::vector<FrameInfo>::const_iterator info = frame_info_list_.begin();
251 info != frame_info_list_.end(); ++info) {
252 const vpx_codec_pts_t pts = info->pts
    [all...]
  /external/eigen/bench/btl/libs/BLAS/
blas_interface_impl.hh 70 int info = 0; local
71 BLAS_FUNC(potrf)(&uplo, &N, C, &N, &info);
72 if(info!=0) std::cerr << "potrf_ error " << info << "\n"; local
79 int info = 0; local
81 BLAS_FUNC(getrf)(&N, &N, C, &N, ipiv, &info);
82 if(info!=0) std::cerr << "getrf_ error " << info << "\n"; local
105 int info = 0; local
108 BLAS_FUNC(getc2)(&N, C, &N, ipiv, jpiv, &info);
119 int info = 0; local
136 int info = 0; local
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-json.rl 39 memset (&info, 0, sizeof (info));
44 buffer->add_info (info);
58 &info.codepoint))
62 action parse_gid { if (!parse_uint (tok, p, &info.codepoint)) return false; }
63 action parse_cluster { if (!parse_uint (tok, p, &info.cluster )) return false; }
120 hb_glyph_info_t info;
hb-ot-shape-complex-hangul.cc 199 hb_glyph_info_t *info = buffer->out_info; local
200 hb_glyph_info_t tone = info[end];
201 memmove (&info[start + 1], &info[start], (end - start) * sizeof (hb_glyph_info_t));
202 info[start] = tone;
345 hb_glyph_info_t *info = buffer->out_info;
358 info[i++].hangul_shaping_feature() = LJMO;
359 info[i++].hangul_shaping_feature() = VJMO;
361 info[i++].hangul_shaping_feature() = TJMO;
394 hb_glyph_info_t *info = buffer->info local
    [all...]
  /external/libnl/lib/genl/
ctrl.c 56 struct genl_info *info, void *arg)
68 if (info->attrs[CTRL_ATTR_FAMILY_NAME] == NULL) {
73 if (info->attrs[CTRL_ATTR_FAMILY_ID] == NULL) {
78 family->ce_msgtype = info->nlh->nlmsg_type;
80 nla_get_u16(info->attrs[CTRL_ATTR_FAMILY_ID]));
82 nla_get_string(info->attrs[CTRL_ATTR_FAMILY_NAME]));
84 if (info->attrs[CTRL_ATTR_VERSION]) {
85 uint32_t version = nla_get_u32(info->attrs[CTRL_ATTR_VERSION]);
89 if (info->attrs[CTRL_ATTR_HDRSIZE]) {
90 uint32_t hdrsize = nla_get_u32(info->attrs[CTRL_ATTR_HDRSIZE])
    [all...]
  /external/libvpx/libvpx/test/
resize_test.cc 149 for (std::vector<FrameInfo>::const_iterator info = frame_info_list_.begin();
150 info != frame_info_list_.end(); ++info) {
151 const unsigned int frame = static_cast<unsigned>(info->pts);
155 EXPECT_EQ(expected_w, info->w)
157 EXPECT_EQ(expected_h, info->h)
250 for (std::vector<FrameInfo>::const_iterator info = frame_info_list_.begin();
251 info != frame_info_list_.end(); ++info) {
252 const vpx_codec_pts_t pts = info->pts
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
texture_manager.cc 221 const Texture::LevelInfo& info = local
229 target, level, info.internal_format,
230 info.width, info.height, info.depth, info.border,
231 info.format, info.type, info.image.get() != NULL,
317 const LevelInfo& info = level_infos_[ii][0] local
339 Texture::LevelInfo& info = local
356 const Texture::LevelInfo& info = level_infos_[ii][jj]; local
410 const Texture::LevelInfo& info = level_infos_[ii][jj]; local
452 Texture::LevelInfo& info = local
494 const LevelInfo& info = level_infos_[face_index][level]; local
515 const LevelInfo& info = level_infos_[face_index][level]; local
532 const LevelInfo& info = level_infos_[face_index][level]; local
648 const Texture::LevelInfo& info = level_infos_[ii][0]; local
702 const Texture::LevelInfo& info = level_infos_[ii][jj]; local
729 Texture::LevelInfo& info = level_infos_[ii][jj]; local
748 const Texture::LevelInfo& info = level_infos_[face_index][level]; local
770 Texture::LevelInfo& info = level_infos_[face_index][level]; local
803 Texture::LevelInfo& info = local
821 const LevelInfo& info = level_infos_[face_index][level]; local
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 70 logging.info('Authenticatng username: ' + self.username)
98 logging.info('Validating username: ' + self.username)
131 it returns user's contact info in JSON format.
139 logging.info('*** Starting contact sync ***')
159 logging.info('Returning ' + str(len(updated_contacts)) + ' contact records')
166 logging.info('* Processing server changes')
176 logging.info('Client sync state: ' + client_state)
194 logging.info('New sync state: ' + high_water_mark)
215 logging.info('Server-side updates: ' + str(update_count))
216 logging.info('Server-side deletes: ' + str(delete_count)
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_registration_utility.cc 58 // updated). |info| contains necessary information like the display name of
60 // registration. We use the info here and not the profile, because on Chrome
63 const SupervisedUserRegistrationInfo& info,
234 const SupervisedUserRegistrationInfo& info,
240 bool need_password_update = !info.password_data.empty();
247 base::UTF16ToUTF8(info.name),
248 info.master_key,
249 info.password_signature_key,
250 info.password_encryption_key,
251 info.avatar_index)
    [all...]
  /external/chromium_org/tools/resources/
optimize-png-files.sh 63 function info { function
71 info -ne "${THROBBER_STR[$THROBBER_COUNT]}\b"
113 info -ne "\b\b\b\b\b\b\b\bgray...."
122 info -ne "\b\b\b\b\b\b\b\bgray-a.."
132 info -ne "\b\b\b\b\b\b\b\brgb....."
143 info -ne "\b\b\b\b\b\b\b\bhuffman."
170 info -ne "\b\b\b\b\b\b\b\brandom.."
192 info -ne "\b\b\b\b\b\b\b\bfinal..."
234 info -n "$file|........"
236 info -n "...${file:$trimmed_length}|........
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebViewTest.cpp 579 WebTextInputInfo info = webView->textInputInfo(); local
581 EXPECT_EQ("foo\xef\xbf\xbc", info.value.utf8());
592 WebTextInputInfo info = webView->textInputInfo(); local
593 EXPECT_EQ("0123456789abcdefghijklmnopqrstuvwxyz", info.value);
594 EXPECT_EQ(5, info.selectionStart);
595 EXPECT_EQ(13, info.selectionEnd);
596 EXPECT_EQ(-1, info.compositionStart);
597 EXPECT_EQ(-1, info.compositionEnd);
605 info = webView->textInputInfo();
606 EXPECT_EQ("0123456789abcdefghijklmnopqrstuvwxyz", info.value)
625 WebTextInputInfo info = webView->textInputInfo(); local
667 WebTextInputInfo info = webView->textInputInfo(); local
699 WebTextInputInfo info = webView->textInputInfo(); local
721 WebTextInputInfo info = webView->textInputInfo(); local
746 WebTextInputInfo info = webView->textInputInfo(); local
784 WebTextInputInfo info = webView->textInputInfo(); local
1333 WebTextInputInfo info = webView->textInputInfo(); local
1363 WebTextInputInfo info = webView->textInputInfo(); local
1391 WebTextInputInfo info = webView->textInputInfo(); local
2053 WebTextInputInfo info = webViewImpl->textInputInfo(); local
    [all...]

Completed in 1608 milliseconds

<<31323334353637383940>>