/external/libxml2/result/SVG/ |
private.xml | 6 <myapp:piece label="Northern Region" value="1.23"/> 7 <myapp:piece label="Eastern Region" value="2.53"/> 8 <myapp:piece label="Southern Region" value="3.89"/> 9 <myapp:piece label="Western Region" value="2.04"/>
|
/external/libxml2/test/SVG/ |
private.xml | 7 <myapp:piece label="Northern Region" value="1.23"/>
8 <myapp:piece label="Eastern Region" value="2.53"/>
9 <myapp:piece label="Southern Region" value="3.89"/>
10 <myapp:piece label="Western Region" value="2.04"/>
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/ |
FileUtilities.java | 49 * Replaces all occurances of piece with replacement, and returns new String 51 public static String replace(String source, String piece, String replacement) { 52 if (source == null || source.length() < piece.length()) return source; 55 pos = source.indexOf(piece, pos); 57 source = source.substring(0,pos) + replacement + source.substring(pos + piece.length());
|
/external/valgrind/memcheck/tests/ |
memalign2.c | 29 int* piece; 43 // We allocate (and then free) a piece of memory smaller than 50 piece = malloc(1024 * 1000); assert (piece); 51 free (piece); 56 piece = malloc(1024 * 100); assert (piece); 58 free (piece);
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfExpression.h | 72 /// \param PieceOffsetInBits offset of the piece in bits, if this is one 73 /// piece of an aggregate value. 79 /// piece of a super-register or by piecing together multiple 92 /// \param PieceOffsetInBits If this is one piece out of a fragmented 93 /// location, this is the offset of the piece inside the entire variable. 98 /// \param PieceOffsetInBits If this is one piece out of a fragmented 99 /// location, this is the offset of the piece inside the entire variable.
|
/external/doclava/src/com/google/doclava/ |
Resolution.java | 28 * <p>Variables refer to the piece of data within a Java type that needs to be updated 43 * @param variable The piece of data within a Java type that needs to be updated 55 * @return The piece of data within a Java type that needs to be updated
|
/external/icu/icu4c/source/tools/toolutil/ |
swapimpl.h | 27 * Identifies and then transforms the ICU data piece in-place, or determines
|
/external/pcre/dist/ |
pcre_stringpiece.cc | 41 std::ostream& operator<<(std::ostream& o, const pcrecpp::StringPiece& piece) { 42 return (o << piece.as_string());
|
/external/valgrind/memcheck/tests/linux/ |
rfcomm.c | 46 // We re-assign below each piece one by one, so as to 47 // have the piece marked initialised.
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
SchedulingUtils.java | 28 /** Runs a piece of code after the next layout run */ 41 /** Runs a piece of code just before the next draw, after layout and measurement */
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
SchedulingUtils.java | 27 /** Runs a piece of code after the next layout run */ 40 /** Runs a piece of code just before the next draw, after layout and measurement */
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/binding/ |
BindableData.java | 20 * Base class for data objects that will be bound to a piece of the UI 30 * Key used to identify the piece of UI that the data is currently bound to
|
BindingBase.java | 23 * (DO NOT CREATE A NEW BINDING EACH TIME A NEW PIECE OF DATA IS BOUND)... 26 * It can use it [isBound(data)] to see if the binding still binds to the right piece of data 29 * that to ensure that it is still issuing callbacks to the right piece of ui.
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
Tabber.java | 118 String piece = source.substring(lastPos, pos); 124 result.append(piece); 135 String piece = source.substring(start, limit); local 143 startPos = endPos - piece.length(); 146 startPos = (startPos + endPos - piece.length() + 1)/2; 153 output.append(piece);
|
DataOutputCompressor.java | 163 String piece = s.substring(common); local 166 int inPool = trailingPool.getIndex(piece); 169 writeUTF(piece); 170 trailingPool.put(piece);
|
/art/runtime/base/ |
stringpiece.cc | 96 std::ostream& operator<<(std::ostream& o, const StringPiece& piece) { 97 o.write(piece.data(), piece.size());
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
WebPlatformUrlTestData.java | 102 String piece = parts[i]; 103 if (piece.startsWith("#")) continue; 104 String[] nameAndValue = piece.split(":", 2);
|
/external/regex-re2/util/ |
stringpiece.cc | 10 std::ostream& operator<<(std::ostream& o, const StringPiece& piece) { 11 o.write(piece.data(), piece.size());
|
/external/libopus/silk/ |
log2lin.c | 51 /* Piece-wise parabolic approximation */ 54 /* Piece-wise parabolic approximation */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
gnu-versions.h | 24 number associated with the library interface of a piece of the C library 28 the GNU C library. The source files for each piece surround all their
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
gnu-versions.h | 24 number associated with the library interface of a piece of the C library 28 the GNU C library. The source files for each piece surround all their
|
/cts/common/util/src/com/android/compatibility/common/util/ |
MeasureTime.java | 20 * Provides a mechanism to measure the time taken to run a piece of code.
|
/external/bison/m4/ |
pathmax.m4 | 14 # Expands to a piece of C program that defines PATH_MAX in the same way as
|
/external/chromium-trace/trace-viewer/tracing/tracing/model/ |
event.html | 24 * An Event is the base type for any non-container, selectable piece
|
timed_event.html | 20 * A TimedEvent is the base type for any piece of data in the trace model with
|