/art/runtime/base/ |
timing_logger_test.cc | 35 const base::TimingLogger::SplitTimings& splits = timings.GetSplits(); local 37 EXPECT_EQ(1U, splits.size()); 38 EXPECT_STREQ(splits[0].second, split1name); 56 const base::TimingLogger::SplitTimings& splits = timings.GetSplits(); local 58 EXPECT_EQ(3U, splits.size()); 59 EXPECT_STREQ(splits[0].second, split1name); 60 EXPECT_STREQ(splits[1].second, split2name); 61 EXPECT_STREQ(splits[2].second, split3name); 88 const base::TimingLogger::SplitTimings& splits = timings.GetSplits(); local 90 EXPECT_EQ(5U, splits.size()) 122 const base::TimingLogger::SplitTimings& splits = timings.GetSplits(); local 151 const base::TimingLogger::SplitTimings& splits = timings.GetSplits(); local [all...] |
timing_logger.h | 73 // Splits are nanosecond times and split names. 80 // Clears current splits and labels. 96 // Scoped timing splits that can be nested and composed with the explicit split 113 // Used by new split to swap splits in place in a ScopedSplit instance. 117 // stack of nested splits through this field. 154 // The current scoped split is also the 'top' of the stack of splits in progress. 157 // Splits that have ended.
|
timing_logger.cc | 79 const base::TimingLogger::SplitTimings& splits = logger.GetSplits(); local 80 for (base::TimingLogger::SplitTimingsIterator it = splits.begin(), end = splits.end(); 179 // Print formatted splits. 229 // If one or more enclosed explcitly started splits are not terminated we can 230 // either fail or "unwind" the stack of splits in the timing logger to 'this' 231 // (by deleting the intervening scoped splits). This implements the latter. 253 // scoped split in place. Basically, it's one way to make explicit and scoped splits compose 255 // since we unwind the stack of scoped splits in the scoped split destructor. However, this implies
|
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/ |
PssmShadowUtil.java | 55 * Updates the frustum splits stores in <code>splits</code> using PSSM. 57 public static void updateFrustumSplits(float[] splits, float near, float far, float lambda) { 58 for (int i = 0; i < splits.length; i++) { 59 float IDM = i / (float) splits.length; 62 splits[i] = log * lambda + uniform * (1.0f - lambda); 67 splits[0] = near; 68 splits[splits.length - 1] = far; 72 * Compute the Zfar in the model vieuw to adjust the Zfar distance for the splits calculatio [all...] |
PssmShadowRenderer.java | 59 * It splits the view frustum in several parts and compute a shadow map for each 60 * one.<br> splits are distributed so that the closer they are from the camera, 131 private ColorRGBA splits; field in class:PssmShadowRenderer 175 splits = new ColorRGBA(); 350 //We prevent computing the frustum points and splits with zeroed or negative near clip value 364 splits.a = splitsArray[4]; 366 splits.b = splitsArray[3]; 368 splits.g = splitsArray[2]; 371 splits.r = splitsArray[1]; 433 postshadowMat.setColor("Splits", splits) [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/ |
ApplicationResolver.java | 53 String[] splits = receiverClassName.split("\\."); local 55 if (splits[splits.length - 1].matches(staticInnerClassRegex) && splits[splits.length - 2].matches(staticInnerClassRegex)) {
|
/external/chromium_org/tools/traceline/traceline/scripts/ |
filter_split.sh | 6 # Runs filter_short on the individual splits of a json file, and puts
|
split.py | 6 """Splits a single json file (read from stdin) into separate files of 40k
|
/external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Shadow/ |
PostShadowPSSM.j3md | 13 Vector4 Splits
|
/cts/tools/dasm/src/dasm/ |
Utils.java | 34 * Splits string like "v1, v2, v3" or "v1..v3" into list of registers 80 * Splits string "package/class/method(param)return_type" into 119 * Splits string "package/class/field" into "package/class" and "field" 139 * Splits string "method(param)return_type" into "method" and
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
Makefile.am | 21 # We need to use mklib, because it splits up libradeon.a into object files
|
/external/dropbear/libtomcrypt/ |
parsenames.pl | 3 # Splits the list of files and outputs for makefile type files
|
/external/mesa3d/src/gallium/drivers/r600/ |
Makefile.am | 21 # We need to use mklib, because it splits up libradeon.a into object files
|
/external/chromium_org/chrome/renderer/spellchecker/ |
spellcheck_language.h | 62 // splits text provided by WebKit into words, contractions, or concatenated 63 // words. The |contraction_iterator_| splits a concatenated word extracted by
|
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/ |
string_util.h | 13 // Splits |str| into a vector of strings delimited by |c|, placing the results
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/util/ |
string_split.h | 21 // Splits |str| into a vector of strings delimited by |c|, placing the results
|
/external/chromium_org/tools/perf/utils/results_viewer/src/ |
results_viewer.js | 30 * Splits the csv file contents, and creates a square array of strings for
|
/external/llvm/lib/MC/ |
MCObjectDisassembler.cpp | 116 AddressSetTy Splits; 133 Splits.insert(II->Address + II->Size); 138 Splits.insert(Target); 144 for (AddressSetTy::const_iterator SI = Splits.begin(), SE = Splits.end();
|
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
Splitter.java | 306 * Splits {@code sequence} into string components and makes them available 327 * Returns a {@code MapSplitter} which splits entries based on this splitter, 328 * and splits entries into keys and values using the specified separator. 339 * Returns a {@code MapSplitter} which splits entries based on this splitter, 340 * and splits entries into keys and values using the specified key-value 352 * An object that splits strings into maps as {@code Splitter} splits 371 * Splits {@code sequence} into substrings, splits each substring into
|
/external/chromium/base/ |
string_split.h | 18 // Splits |str| into a vector of strings delimited by |s|. Append the results 78 // Splits the string along whitespace (where whitespace is the five space
|
/external/chromium_org/base/strings/ |
string_split.h | 17 // Splits |str| into a vector of strings delimited by |c|, placing the results 73 // Splits the string along whitespace (where whitespace is the five space
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
cpdtrtst.h | 47 * Splits a UnicodeString
|
fldset.cpp | 68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) 72 splits = 1; 74 splits += 1; 77 UnicodeString *result = new UnicodeString[splits];
|
/external/icu4c/test/intltest/ |
cpdtrtst.h | 47 * Splits a UnicodeString
|
fldset.cpp | 68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) 72 splits = 1; 74 splits += 1; 77 UnicodeString *result = new UnicodeString[splits];
|