HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 926 - 950 of 1775) sorted by null

<<31323334353637383940>>

  /external/smack/src/org/jivesoftware/smackx/
ServiceDiscoveryManager.java 246 // Listen for disco#info requests and answer the client's supported features
267 // Disco#info was sent to a node. Check if we have information of the
293 * Add discover info response data.
295 * @see <a href="http://xmpp.org/extensions/xep-0030.html#info-basic">XEP-30 Basic Protocol; Example 2</a>
297 * @param response the discover info response packet
436 * configure the extended info before logging to the server so that the
439 * @param info
443 public void setExtendedInfo(DataForm info) {
444 extendedInfo = info;
498 DiscoverInfo info = EntityCapsManager.getDiscoverInfoByUser(entityID)
517 EntityCapsManager.addDiscoverInfoByNode(nvh.getNodeVer(), info); local
620 DiscoverInfo info = discoverInfo(entityID); local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
Node.java 128 DiscoverInfo info = new DiscoverInfo(); local
129 info.setTo(to);
130 info.setNode(getId());
131 return (DiscoverInfo)SyncPacketSend.getReply(con, info);
  /external/stlport/src/details/
fstream_win32io.cpp 73 BY_HANDLE_FILE_INFORMATION info; local
76 return GetFileInformationByHandle(fd, &info) &&
77 ((info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0);
  /external/v8/src/arm/
lithium-codegen-arm.h 46 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info)
49 info_(info),
57 scope_(info->scope()),
70 CompilationInfo* info() const { return info_; } function in class:v8::internal::BASE_EMBEDDED
153 return info()->is_classic_mode() ? kNonStrictMode : kStrictMode;
  /external/v8/src/ia32/
lithium-codegen-ia32.h 49 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info)
52 info_(info),
59 scope_(info->scope()),
71 CompilationInfo* info() const { return info_; } function in class:v8::internal::BASE_EMBEDDED
145 return info()->is_classic_mode() ? kNonStrictMode : kStrictMode;
174 // Pad the reloc info to ensure that we have enough space to patch during
  /external/v8/src/mips/
lithium-codegen-mips.h 46 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info)
49 info_(info),
57 scope_(info->scope()),
70 CompilationInfo* info() const { return info_; } function in class:v8::internal::BASE_EMBEDDED
149 return info()->is_classic_mode() ? kNonStrictMode : kStrictMode;
  /external/v8/src/
type-info.cc 36 #include "type-info.h"
46 TypeInfo info; local
48 info = TypeInfo::Smi();
50 info = TypeInfo::IsInt32Double(HeapNumber::cast(*value)->value())
54 info = TypeInfo::String();
56 info = TypeInfo::Unknown();
58 return info;
569 RelocInfo* info = it.rinfo(); local
570 Object* object = info->target_object();
633 RelocInfo* info = &(*infos)[i] local
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.h 48 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info)
51 info_(info),
59 scope_(info->scope()),
71 CompilationInfo* info() const { return info_; } function in class:v8::internal::BASE_EMBEDDED
136 return info()->is_classic_mode() ? kNonStrictMode : kStrictMode;
  /external/v8/test/cctest/
test-mark-compact.cc 448 TestRetainedObjectInfo info; local
449 global_handles->AddObjectGroup(NULL, 0, &info);
450 ASSERT(info.has_been_disposed());
  /external/valgrind/main/coregrind/m_initimg/
