Searched defs:level (Results 101 - 125 of 1315) sorted by relevance

1234567891011>>

/external/chromium_org/base/android/java/src/org/chromium/base/
H A DMemoryPressureListener.java33 * with notification level TRIM_MEMORY_RUNNING_CRITICAL thus simulating a low memory situation
40 * with notification level TRIM_MEMORY_MODERATE thus simulating a low memory situation
50 public void onTrimMemory(int level) {
51 maybeNotifyMemoryPresure(level);
86 public static void maybeNotifyMemoryPresure(int level) { argument
87 if (level >= ComponentCallbacks2.TRIM_MEMORY_COMPLETE) {
89 } else if (level >= ComponentCallbacks2.TRIM_MEMORY_BACKGROUND ||
90 level == ComponentCallbacks2.TRIM_MEMORY_RUNNING_CRITICAL) {
99 // method is called. Notifying these will simulate the event at the App/Activity level
105 private static void simulateTrimMemoryPressureSignal(Activity activity, int level) { argument
[all...]
/external/chromium_org/base/i18n/
H A Dbidi_line_iterator.cc54 UBiDiLevel* level) {
56 ubidi_getLogicalRun(bidi_, start, end, level);
52 GetLogicalRun(int start, int* end, UBiDiLevel* level) argument
/external/chromium_org/base/
H A Dlogging_win.cc28 EtwEventLevel level = TRACE_LEVEL_NONE; local
30 // Convert the log severity to the most appropriate ETW trace level.
34 level = TRACE_LEVEL_INFORMATION;
37 level = TRACE_LEVEL_WARNING;
40 level = TRACE_LEVEL_ERROR;
43 level = TRACE_LEVEL_FATAL;
47 level = TRACE_LEVEL_INFORMATION - severity;
50 // Bail if we're not logging, not at that level,
53 if (provider == NULL || level > provider->enable_level())
58 EtwMofEvent<1> event(kLogEventId, LOG_MESSAGE, level);
118 EtwEventLevel level = enable_level(); local
[all...]
/external/chromium_org/chrome/browser/ui/toolbar/
H A Dwrench_menu_badge_controller.cc20 // Maps an upgrade level to a severity level.
22 UpgradeDetector::UpgradeNotificationAnnoyanceLevel level) {
23 switch (level) {
41 // Checks if the wrench icon should be animated for the given upgrade level.
43 UpgradeDetector::UpgradeNotificationAnnoyanceLevel level) {
45 if (level == UpgradeDetector::UPGRADE_ANNOYANCE_LOW) {
104 UpgradeDetector::UpgradeNotificationAnnoyanceLevel level = local
107 SeverityFromUpgradeLevel(level),
108 ShouldAnimateUpgradeLevel(level));
21 SeverityFromUpgradeLevel( UpgradeDetector::UpgradeNotificationAnnoyanceLevel level) argument
42 ShouldAnimateUpgradeLevel( UpgradeDetector::UpgradeNotificationAnnoyanceLevel level) argument
[all...]
/external/chromium_org/content/browser/battery_status/
H A Dbattery_status_manager_android.cc37 jdouble level) {
42 status.level = level;
32 GotBatteryStatus(JNIEnv*, jobject, jboolean charging, jdouble charging_time, jdouble discharging_time, jdouble level) argument
/external/chromium_org/ppapi/shared_impl/
H A Dppb_instance_shared.cc27 PP_LogLevel level,
29 LogWithSource(instance, level, PP_MakeUndefined(), value);
33 PP_LogLevel level,
43 PpapiGlobals::Get()->LogWithSource(instance, level, source_str, value_str);
26 Log(PP_Instance instance, PP_LogLevel level, PP_Var value) argument
32 LogWithSource(PP_Instance instance, PP_LogLevel level, PP_Var source, PP_Var value) argument
H A Dresource.cc75 void Resource::Log(PP_LogLevel level, const std::string& message) { argument
77 pp_instance(), level, std::string(), message); local
/external/chromium_org/ppapi/thunk/
H A Dppb_gles_chromium_texture_mapping_thunk.cc19 GLint level,
30 target, level, xoffset, yoffset, width, height, format, type, access);
17 MapTexSubImage2DCHROMIUM(PP_Resource context, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLenum access) argument
/external/chromium_org/sandbox/win/tools/launcher/
H A Dlauncher.cc9 // The parameters are the level of security of the primary token, the
17 wprintf(L"\n\nUsage: \n %ls --main level --init level --job level cmd_line ",
21 wprintf(L"\n\n main: Security level of the main token");
22 wprintf(L"\n init: Security level of the impersonation token");
23 wprintf(L"\n job: Security level of the job object");
27 sandbox::TokenLevel* level) {
29 *level = sandbox::USER_LOCKDOWN;
31 *level
26 GetTokenLevelFromString(const wchar_t *param, sandbox::TokenLevel* level) argument
49 GetJobLevelFromString(const wchar_t *param, sandbox::JobLevel* level) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DBidiContext.h42 static PassRefPtr<BidiContext> create(unsigned char level, WTF::Unicode::Direction, bool override = false, BidiEmbeddingSource = FromStyleOrDOM, BidiContext* parent = 0);
45 unsigned char level() const { return m_level; } function in class:blink::BidiContext
58 BidiContext(unsigned char level, WTF::Unicode::Direction direction, bool override, BidiEmbeddingSource source, BidiContext* parent) argument
59 : m_level(level)
65 ASSERT(level <= kMaxLevel);
68 static PassRefPtr<BidiContext> createUncached(unsigned char level, WTF::Unicode::Direction, bool override, BidiEmbeddingSource, BidiContext* parent);
70 unsigned m_level : 7; // The maximium bidi level is 125: http://unicode.org/reports/tr9/#Explicit_Levels_and_Directions
77 inline unsigned char nextGreaterOddLevel(unsigned char level) argument
79 return (level + 1) | 1;
82 inline unsigned char nextGreaterEvenLevel(unsigned char level) argument
[all...]
/external/chromium_org/third_party/cld/base/
H A Dvlog_is_on.h17 // The truth value that VLOG_IS_ON(level) returns is determined by
18 // the three verbosity level flags:
19 // --v=<n> Gives the default maximal active V-logging level;
24 // E.g. "my_module=2,foo*=3" would change the logging level
29 // thus suppressing one more level of verbose logging.
50 // We pack an int16 verbosity level and an int16 epoch into an
51 // Atomic32 at every VLOG_IS_ON() call site. The level determines
53 // site is stale and should be reinitialized. A verbosity level of
55 // the verbosity level. When the site is (re)initialized, a verbosity
56 // level fo
115 Site(int level, int epoch) argument
131 VLogEnabled(Atomic32* site, int32 level, const char* const file) argument
[all...]
/external/chromium_org/third_party/icu/source/test/letest/
H A Dletsutil.cpp81 UBiDiLevel level = 0; local
90 ubidi_getLogicalRun(ubidi, 0, &limit, &level);
94 return level & 1;
/external/chromium_org/third_party/libwebp/enc/
H A Dcost.h10 // Cost tables for level and modes.
49 // approximate cost per level:
67 static WEBP_INLINE int VP8LevelCost(const uint16_t* const table, int level) { argument
68 return VP8LevelFixedCosts[level]
69 + table[(level > MAX_VARIABLE_LEVEL) ? MAX_VARIABLE_LEVEL : level];
/external/chromium_org/third_party/lzma_sdk/
H A DLzmaEnc.h17 int level; /* 0 <= level <= 9 */ member in struct:_CLzmaEncProps
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Degllog.c54 EGLint level; member in struct:__anon13696
104 * Set the log reporting level.
107 _eglSetLogLevel(EGLint level) argument
109 switch (level) {
115 logging.level = level;
128 _eglDefaultLogger(EGLint level, const char *msg) argument
130 fprintf(stderr, "libEGL %s: %s\n", level_strings[level], msg);
141 EGLint i, level = -1; local
150 level
179 _eglLog(EGLint level, const char *fmtStr, ...) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_staging.c55 unsigned level,
65 tx->base.level = level;
98 tx->base.resource, level, &sbox);
123 pipe->resource_copy_region(pipe, tx->base.resource, tx->base.level, tx->base.box.x, tx->base.box.y, tx->base.box.z + zi,
53 util_staging_transfer_init(struct pipe_context *pipe, struct pipe_resource *pt, unsigned level, unsigned usage, const struct pipe_box *box, boolean direct, struct util_staging_transfer *tx) argument
H A Du_surfaces.h49 unsigned level, unsigned layer, unsigned flags,
56 unsigned level, unsigned layer, unsigned flags,
61 struct pipe_surface *ps = us->u.array[level];
70 return util_surfaces_do_get(us, surface_struct_size, ctx, pt, level, layer, flags, res);
74 util_surfaces_peek(struct util_surfaces *us, struct pipe_resource *pt, unsigned level, unsigned layer) argument
80 return cso_hash_iter_data(cso_hash_find(us->u.hash, (layer << 8) | level));
82 return us->u.array[level];
92 us->u.array[ps->u.tex.level] = 0;
54 util_surfaces_get(struct util_surfaces *us, unsigned surface_struct_size, struct pipe_context *ctx, struct pipe_resource *pt, unsigned level, unsigned layer, unsigned flags, struct pipe_surface **res) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_flush.c100 unsigned level,
109 referenced = llvmpipe_is_resource_referenced(pipe, resource, level, layer);
98 llvmpipe_flush_resource(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, int layer, boolean read_only, boolean cpu_access, boolean do_not_block, const char *reason) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_resource.h32 struct nv30_miptree_level level[13]; member in struct:nv30_miptree
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_context.c161 unsigned level, int layer)
159 softpipe_is_resource_referenced( struct pipe_context *pipe, struct pipe_resource *texture, unsigned level, int layer) argument
H A Dsp_flush.c122 unsigned level,
131 referenced = softpipe_is_resource_referenced(pipe, texture, level, layer);
120 softpipe_flush_resource(struct pipe_context *pipe, struct pipe_resource *texture, unsigned level, int layer, unsigned flush_flags, boolean read_only, boolean cpu_access, boolean do_not_block) argument
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx_log.c51 void _apple_glx_log(int level, const char *file, const char *function, argument
55 _apple_glx_vlog(level, file, function, line, fmt, v);
60 _asl_level_string(int level) argument
62 if (level == ASL_LEVEL_EMERG) return ASL_STRING_EMERG;
63 if (level == ASL_LEVEL_ALERT) return ASL_STRING_ALERT;
64 if (level == ASL_LEVEL_CRIT) return ASL_STRING_CRIT;
65 if (level == ASL_LEVEL_ERR) return ASL_STRING_ERR;
66 if (level == ASL_LEVEL_WARNING) return ASL_STRING_WARNING;
67 if (level == ASL_LEVEL_NOTICE) return ASL_STRING_NOTICE;
68 if (level
73 _apple_glx_vlog(int level, const char *file, const char *function, int line, const char *fmt, va_list args) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_tex_layout.c143 GLuint level; local
179 for ( level = mt->first_level ; level <= mt->last_level ; level++ ) {
182 intel_miptree_set_level_info(mt, level, x, y, width,
196 if (level == mt->first_level + 1) {
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_tex_layout.c46 GLuint level; local
61 for (level = mt->first_level; level <= mt->last_level; level++) {
63 intel_miptree_set_image_offset(mt, level, q, 0, q * qpitch);
92 GLuint level; local
107 for (level = mt->first_level ; level <= mt->last_level ; level++) {
112 intel_miptree_set_level_info(mt, level,
[all...]
H A Dintel_tex_layout.c143 GLuint level; local
179 for ( level = mt->first_level ; level <= mt->last_level ; level++ ) {
182 intel_miptree_set_level_info(mt, level, x, y, width,
196 if (level == mt->first_level + 1) {

Completed in 4392 milliseconds

1234567891011>>