Home
last modified time | relevance | path

Searched refs:DEPTH (Results 1 – 25 of 28) sorted by relevance

12

/external/chromium/chrome/browser/sync/tools/
Dsync_tools.gyp14 '<(DEPTH)/base/base.gyp:base',
15 '<(DEPTH)/chrome/chrome.gyp:sync_notifier',
16 '<(DEPTH)/chrome/chrome.gyp:test_support_common',
17 '<(DEPTH)/content/content.gyp:content_browser',
/external/chromium/webkit/glue/
Dwebkit_glue.gypi64 '<(DEPTH)/app/app.gyp:app_base',
65 '<(DEPTH)/base/base.gyp:base_i18n',
108 '<(DEPTH)/app/app.gyp:app_base',
109 '<(DEPTH)/base/base.gyp:base_i18n',
110 '<(DEPTH)/gpu/gpu.gyp:gpu_common',
111 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation',
112 '<(DEPTH)/net/net.gyp:net',
113 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_shared_impl',
114 '<(DEPTH)/printing/printing.gyp:printing',
115 '<(DEPTH)/skia/skia.gyp:skia',
[all …]
/external/valgrind/main/none/tests/
Dstackgrowth.c4 #define DEPTH (4*1024) macro
19 test(DEPTH); in main()
/external/icu4c/test/intltest/
Dtsdate.cpp149 const int32_t DEPTH = 10; in tryDate() local
150 UDate date[DEPTH]; in tryDate()
151 UnicodeString string[DEPTH]; in tryDate()
164 for (i=1; i<DEPTH; ++i) in tryDate()
197 if (i == DEPTH) in tryDate()
Dtsnmfmt.cpp284 const int32_t DEPTH = 10; in tryIt() local
285 Formattable number[DEPTH]; in tryIt()
286 UnicodeString string[DEPTH]; in tryIt()
292 for (i=0; i<DEPTH; ++i) in tryIt()
343 if (i == DEPTH) in tryIt()
Ddtfmtrtts.cpp42 int32_t DateFormatRoundTripTest::DEPTH = 5; member in DateFormatRoundTripTest
317 UDate *d = new UDate [DEPTH]; in test()
318 UnicodeString *s = new UnicodeString[DEPTH]; in test()
335 for(loop = 0; loop < DEPTH; ++loop) { in test()
467 for(int j = 0; j <= loop && j < DEPTH; ++j) { in test()
Ddtfmtrtts.h85 static int32_t DEPTH; variable
/external/chromium/build/
Dgrit_action.gypi18 'grit_info_cmd': ['python', '<(DEPTH)/tools/grit/grit_info.py',
20 'grit_cmd': ['python', '<(DEPTH)/tools/grit/grit.py'],
Dcommon.gypi406 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
408 …'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/lib/libpython<(python_ver).…
537 '<!(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)',
713 '<(DEPTH)/third_party/wtl/include',
841 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib'],
843 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib/x64'],
847 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib'],
849 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib/x64'],
1503 '<(DEPTH)/third_party/platformsdk_win7/files/Include',
1504 '<(DEPTH)/third_party/directxsdk/files/Include',
[all …]
Dgrit_target.gypi30 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'],
/external/webkit/Source/JavaScriptCore/gyp/
DJavaScriptCore.gyp98 …'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-global-initializ…
104 …'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-exit-time-destru…
110 …'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-weak-vtables-and…
/external/webkit/Source/WebCore/gyp/
DWebCore.gyp146 …'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-global-initializ…
152 …'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-exit-time-destru…
158 …'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-weak-vtables-and…
182 …'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-inappropriate-fi…
/external/emma/core/java12/com/vladium/emma/report/
DIReportProperties.java45 String DEPTH = "depth"; field
DReportProperties.java299 …final String depth = getReportProperty (properties, type, IReportProperties.DEPTH, false, IReportP… in parseProperties()
313 …new EMMARuntimeException (INVALID_PARAMETER_VALUE, new Object [] {IReportProperties.DEPTH, depth}); in parseProperties()
/external/emma/ant/ant14/com/vladium/emma/report/
DReportCfg.java62 m_settings.setProperty (m_prefix.concat (DEPTH), depth.getValue ()); in setDepth()
357 m_settings.setProperty (PREFIX.concat (DEPTH), depth.getValue ()); in setDepth()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DThreadGroupTest.java170 final int DEPTH = 4; in test_destroy() local
171 final Vector<ThreadGroup> subgroups = buildRandomTreeUnder(testRoot, DEPTH); in test_destroy()
458 final int DEPTH = 4; in test_parentOfLjava_lang_ThreadGroup() local
459 buildRandomTreeUnder(testRoot, DEPTH); in test_parentOfLjava_lang_ThreadGroup()
/external/libyuv/files/
Dlibyuv.gyp21 '<(DEPTH)/third_party/libjpeg_turbo/libjpeg.gyp:libjpeg',
/external/libxml2/
Dvalid.c363 #define DEPTH ctxt->vstate->depth macro
367 #define OCCURRENCE (ctxt->vstate->occurs & (1 << DEPTH))
368 #define PARENT_OCCURRENCE (ctxt->vstate->occurs & ((1 << DEPTH) - 1))
370 #define SET_OCCURRENCE ctxt->vstate->occurs |= (1 << DEPTH)
371 #define RESET_OCCURRENCE ctxt->vstate->occurs &= ((1 << DEPTH) - 1)
4817 if (vstateVPush(ctxt, CONT, NODE, DEPTH, OCCURS, ROLLBACK_PARENT) < 0) in xmlValidateElementType()
4902 DEPTH++; in xmlValidateElementType()
4914 DEPTH++; in xmlValidateElementType()
4924 if (vstateVPush(ctxt, CONT->c2, NODE, (unsigned char)(DEPTH + 1), in xmlValidateElementType()
4927 DEPTH++; in xmlValidateElementType()
[all …]
/external/webrtc/src/system_wrappers/source/
Dsystem_wrappers.gyp184 '<(DEPTH)/testing/gtest.gyp:gtest',
/external/skia/gyp/
Dcommon_conditions.gypi377 'SYMROOT': '<(DEPTH)/xcodebuild',
/external/v8/build/
Dstandalone.gypi119 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'],
Dcommon.gypi364 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)',
/external/chromium/base/
Dbase.gypi396 '<(DEPTH)/third_party/wtl/include',
/external/chromium/base/allocator/
Dallocator.gyp254 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib'],
/external/webkit/Source/WebKit/chromium/
DWebKit.gyp895 '<(DEPTH)',
922 '<(DEPTH)',

12