HomeSort by relevance Sort by last modified time
    Searched refs:info (Results 376 - 400 of 1780) sorted by null

<<11121314151617181920>>

  /external/opencore/fileformats/mp4/parser/src/
decoderconfigdescriptor.cpp 97 uint8 *info = _pdecSpecificInfo->getInfo(); local
102 if (info != NULL)
104 if (info[offSet] == 0x00)
106 if (info[offSet+1] == 0x00)
108 if (info[offSet+2] == 0x01)
110 if (info[offSet+3] < 0x20)
112 // Remove existing decoderspecific info
169 // FOR AUDIO/VISUAL TRACKS, DEC SPECIFIC INFO IS MANDATORY
  /external/webkit/WebCore/bindings/v8/custom/
V8EventCustom.cpp 63 void V8Event::valueAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
65 Event* event = V8Event::toNative(info.Holder());
69 v8::Handle<v8::Value> V8Event::dataTransferAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
71 Event* event = V8Event::toNative(info.Holder());
79 v8::Handle<v8::Value> V8Event::clipboardDataAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
81 Event* event = V8Event::toNative(info.Holder());
V8HTMLDataGridElementCustom.cpp 46 v8::Handle<v8::Object> holder = info.Holder();
57 v8::Handle<v8::Object> holder = info.Holder();
V8HTMLOptionsCollectionCustom.cpp 88 v8::Handle<v8::Value> V8HTMLOptionsCollection::lengthAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
91 HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(info.Holder());
96 void V8HTMLOptionsCollection::lengthAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
99 HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(info.Holder());
117 v8::Handle<v8::Value> V8HTMLOptionsCollection::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info)
120 HTMLOptionsCollection* collection = V8HTMLOptionsCollection::toNative(info.Holder());
129 v8::Handle<v8::Value> V8HTMLOptionsCollection::indexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
132 HTMLOptionsCollection* collection = V8HTMLOptionsCollection::toNative(info.Holder());
V8PopStateEventCustom.cpp 55 v8::Handle<v8::Value> V8PopStateEvent::stateAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
59 PopStateEvent* event = V8PopStateEvent::toNative(info.Holder());
  /external/webkit/WebCore/platform/haiku/
RenderThemeHaiku.cpp 110 bool RenderThemeHaiku::paintCheckbox(RenderObject*, const RenderObject::PaintInfo& info, const IntRect& intRect)
112 if (info.context->paintingDisabled())
117 BView* view = info.context->platformContext();
142 bool RenderThemeHaiku::paintRadio(RenderObject*, const RenderObject::PaintInfo& info, const IntRect& intRect)
144 if (info.context->paintingDisabled())
149 BView* view = info.context->platformContext();
  /external/webkit/WebCore/platform/qt/
FileSystemQt.cpp 65 QFileInfo info(path);
66 result = info.size();
67 return info.exists();
72 QFileInfo info(path);
73 result = info.lastModified().toTime_t();
74 return info.exists();
  /packages/apps/Settings/src/com/android/settings/battery_history/
BatteryHistory.java 153 public abstract void getInfo(StringBuilder info);
251 public void getInfo(StringBuilder info) {
252 info.append(getString(R.string.battery_history_cpu_usage, mProcess));
253 info.append("\n\n");
254 info.append(getString(R.string.battery_history_user_time));
255 formatTime(mUsage[0] * 10, info);
256 info.append('\n');
257 info.append(getString(R.string.battery_history_system_time));
258 formatTime((mUsage[1] - mUsage[0]) * 10, info);
259 info.append('\n')
523 StringBuilder info = new StringBuilder(); local
    [all...]
  /external/bluetooth/glib/gobject/
gtypemodule.c 82 GTypeInfo info; member in struct:_ModuleTypeInfo
90 GInterfaceInfo info; member in struct:_ModuleInterfaceInfo
96 GTypeInfo *info,
101 GInterfaceInfo *info);
334 GTypeInfo *info,
340 *info = module_type_info->info;
342 if (module_type_info->info.value_table)
343 *value_table = *module_type_info->info.value_table;
350 GInterfaceInfo *info)
    [all...]
  /external/icu4c/i18n/
