/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/ |
_kai.h | 19 // two levels of macros do not work good with kcc.
|
/development/perftests/panorama/feature_mos/src/mosaic/ |
Pyramid.h | 40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0); 45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines);
|
/external/fio/ |
log.c | 94 static const char *levels[] = { "Unknown", "Debug", "Info", "Error", local 100 return levels[level];
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
Utils.java | 43 * - Units repeat in levels of 10,000, there are symbols for each level too (except 1's). 48 * - The 1000's 0 is also omitted in alternating levels, such that it is omitted in the rightmost 76 buf[--x] = zh.levels[l]; 129 // remove levels for empty blocks 189 final char[] levels; field in class:Utils.ChineseDigits 193 ChineseDigits(String digits, String units, String levels, char liang, boolean ko) { 196 this.levels = levels.toCharArray();
|
/frameworks/base/core/tests/coretests/src/android/util/ |
LogTest.java | 48 // Check to make sure that all levels expect for INFO, WARN, ERROR, and ASSERT are loggable. 59 // Test to make sure all log levels >= VERBOSE are loggable. 70 // Test to make sure all log levels >= DEBUG are loggable. 81 // Test to make sure all log levels >= INFO are loggable. 92 // Test to make sure all log levels >= WARN are loggable. 103 // Test to make sure all log levels >= ERROR are loggable. 114 // Test to make sure all log levels >= ASSERT are loggable. 125 // Test to make sure all log levels >= ASSERT are loggable.
|
/frameworks/base/tools/aapt2/ |
public_attr_map.py | 15 levels = [(1, 0x021c), (2, 0x021d), (3, 0x0269), (4, 0x028d), 20 for level, attrEntryId in levels:
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Pyramid.h | 40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0); 45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines);
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
Pyramid.h | 40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0); 45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines);
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/ |
dag.py | 257 levels = {s:0} 265 if v in levels: # Non-Tree Edge 266 g = gcd(g, levels[u]-levels[v] + 1) 269 levels[v] = l 272 if len(levels)==len(G): #All nodes in tree 275 return g==1 and nx.is_aperiodic(G.subgraph(set(G)-set(levels)))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
mls.py | 93 Factory function for creating MLS level objects (e.g. levels used 186 levels = str(sym).split("-") 188 # strip() levels to handle ranges with spaces in them, 191 low = level_factory(policy, levels[0].strip()) 196 high = level_factory(policy, levels[1].strip()) 284 """Base class for MLS levels.""" 325 The declaration statement for MLS levels, e.g: 336 assert not isinstance(other, Level), "Levels cannot be compared to level declarations" 344 assert not isinstance(other, Level), "Levels cannot be compared to level declarations" 348 assert not isinstance(other, Level), "Levels cannot be compared to level declarations [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/policyrep/ |
mls.py | 93 Factory function for creating MLS level objects (e.g. levels used 186 levels = str(sym).split("-") 188 # strip() levels to handle ranges with spaces in them, 191 low = level_factory(policy, levels[0].strip()) 196 high = level_factory(policy, levels[1].strip()) 284 """Base class for MLS levels.""" 325 The declaration statement for MLS levels, e.g: 336 assert not isinstance(other, Level), "Levels cannot be compared to level declarations" 344 assert not isinstance(other, Level), "Levels cannot be compared to level declarations" 348 assert not isinstance(other, Level), "Levels cannot be compared to level declarations [all...] |
/libcore/luni/src/main/native/ |
java_text_Bidi.cpp | 78 // Copy the new embedding levels from the Java heap to the native heap. 121 const UBiDiLevel* levels = ubidi_getLevels(uBiDi(ptr), &status); local 127 env->SetByteArrayRegion(result, 0, len, reinterpret_cast<const jbyte*>(levels)); 169 const UBiDiLevel* levels = reinterpret_cast<const UBiDiLevel*>(levelBytes.get()); local 172 ubidi_reorderVisual(levels, length, &indexMap[0]);
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/ |
SoundLevels.java | 36 * This view draws circular sound levels. By default the sound levels are black, unless 50 // The minimum size of the levels as a percentage of the max, that is the size when volume is 0. 53 // The minimum size of the levels, that is the size when volume is 0. 56 // The maximum size of the levels, that is the size when volume is 100.
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
TestCompatibility.java | 241 byte[] levels = new byte[] {0,0,0,-1,-1,-1,0,0,0,0}; 242 bidi = new Bidi(text, 3, levels, 0, 10, Bidi.DIRECTION_LEFT_TO_RIGHT); 243 jbidi = new java.text.Bidi(text, 3, levels, 0, 10, java.text.Bidi.DIRECTION_LEFT_TO_RIGHT); 246 logln("Output of Bidi(abc==(123)==>def,3,levels,0,10, LTR): " + out); 247 bidi = new Bidi(text, 3, levels, 0, 10, Bidi.DIRECTION_DEFAULT_RIGHT_TO_LEFT); 248 jbidi = new java.text.Bidi(text, 3, levels, 0, 10, java.text.Bidi.DIRECTION_DEFAULT_RIGHT_TO_LEFT); 251 logln("Output of Bidi(abc==(123)==>def,3,levels,0,10, DEFAULT_RTL): " + out); 256 levels = new byte[objects.length]; 259 levels[i] = myLevels[i]; 261 Bidi.reorderVisually(levels, 3, objects, 3, 7) [all...] |
TestReorder.java | 197 byte[] levels = new byte[Bidi.MAX_EXPLICIT_LEVEL]; 199 levels[i] = (byte)(i + 1); 202 bidi.setPara(srcU16, Bidi.LEVEL_DEFAULT_LTR, levels); 224 byte[] levels = new byte[Bidi.MAX_EXPLICIT_LEVEL]; 226 levels[i] = (byte)(i + 1); 229 bidi.setPara(srcU16, Bidi.LEVEL_DEFAULT_LTR, levels);
|
/frameworks/native/opengl/libs/GLES_CM/ |
glext_api.in | 418 void API_ENTRY(glTexStorage1DEXT)(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width) { 419 CALL_GL_API(glTexStorage1DEXT, target, levels, internalformat, width); 421 void API_ENTRY(glTexStorage2DEXT)(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height) { 422 CALL_GL_API(glTexStorage2DEXT, target, levels, internalformat, width, height); 424 void API_ENTRY(glTexStorage3DEXT)(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth) { 425 CALL_GL_API(glTexStorage3DEXT, target, levels, internalformat, width, height, depth); 427 void API_ENTRY(glTextureStorage1DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width) { 428 CALL_GL_API(glTextureStorage1DEXT, texture, target, levels, internalformat, width); 430 void API_ENTRY(glTextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height) { 431 CALL_GL_API(glTextureStorage2DEXT, texture, target, levels, internalformat, width, height) [all...] |
/cts/apps/CameraITS/tests/inprog/ |
test_param_black_level_lock.py | 70 # Check that the black levels are all the same. 71 print "Black levels:", modes
|
/device/lge/hammerhead/ |
gps.conf | 26 # DEBUG LEVELS: 0 - none, 1 - Error, 2 - Warning, 3 - Info 28 # If DEBUG_LEVEL is commented, Android's logging levels will be used
|
/device/moto/shamu/ |
gps.conf | 26 # DEBUG LEVELS: 0 - none, 1 - Error, 2 - Warning, 3 - Info 28 # If DEBUG_LEVEL is commented, Android's logging levels will be used
|
/external/clang/include/clang/Basic/ |
OperatorPrecedence.h | 1 //===--- OperatorPrecedence.h - Operator precedence levels ------*- C++ -*-===// 11 /// \brief Defines and computes precedence levels for binary/ternary operators.
|
/external/libavc/encoder/ |
ih264e_statistics.h | 49 * @brief In cavlc encoding, a lut is used for encoding levels. It is not possible 50 * to use look up for all possible levels. The extent to which look up is generated
|
/external/replicaisland/src/com/replica/replicaisland/ |
LevelSelectActivity.java | 201 final int count = LevelTree.levels.size(); 205 final LevelTree.LevelGroup group = LevelTree.levels.get(x); 206 for (int y = 0; y < group.levels.size(); y++) { 207 LevelTree.Level level = group.levels.get(y); 224 final int count = LevelTree.levels.size(); 226 final LevelTree.LevelGroup group = LevelTree.levels.get(x); 227 for (int y = 0; y < group.levels.size(); y++) { 228 LevelTree.Level level = group.levels.get(y);
|
/external/selinux/libsepol/cil/test/integration_testing/ |
mls_policy.cil | 52 ; will need anon levels 56 ;needs anon levels
|
/external/vboot_reference/firmware/stub/ |
vboot_api_stub_sf.c | 38 int levels = backtrace(buffer, MAX_STACK_LEVELS); local 41 backtrace_symbols_fd(buffer + 1, levels - 1, 2);
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
lpc_tables.h | 58 /* offsets for quantizer representation levels */ 63 /* quantizer representation levels */
|