initimg-linux.c 70 static void load_client ( /*OUT*/ExeInfo* info,
86 VG_(memset)(info, 0, sizeof(*info));
87 ret = VG_(do_exec)(exe_name, info);
101 /* Copy necessary bits of 'info' that were filled in */
102 *client_ip = info->init_ip;
103 *client_toc = info->init_toc;
104 VG_(brk_base) = VG_(brk_limit) = VG_PGROUNDUP(info->brkbase);
344 info are collected:
386 const ExeInfo* info,
873 ExeInfo info; local
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.cpp 87 const ClassInfo* info = classInfo(); local
88 ASSERT(info);
89 return info->className;
304 for (const ClassInfo* info = classInfo(); info; info = info->parentClass) {
305 if (const HashTable* propHashTable = info->propHashTable(exec)) {
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.cpp 131 if (V8DOMWindow::info.equals(type)) {
138 } else if (V8History::info.equals(type)) {
141 } else if (V8Location::info.equals(type)) {
405 v8::Handle<v8::Function> windowConstructor = V8DOMWrapper::getConstructor(&V8DOMWindow::info, getHiddenObjectPrototype(context));
412 V8DOMWrapper::setDOMWrapper(jsWindow, &V8DOMWindow::info, window);
413 V8DOMWrapper::setDOMWrapper(v8::Handle<v8::Object>::Cast(jsWindow->GetPrototype()), &V8DOMWindow::info, window); member in class:WebCore::V8DOMWindow
420 V8DOMWrapper::setDOMWrapper(v8RealGlobal, &V8DOMWindow::info, window);
552 v8::Handle<v8::Value> getter(v8::Local<v8::String> property, const v8::AccessorInfo& info)
556 HTMLDocument* htmlDocument = V8HTMLDocument::toNative(info.Holder());
561 v8::Handle<v8::Value> prototype = info.Holder()->GetPrototype()
    [all...]
V8GCController.cpp 97 GlobalHandleInfo* info = it->second; local
98 UNUSED_PARAM(info);
113 GlobalHandleInfo* info = globalHandleMap().take(*handle); local
114 ASSERT(info->m_host == host);
115 delete info;
157 if (V8MessagePort::info.equals(typeInfo)) {
339 if (typeInfo->isSubclass(&V8StyleSheetList::info)) {
346 } else if (typeInfo->isSubclass(&V8DOMImplementation::info)) {
353 } else if (typeInfo->isSubclass(&V8StyleSheet::info) || typeInfo->isSubclass(&V8CSSRule::info)) {
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebGLRenderingContextCustom.cpp 111 static v8::Handle<v8::Value> toV8Object(const WebGLGetInfo& info)
113 switch (info.getType()) {
115 return v8::Boolean::New(info.getBool());
117 const Vector<bool>& value = info.getBoolArray();
124 return v8::Number::New(info.getFloat());
126 return v8::Integer::New(info.getInt());
130 return v8::String::New(fromWebCoreString(info.getString()), info.getString().length());
132 return v8::Integer::NewFromUnsigned(info.getUnsignedInt());
134 return toV8(info.getWebGLBuffer())
203 WebGLGetInfo info; local
307 WebGLGetInfo info = context->getFramebufferAttachmentParameter(target, attachment, pname, ec); local
327 WebGLGetInfo info = context->getParameter(pname, ec); local
352 WebGLGetInfo info = context->getProgramParameter(program, pname, ec); local
383 WebGLGetInfo info = context->getShaderParameter(shader, pname, ec); local
435 WebGLGetInfo info = context->getUniform(program, location, ec); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 337 LOGFONT info; local
338 GetObject(hfont, sizeof(info), &info);
339 int size = info.lfHeight;
344 SkTypeface* face = SkCreateTypefaceFromLOGFONT(info);
  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 57 // Protect against large PNGs. See Mozilla's bug #251381 for more info.
224 static ColorProfile readColorProfile(png_structp png, png_infop info)
231 if (png_get_iCCP(png, info, &profileName, &compressionType, &profile, &profileLength)) {
243 png_infop info = m_reader->infoPtr(); local
244 png_uint_32 width = png_get_image_width(png, info);
245 png_uint_32 height = png_get_image_height(png, info);
267 png_get_IHDR(png, info, &width, &height, &bitDepth, &colorType, &interlaceType, &compressionType, &filterType);
276 m_colorProfile = readColorProfile(png, info);
287 if (png_get_valid(png, info, PNG_INFO_tRNS)) {
288 png_get_tRNS(png, info, &trns, &trnsCount, 0)
    [all...]
  /external/webkit/Source/WebCore/platform/network/cf/
SocketStreamHandleCFNet.cpp 127 MainThreadPACCallbackInfo info(handle, proxyList);
129 callOnMainThreadAndWait(pacExecutionCallbackMainThread, &info);
134 MainThreadPACCallbackInfo* info = static_cast<MainThreadPACCallbackInfo*>(invocation); local
135 ASSERT(info->handle->m_connectingSubstate == ExecutingPACFile);
137 info->handle->chooseProxyFromArray(info->proxyList);
138 info->handle->createStreams();
139 info->handle->scheduleStreams();
430 CFStringRef SocketStreamHandle::copyCFStreamDescription(void* info)
432 SocketStreamHandle* handle = static_cast<SocketStreamHandle*>(info);
471 MainThreadEventCallbackInfo* info = static_cast<MainThreadEventCallbackInfo*>(invocation); local
477 MainThreadEventCallbackInfo* info = static_cast<MainThreadEventCallbackInfo*>(invocation); local
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_matrix.c 614 const Eina_Tile_Grid_Info *info; local
631 while (eina_tile_grid_slicer_next(&slicer, &info)) {
634 col = info->col;
635 row = info->row;
644 if (info->full)
650 ewk_tile_update_area(t, &info->rect);
  /external/wpa_supplicant_8/src/crypto/
crypto_cryptoapi.c 427 HMAC_INFO info; local
428 os_memset(&info, 0, sizeof(info));
431 info.HashAlgid = CALG_MD5;
434 info.HashAlgid = CALG_SHA;
441 if (!CryptSetHashParam(ctx->hash, HP_HMAC_INFO, (BYTE *) &info,
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNormalizer.java 321 XMPAliasInfo info = XMPMetaFactory.getSchemaRegistry() local
323 if (info != null)
326 XMPNode baseSchema = XMPNodeUtils.findSchemaNode(tree, info
332 info.getPrefix() + info.getPropName(), false);
335 if (info.getAliasForm().isSimple())
339 String qname = info.getPrefix() + info.getPropName();
349 baseNode = new XMPNode(info.getPrefix() + info.getPropName(), inf
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/
SoftAVCEncoder.cpp 791 // Save the input buffer info so that it can be
793 InputBufferInfo info; local
794 info.mTimeUs = inHeader->nTimeStamp;
795 info.mFlags = inHeader->nFlags;
796 mInputBufferInfoVec.push(info);
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPConnection.cpp 183 StreamInfo *info = &*--mStreams.end(); local
187 info->mRTPSocket = s;
189 info->mRTCPSocket = s;
194 info->mIsInjected = injected;
198 info->mSessionDesc = static_cast<ASessionDescription *>(obj.get());
200 CHECK(msg->findSize("index", &info->mIndex));
201 CHECK(msg->findMessage("notify", &info->mNotifyMsg));
203 info->mNumRTCPPacketsReceived = 0;
204 info->mNumRTPPacketsReceived = 0;
205 memset(&info->mRemoteRTCPAddr, 0, sizeof(info->mRemoteRTCPAddr))
    [all...]
  /frameworks/av/media/mtp/
MtpDevice.cpp 315 MtpDeviceInfo* info = new MtpDeviceInfo; local
316 info->read(mData);
317 return info;
348 MtpStorageInfo* info = new MtpStorageInfo(storageID); local
349 info->read(mData);
350 return info;
387 MtpObjectInfo* info = new MtpObjectInfo(handle); local
388 info->read(mData);
389 return info;
409 MtpObjectHandle MtpDevice::sendObjectInfo(MtpObjectInfo* info) {
500 MtpObjectInfo* info = getObjectInfo(handle); local
511 MtpObjectInfo* info = getObjectInfo(handle); local
    [all...]
  /frameworks/base/core/java/android/app/
ApplicationErrorReport.java 213 ResolveInfo info = pm.resolveActivity(intent, 0); local
214 if (info == null || info.activityInfo == null) {
217 return new ComponentName(receiverPackage, info.activityInfo.name);
417 * Additional info, including CPU stats.
419 public String info; field in class:ApplicationErrorReport.AnrInfo
433 info = in.readString();
442 dest.writeString(info);
451 pw.println(prefix + "info: " + info);
    [all...]
  /frameworks/base/core/java/android/appwidget/
AppWidgetManager.java 575 for (AppWidgetProviderInfo info : providers) {
577 info.minWidth =
578 TypedValue.complexToDimensionPixelSize(info.minWidth, mDisplayMetrics);
579 info.minHeight =
580 TypedValue.complexToDimensionPixelSize(info.minHeight, mDisplayMetrics);
581 info.minResizeWidth =
582 TypedValue.complexToDimensionPixelSize(info.minResizeWidth, mDisplayMetrics);
583 info.minResizeHeight =
584 TypedValue.complexToDimensionPixelSize(info.minResizeHeight, mDisplayMetrics);
594 * Get the available info about the AppWidget
601 AppWidgetProviderInfo info = sService.getAppWidgetInfo(appWidgetId, local
    [all...]

Completed in 1654 milliseconds

<<31323334353637383940>>