currpinf.cpp 74 CurrencyPluralInfo::CurrencyPluralInfo(const CurrencyPluralInfo& info)
75 : UObject(info),
79 *this = info;
84 CurrencyPluralInfo::operator=(const CurrencyPluralInfo& info) {
85 if (this == &info) {
92 copyHash(info.fPluralCountToCurrencyUnitPattern,
100 if (info.fPluralRules) {
101 fPluralRules = info.fPluralRules->clone();
105 if (info.fLocale) {
106 fLocale = info.fLocale->clone()
    [all...]
  /frameworks/base/cmds/runtime/
SignalHandler.cpp 68 ssize_t i = mOwner.mChildHandlers.indexOfKey(entry.info.si_pid);
76 LOGD("SIGCHLD: pid=%d, handle index=%d", entry.info.si_pid, i);
79 int res = waitpid(entry.info.si_pid, NULL, WNOHANG);
82 entry.info.si_pid);
84 ch.handler(entry.info.si_pid, ch.userData);
87 LOGW("Unhandled SIGCHLD for pid %d", entry.info.si_pid);
197 void SignalHandler::sigAction(int signum, siginfo_t* info, void*)
210 info->si_signo, info->si_errno, info->si_code
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchAction.java 63 public boolean doLaunchAction(DelayedLaunchInfo info, IDevice device) {
66 AdtPlugin.printToConsole(info.getProject(), msg);
69 mLaunchInfo.setDebugMode(info.isDebugMode());
70 mLaunchInfo.setDevice(info.getDevice());
72 final String mode = info.isDebugMode() ? ILaunchManager.DEBUG_MODE :
75 junitDelegate.launch(info.getLaunch().getLaunchConfiguration(), mode, info.getLaunch(),
76 info.getMonitor());
80 AdtPlugin.printErrorToConsole(info.getProject(),
150 VMTestRunner(AndroidJUnitLaunchInfo info) {
    [all...]
  /external/v8/src/
compiler.cc 47 static Handle<Code> MakeCode(Handle<Context> context, CompilationInfo* info) {
48 FunctionLiteral* function = info->function();
62 Scope* top = info->scope();
71 info->scope()->Print();
96 Handle<SharedFunctionInfo> shared = info->shared_info();
98 ? info->scope()->is_global_scope()
105 return FullCodeGenerator::MakeCode(info);
110 checker.Check(info);
112 return FastCodeGenerator::MakeCode(info);
116 return CodeGenerator::MakeCode(info);
    [all...]
  /build/target/board/
Android.mk 41 # If the file "board-info.txt" appears in $(TARGET_DEVICE_DIR),
44 INSTALLED_ANDROID_INFO_TXT_TARGET := $(PRODUCT_OUT)/android-info.txt
45 board_info_txt := $(wildcard $(TARGET_DEVICE_DIR)/board-info.txt)
  /dalvik/libcore/security/src/main/java/org/bouncycastle/x509/extension/
SubjectKeyIdentifierStructure.java 41 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo( local
44 return (ASN1OctetString)(new SubjectKeyIdentifier(info).toASN1Object());
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
GLES20Activity.java 51 ConfigurationInfo info = am.getDeviceConfigurationInfo(); local
52 return (info.reqGlEsVersion >= 0x20000);
  /external/apache-http/src/org/apache/commons/logging/
Log.java 30 * <li>info</li>
105 * <p> Is info logging currently enabled? </p>
109 * when the log level is more than info. </p>
111 * @return true if info is enabled in the underlying logger.
178 * <p> Log a message with info log level. </p>
182 public void info(Object message); method in interface:Log
186 * <p> Log an error with info log level. </p>
191 public void info(Object message, Throwable t); method in interface:Log
  /external/apache-http/src/org/apache/commons/logging/impl/
NoOpLog.java 48 public void info(Object message) { } method in class:NoOpLog
50 public void info(Object message, Throwable t) { } method in class:NoOpLog
86 * Info is never enabled.
  /external/bluetooth/glib/gmodule/
gmodule-beos.c 87 image_info info; local
92 status = get_next_image_info (0, &cookie, &info);
94 return (gpointer) info.id;
111 image_info info; local
119 if (get_image_info ((image_id) handle, &info) != B_OK)
122 name = g_strdup (info.name);
137 image_info info; local
145 status = get_image_info (id, &info);
  /external/icu4c/common/
ucmndata.h 43 UDataInfo info; member in struct:__anon2090
66 * Get the UDataInfo.size from a const UDataInfo *info.
72 udata_getInfoSize(const UDataInfo *info);
  /external/qemu/audio/
noaudio.c 56 bytes = (ticks * hw->info.bytes_per_second) / ticks_per_sec;
58 samples = bytes >> hw->info.shift;
73 audio_pcm_init_info (&hw->info, as);
92 audio_pcm_init_info (&hw->info, as);
112 int64_t bytes = (ticks * hw->info.bytes_per_second) / ticks_per_sec;
116 samples = bytes >> hw->info.shift;
124 int samples = size >> sw->info.shift;
127 audio_pcm_info_clear_buf (&sw->info, buf, to_clear);
ossaudio.c 307 bufsize = hw->samples << hw->info.shift;
332 decr = audio_MIN (bytes >> hw->info.shift, live);
358 decr = audio_MIN (abinfo.bytes >> hw->info.shift, live);
371 dst = advance (oss->pcm_buf, rpos << hw->info.shift);
377 written = write (oss->fd, dst, convert_samples << hw->info.shift);
383 convert_samples << hw->info.shift,
389 if (written != convert_samples << hw->info.shift) {
390 int wsamples = written >> hw->info.shift;
391 int wbytes = wsamples << hw->info.shift;
395 wbytes, written, hw->info.align + 1)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_syswm.cc 77 int BE_GetWMInfo(_THIS, SDL_SysWMinfo *info)
79 if (info->version.major <= SDL_MAJOR_VERSION)
  /external/stlport/stlport/stl/config/
_epilog.h 27 # pragma info(restore)
  /external/webkit/JavaScriptCore/runtime/
InternalFunction.h 37 static JS_EXPORTDATA const ClassInfo info; member in class:JSC::InternalFunction
62 ASSERT(asObject(value)->inherits(&InternalFunction::info));

Completed in 367 milliseconds

<<11121314151617181920>>