/frameworks/ex/common/java/com/android/common/ |
D | OperationScheduler.java | 111 String[] pieces = param.substring(8).split("\\+"); in parseOptions() local 112 if (pieces.length > 3) { in parseOptions() 115 if (pieces.length > 0 && pieces[0].length() > 0) { in parseOptions() 116 options.backoffFixedMillis = parseSeconds(pieces[0]); in parseOptions() 118 if (pieces.length > 1 && pieces[1].length() > 0) { in parseOptions() 119 options.backoffIncrementalMillis = parseSeconds(pieces[1]); in parseOptions() 121 if (pieces.length > 2 && pieces[2].length() > 0) { in parseOptions() 122 options.backoffExponentialMillis = (int)parseSeconds(pieces[2]); in parseOptions()
|
/frameworks/minikin/libs/minikin/ |
D | MeasuredText.cpp | 108 LayoutPieces* pieces) const { in measureHyphenPiece() 109 TotalAdvanceCompositor compositor(pieces); in measureHyphenPiece() 176 const Range& /* context */, const LayoutPieces& pieces, in appendLayout() argument 187 const uint32_t paintId = pieces.findPaintId(mPaint); in appendLayout() 197 pieces.getOrCreate(textBuf, piece, context, mPaint, info.isRtl, startEdit, endEdit, in appendLayout() 229 const LayoutPieces& pieces) const { in getBounds() 232 const uint32_t paintId = pieces.findPaintId(mPaint); in getBounds() 235 pieces.getOrCreate(textBuf, piece, context, mPaint, info.isRtl, in getBounds() 259 const LayoutPieces& pieces) const { in getExtent() 262 const uint32_t paintId = pieces.findPaintId(mPaint); in getExtent() [all …]
|
D | LineBreakerUtil.h | 71 LayoutPieces* pieces) { // An output of layout pieces. Maybe null. in populateHyphenationPoints() argument 90 editForThisLine(hyph) /* end hyphen edit */, pieces); in populateHyphenationPoints() 94 EndHyphenEdit::NO_EDIT /* end hyphen edit */, pieces); in populateHyphenationPoints()
|
/frameworks/minikin/include/minikin/ |
D | MeasuredText.h | 52 const LayoutPieces& pieces) const = 0; 54 const LayoutPieces& pieces) const = 0; 57 const Range& contextRange, const LayoutPieces& pieces, 97 const LayoutPieces& pieces) const override; 100 const LayoutPieces& pieces) const override; 103 const LayoutPieces& pieces, const MinikinPaint& paint, uint32_t outOrigin, 111 LayoutPieces* pieces) const override;
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
D | ByteStringTest.java | 149 final List<ByteString> pieces = makeConcretePieces(testBytes); in testCopyFrom_Iterable() local 151 ByteString byteString = ByteString.copyFrom(pieces); in testCopyFrom_Iterable() 157 return pieces.iterator(); in testCopyFrom_Iterable() 499 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testCompositeSubstring() local 500 ByteString listString = ByteString.copyFrom(pieces); in testCompositeSubstring() 535 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testCopyFromList() local 536 ByteString listString = ByteString.copyFrom(pieces); in testCopyFromList() 548 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testConcat() local 550 Iterator<ByteString> iter = pieces.iterator(); in testConcat() 578 List<ByteString> pieces = new ArrayList<ByteString>(); in makeConcretePieces() local [all …]
|
/frameworks/base/tools/aapt2/jni/ |
D | aapt2_jni.cpp | 69 std::vector<StringPiece> pieces; in extract_pieces() local 73 [&pieces](const ScopedUtfChars &p) { pieces.push_back(p.c_str()); }); in extract_pieces() 75 return pieces; in extract_pieces()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/test/java/com/google/protobuf/ |
D | ByteStringTest.java | 150 final List<ByteString> pieces = makeConcretePieces(testBytes); in testCopyFrom_Iterable() local 152 ByteString byteString = ByteString.copyFrom(pieces); in testCopyFrom_Iterable() 159 return pieces.iterator(); in testCopyFrom_Iterable() 548 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testCompositeSubstring() local 549 ByteString listString = ByteString.copyFrom(pieces); in testCompositeSubstring() 584 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testCopyFromList() local 585 ByteString listString = ByteString.copyFrom(pieces); in testCopyFromList() 597 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testConcat() local 599 Iterator<ByteString> iter = pieces.iterator(); in testConcat() 698 List<ByteString> pieces = new ArrayList<ByteString>(); in makeConcretePieces() local [all …]
|
/frameworks/base/tools/aapt2/util/ |
D | Util.cpp | 129 int pieces = 0; in IsJavaNameImpl() local 131 pieces++; in IsJavaNameImpl() 136 return pieces; in IsJavaNameImpl() 148 int pieces = 0; in IsAndroidNameImpl() local 166 pieces++; in IsAndroidNameImpl() 168 return pieces; in IsAndroidNameImpl()
|
/frameworks/base/core/java/android/net/ |
D | NetworkUtils.java | 306 String[] pieces = ipAndMaskString.split("/", 2); in parseIpAndMask() local 307 prefixLength = Integer.parseInt(pieces[1]); in parseIpAndMask() 308 address = InetAddress.parseNumericAddress(pieces[0]); in parseIpAndMask()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/ |
D | RopeByteString.java | 375 PieceIterator pieces = new PieceIterator(this); in asReadOnlyByteBufferList() local 376 while (pieces.hasNext()) { in asReadOnlyByteBufferList() 377 LeafByteString byteString = pieces.next(); in asReadOnlyByteBufferList()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/ |
D | encoder.py | 410 pieces = [] 411 _EncodeVarint(pieces.append, value) 412 return b"".join(pieces)
|
/frameworks/base/startop/view_compiler/ |
D | README.md | 31 number of pieces that must be added to generate new tests. Here are the
|
/frameworks/compile/mclinker/ |
D | LICENSE.TXT | 57 The following pieces of software have additional or alternate copyrights,
|
/frameworks/base/cmds/bootanimation/ |
D | FORMAT.md | 124 cd <path-to-pieces>
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/ |
D | strutil.cc | 234 int pieces, in SplitStringToIteratorAllowEmpty() argument 239 for (int i = 0; (i < pieces-1) || (pieces == 0); i++) { in SplitStringToIteratorAllowEmpty()
|
/frameworks/compile/slang/ |
D | NOTICE | 257 The following pieces of software have additional or alternate copyrights, 329 The following pieces of software have additional or alternate copyrights,
|
/frameworks/base/packages/SystemUI/docs/ |
D | plugins.md | 72 When compiling plugins there are a couple vital pieces required.
|
/frameworks/compile/libbcc/ |
D | NOTICE | 259 The following pieces of software have additional or alternate copyrights,
|
/frameworks/native/opengl/tests/angeles/ |
D | license-LGPL.txt | 31 it if you want it; that you can change the software and use pieces of
|
/frameworks/av/media/libaaudio/ |
D | Doxyfile | 1451 # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
|
D | Doxyfile.orig | 1442 # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
|
/frameworks/base/media/native/midi/include/ |
D | Doxyfile.orig | 1568 # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
|
D | Doxyfile | 1568 # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
|
/frameworks/av/media/codec2/docs/ |
D | doxygen.config | 1518 # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
|
/frameworks/base/cmds/statsd/src/ |
D | atoms.proto | 2023 * - Each event can be partially filled as we might learn different pieces of device
|