HomeSort by relevance Sort by last modified time
    Searched refs:pieces (Results 1 - 25 of 51) sorted by null

1 2 3

  /build/target/board/emulator/
BoardConfig.mk 6 # The generic product target doesn't have any hardware-specific pieces.
  /external/webkit/LayoutTests/http/tests/resources/
network-simulator.php 93 $pieces = explode(" ", $resourceCount); variable
95 if (count($pieces) == 2 && $pieces[0] == $path) {
96 $count = 1 + $pieces[1];
116 $pieces = explode(" ", $resourceCount); variable
119 if (count($pieces) == 2 && $pieces[0] == $path) {
120 echo $pieces[1];
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 112 String[] pieces = param.substring(8).split("\\+"); local
113 if (pieces.length > 3) {
116 if (pieces.length > 0 && pieces[0].length() > 0) {
117 options.backoffFixedMillis = parseSeconds(pieces[0]);
119 if (pieces.length > 1 && pieces[1].length() > 0) {
120 options.backoffIncrementalMillis = parseSeconds(pieces[1]);
122 if (pieces.length > 2 && pieces[2].length() > 0)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
multiway_mergesort.h 86 /** @brief Pieces of data to merge @c [thread][sequence] */
87 std::vector<Piece<difference_type> >* pieces; member in struct:__gnu_parallel::PMWMSSortingData
161 sd->pieces[iam][seq].end = offsets[seq] - seqs[seq].first;
164 sd->pieces[iam][seq].end =
174 sd->pieces[iam][seq].begin = sd->pieces[iam - 1][seq].end;
177 sd->pieces[iam][seq].begin = 0;
216 sd->pieces[iam][s].begin =
225 sd->pieces[iam][s].begin = 0;
228 sd->pieces[iam][s].end
    [all...]
multiway_merge.h 1333 std::vector<std::pair<difference_type, difference_type> >* pieces; local
    [all...]
  /external/ceres-solver/examples/
nist.cc 73 bool GetAndSplitLine(std::ifstream& ifs, std::vector<std::string>* pieces) {
74 pieces->clear();
77 ceres::SplitStringUsing(std::string(buf), " ", pieces); local
101 std::vector<std::string> pieces; local
103 GetAndSplitLine(ifs, &pieces);
104 const int kNumResponses = std::atoi(pieces[1].c_str());
106 GetAndSplitLine(ifs, &pieces);
107 const int kNumPredictors = std::atoi(pieces[0].c_str());
109 GetAndSplitLine(ifs, &pieces);
110 const int kNumObservations = std::atoi(pieces[0].c_str())
    [all...]
  /device/generic/armv7-a-neon/
BoardConfig.mk 6 # The generic product target doesn't have any hardware-specific pieces.
  /external/icu4c/common/
caniter.cpp 69 pieces(NULL),
88 if(pieces != NULL) {
90 if(pieces[i] != NULL) {
91 delete[] pieces[i];
94 uprv_free(pieces);
95 pieces = NULL;
144 buffer.append(pieces[i][current[i]]);
183 pieces = (UnicodeString **)uprv_malloc(sizeof(UnicodeString *));
188 if (pieces == NULL || pieces_lengths == NULL || current == NULL) {
193 pieces[0] = new UnicodeString[1]
    [all...]
ucnv_imp.h 102 * If the args are passed in, then the pieces must be passed in too.
104 * - pieces==NULL && args==NULL
105 * - pieces!=NULL && args==NULL
106 * - pieces!=NULL && args!=NULL
111 UConverterNamePieces *pieces,
  /build/tools/releasetools/
sign_target_files_apks 189 pieces = value.split("/")
190 pieces[-1] = EditTags(pieces[-1])
191 value = "/".join(pieces)
193 pieces = value.split(" ")
194 assert len(pieces) == 5
195 pieces[-1] = EditTags(pieces[-1])
196 value = " ".join(pieces)
common.py 189 pieces = line.split() variable in class:LoadRecoveryFSTab.Partition
190 if not (3 <= len(pieces) <= 4):
194 p.mount_point = pieces[0]
195 p.fs_type = pieces[1]
196 p.device = pieces[2]
199 if len(pieces) >= 4:
200 if pieces[3].startswith("/"):
201 p.device2 = pieces[3]
202 if len(pieces) >= 5:
203 options = pieces[4
225 pieces = line.split() variable in class:LoadRecoveryFSTab.Partition
    [all...]
  /external/srec/srec/cfront/
himul32.h 106 pieces;
112 return result.pieces.hi;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationUtils.java 171 * Split the string into pieces that are likely to be common
177 ArrayList<String> pieces = new ArrayList<String>(20); local
205 pieces.add(raw.substring(at, endAt));
209 int size = pieces.size();
213 list.set(i, new CstString(pieces.get(i)));
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationUtils.java 169 * Split the string into pieces that are likely to be common
175 ArrayList<String> pieces = new ArrayList<String>(20); local
203 pieces.add(raw.substring(at, endAt));
207 int size = pieces.size();
211 list.set(i, new CstString(pieces.get(i)));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationUtils.java 169 * Split the string into pieces that are likely to be common
175 ArrayList<String> pieces = new ArrayList<String>(20); local
203 pieces.add(raw.substring(at, endAt));
207 int size = pieces.size();
211 list.set(i, new CstString(pieces.get(i)));
  /external/icu4c/common/unicode/
caniter.h 83 * Cleans pieces
168 // 2 dimensional array holds the pieces of the string with
170 UnicodeString **pieces; member in class:CanonicalIterator
174 // current is used in iterating to combine pieces
  /external/webkit/Source/WebCore/platform/gtk/
PasteboardHelper.cpp 229 Vector<String> pieces; local
230 urlWithLabel.split("\n", pieces);
235 dataObject->setURIList(pieces[0]);
236 if (pieces.size() > 1)
237 dataObject->setText(pieces[1]);
RenderThemeGtk2.cpp 881 ComboBoxWidgetPieces pieces = { 0, 0 }; local
884 gtk_container_forall(GTK_CONTAINER(buttonChild), getGtkComboBoxPieces, &pieces); local
    [all...]
  /build/target/board/generic_x86/
BoardConfig.mk 6 # The generic product target doesn't have any hardware-specific pieces.
  /external/guava/guava/src/com/google/common/net/
InternetDomainName.java 543 final String[] pieces = domain.split(DOT_REGEX, 2); local
544 return pieces.length == 2 && TldPatterns.UNDER.contains(pieces[1]);
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 336 String[] pieces = transformation.split("/"); local
337 if (pieces.length > 3) {
340 // Empty or missing pieces are represented by null.
342 for (int i = 0; i < pieces.length; ++i) {
343 String piece = pieces[i].trim();
    [all...]
  /build/target/board/generic/
BoardConfig.mk 6 # The generic product target doesn't have any hardware-specific pieces.
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
closurizednamespacesinfo.py 258 pieces = identifier.split('.')
259 for piece in pieces:
  /external/protobuf/python/google/protobuf/internal/
encoder.py 377 pieces = []
378 _EncodeVarint(pieces.append, value)
379 return "".join(pieces)
  /ndk/sources/host-tools/nawk-20071023/
README 60 equivalent), you must compile the pieces manually. We have

Completed in 2479 milliseconds

1 2 3