Searched refs:positions (Results 126 - 150 of 219) sorted by relevance

123456789

/external/skia/src/gpu/text/
H A DGrAtlasTextContext.cpp698 SkTArray<SkScalar> positions; local
718 positions.push_back(stopX + origin * width);
721 positions.push_back(stopY + origin * height);
745 text, byteLength, positions.begin(), 2, offset);
/external/skqp/src/core/
H A DSkThreadedBMPDevice.cpp198 vertices->positions(), vertices->texCoords(),
/external/skqp/src/gpu/text/
H A DGrAtlasTextContext.cpp610 SkTArray<SkScalar> positions; local
630 positions.push_back(stopX + origin * width);
633 positions.push_back(stopY + origin * height);
657 text, byteLength, positions.begin(), 2, offset);
/external/v8/src/inspector/
H A Dv8-debugger-agent-impl.h109 positions) override;
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationRuleParser.java34 /** Special reset positions. */
54 * First character of contractions that encode special reset positions.
61 * Base for the second character of contractions that encode special reset positions.
479 private static final String[] positions = { field in class:CollationRuleParser
507 for(int pos = 0; pos < positions.length; ++pos) {
508 if(raw.equals(positions[pos])) {
/external/icu/icu4c/source/i18n/
H A Dcollationruleparser.cpp440 static const char *const positions[] = { member in namespace:__anon8074
466 for(int32_t pos = 0; pos < UPRV_LENGTHOF(positions); ++pos) {
467 if(raw == UnicodeString(positions[pos], -1, US_INV)) {
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationRuleParser.java30 /** Special reset positions. */
50 * First character of contractions that encode special reset positions.
57 * Base for the second character of contractions that encode special reset positions.
475 private static final String[] positions = { field in class:CollationRuleParser
503 for(int pos = 0; pos < positions.length; ++pos) {
504 if(raw.equals(positions[pos])) {
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
H A DDifference.java278 * Find the positions of all the given children.
281 Map<Node, Integer> positions = new HashMap<>();
285 positions.put(((CsmChild)element).getChild(), i);
288 return positions;
296 // For performance reasons we use the positions of matching children
/external/python/cpython3/Lib/test/
H A Dtest_marshal.py251 positions = []
258 positions.append(f.tell())
264 self.assertEqual(positions[i], f.tell())
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.text_3.5.400.v20150505-1044.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DLongArray.java1199 * process together, the number of evaluation 'positions' implied by that width, and the
1202 int width, positions, top, banks;
1205 // width = 1; positions = 64; top = 64; banks = 4;
1206 // width = 2; positions = 32; top = 64; banks = 4;
1207 // width = 3; positions = 21; top = 63; banks = 3;
1208 width = 4; positions = 16; top = 64; banks = 8;
1209 // width = 5; positions = 13; top = 65; banks = 7;
1210 // width = 7; positions = 9; top = 63; banks = 9;
1211 // width = 8; positions = 8; top = 64; banks = 8;
1216 int shifts = top < 64 ? positions
[all...]
/external/v8/src/compiler/
H A Dregister-allocator.cc423 // Walk the positions, verifying that each is in an interval.
676 // Partition original use positions to the two live ranges.
731 // start positions. This is needed for the correctness of the register
1498 // to only cover positions in deferred blocks. Otherwise, a block on the
2579 // With splinters, we can be more strict and skip over positions
2982 LiveRange* range, Vector<LifetimePosition> positions) {
2990 DCHECK_GE(positions.length(), num_regs);
2993 positions[i] = LifetimePosition::MaxPosition();
2999 positions[cur_reg] = LifetimePosition::GapFromInstructionIndex(0);
3009 positions[aliased_re
2981 FindFreeRegistersForRange( LiveRange* range, Vector<LifetimePosition> positions) argument
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_dataflow_analysis_test.cc120 // Verify the positions of the values. These positions are all trivial because
122 EXPECT_THAT(analysis.GetValueDefinedAt(constant1).positions(),
124 EXPECT_THAT(analysis.GetValueDefinedAt(constant2).positions(),
126 EXPECT_THAT(analysis.GetValueDefinedAt(add).positions(),
174 // Verify the positions of the values.
176 analysis.GetValueDefinedAt(param0).positions(),
180 analysis.GetValueDefinedAt(param1).positions(),
183 EXPECT_THAT(analysis.GetValueDefinedAt(tuple).positions(),
219 // Verify positions an
[all...]
H A Dhlo_alias_analysis.cc214 for (const HloPosition& position : value.positions()) {
404 StrAppend(&out, " positions:\n");
/external/v8/src/debug/
H A Ddebug.cc651 // Source positions starts with zero.
1062 // Simple function for returning the source positions for active break points.
1319 std::set<int>* positions) {
1323 positions->insert(alignment == STATEMENT_ALIGNED ? it->statement_position()
1331 std::set<int>* positions) {
1335 positions);
1340 positions);
1346 int end_position, std::set<int>* positions) {
1381 BREAK_POSITION_ALIGNED, positions);
1317 GetBreakablePositions(Iterator* it, int start_position, int end_position, BreakPositionAlignment alignment, std::set<int>* positions) argument
1329 FindBreakablePositions(Handle<DebugInfo> debug_info, int start_position, int end_position, BreakPositionAlignment alignment, std::set<int>* positions) argument
1345 GetPossibleBreakpoints(Handle<Script> script, int start_position, int end_position, std::set<int>* positions) argument
/external/annotation-tools/annotation-file-utilities/
H A Ddesign.tex28 The use of source positions rather than tree paths for indicating
98 \item Create an empty map from (Integer) source positions to
172 instead of calculating numeric positions, apply a transformation to the
175 than the logic of finding numeric positions for inserting text by
232 The current AFU finds numeric source positions in trees and inserts
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrix.h163 /** \returns a const pointer to the array of the starting positions of the inner vectors.
167 /** \returns a non-const pointer to the array of the starting positions of the inner vectors.
1093 IndexVector positions(dest.outerSize());
1098 positions[j] = count;
1109 Index pos = positions[it.index()]++;
/external/skia/src/effects/
H A DSkBlurMaskFilter.cpp879 srcProxyRect.toQuad(builder.positions());
880 temp.toQuad(builder.positions() + 4);
891 srcProxyRect.toQuad(builder.positions());
/external/skqp/src/effects/
H A DSkBlurMaskFilter.cpp878 srcProxyRect.toQuad(builder.positions());
879 temp.toQuad(builder.positions() + 4);
890 srcProxyRect.toQuad(builder.positions());
/external/tensorflow/tensorflow/python/keras/_impl/keras/engine/
H A Dtopology.py1275 def summary(self, line_length=None, positions=None, print_fn=None):
1282 positions: Relative or absolute positions of log elements
1292 positions=positions,
/external/pdfium/core/fxge/win32/
H A Dwin32_int.h77 void* positions,
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowMediaPlayerTest.java546 int[] positions = { 0, 1, 2, 1024 };
547 for (int position : positions) {
1042 int[] positions = { 0, 5, 2, 999 };
1044 for (int position : positions) {
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderExecutor.cpp509 std::vector<tcu::Vec2> positions(numValues);
517 positions[valNdx] = tcu::Vec2(fx, fy);
520 return positions;
742 std::vector<tcu::Vec2> positions; local
777 // Compute positions - 1px points are used to drive fragment shading.
778 positions = computeVertexPositions(numValues, renderSize.cast<int>());
781 addAttribute(0u, VK_FORMAT_R32G32_SFLOAT, sizeof(tcu::Vec2), (deUint32)positions.size(), &positions[0]);
1247 vk.cmdDraw(*cmdBuffer, (deUint32)positions.size(), 1u, 0u, 0u);
/external/deqp/modules/egl/
H A DteglNativeColorMappingTests.cpp221 const float positions[] = local
243 gl.vertexAttribPointer(posLocation, 2, GL_FLOAT, GL_FALSE, 0, positions);
H A DteglNativeCoordMappingTests.cpp231 const tcu::Vec2 positions[] = local
247 gl.vertexAttribPointer(posLocation, 2, GL_FLOAT, GL_FALSE, 0, positions);

Completed in 614 milliseconds

123456789