HomeSort by relevance Sort by last modified time
    Searched full:split (Results 901 - 925 of 5986) sorted by null

<<31323334353637383940>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 74 print "Compiling %s"%(os.path.split(filename)[1],)
77 progress = EasyDialogs.ProgressBar("Processing %s..."%os.path.split(filename)[1], 120)
82 if '#' in os.path.split(filename)[1]:
130 print "Updating %s"%(os.path.split(filename)[1],)
133 progress = EasyDialogs.ProgressBar("Updating %s..."%os.path.split(filename)[1], 120)
182 destdir, destfile = os.path.split(destname)
291 destdir, shortname = os.path.split(destname)
  /art/compiler/dex/
mir_graph.cc 130 /* Split an existing block from the specified code offset into two */
139 LOG(FATAL) << "Break split failed";
203 * is in the middle of an existing block, split it into two. If immed_pred_block_p
204 * is not non-null and is the block being split, update *immed_pred_block_p to
209 BasicBlock* MIRGraph::FindBlock(unsigned int code_offset, bool split, bool create,
222 if (split) {
270 FindBlock(address, false /* split */, true /*create*/,
309 BasicBlock *taken_block = FindBlock(target, /* split */ true, /* create */ true,
321 * specify split for continue
337 FindBlock(cur_offset + width, /* split */ false, /* create */ true
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.m 166 q = [self internalinsert:kp value:value split:&h];
174 [tnew insert:self.keys[numkeys-1] value:self index:0 split:&h];
175 [tnew insert:q.keys[q.numkeys-1] value:q index:1 split:&h];
328 - (ACBTree *) internalinsert:(ACBKey *)kp value:(id)value split:(NSInteger *)h
342 q = [self insert:kp value:value index:i split:h];
346 q = [self.btNodes[i] internalinsert:kp value:value split:h];
348 [self insert:kp value:q index:i split:h];
364 /** Do the actual insertion or split and insert
367 - (ACBTree *) insert:(ACBKey *)kp value:(id)value index:(NSInteger)hi split:(NSInteger *)h
382 else { /* node t is full; split it and assign the emerging ACBKey to olditem *
    [all...]
  /external/llvm/lib/CodeGen/
PHIElimination.cpp 44 SplitAllCriticalEdges("phi-elim-split-all-critical-edges", cl::init(false),
45 cl::Hidden, cl::desc("Split all critical edges during "
79 /// Split critical edges where necessary for good coalescer performance.
104 STATISTIC(NumCriticalEdgesSplit, "Number of critical edges split");
136 // Split critical edges to help the coalescer. This does not yet support
576 // If the copy would be a kill, there is no need to split the edge.
590 // exiting edge, split it so we won't insert code in the loop, otherwise
597 dbgs() << "Split wouldn't help, maybe avoid loop copies?\n";
604 // Split unless this edge is entering CurLoop from an outer loop.
610 DEBUG(dbgs() << "Failed to split ciritcal edge.\n")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os.py 21 (e.g., split and join).
145 head, tail = path.split(name)
147 head, tail = path.split(head)
171 head, tail = path.split(name)
173 head, tail = path.split(head)
179 head, tail = path.split(head)
196 head, tail = path.split(new)
200 head, tail = path.split(old)
366 head, tail = path.split(file)
374 PATH = envpath.split(pathsep
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os.py 21 (e.g., split and join).
145 head, tail = path.split(name)
147 head, tail = path.split(head)
171 head, tail = path.split(name)
173 head, tail = path.split(head)
179 head, tail = path.split(head)
196 head, tail = path.split(new)
200 head, tail = path.split(old)
366 head, tail = path.split(file)
374 PATH = envpath.split(pathsep
    [all...]
  /external/chromium_org/base/android/jni_generator/
jni_generator.py 127 JniParams._package = '/'.join(fully_qualified_class.split('/')[:-1])
192 components = qualified_name.split('/')
203 components = param.split('.')
233 for p in [p.strip() for p in params.split(',')]:
234 items = p.split(' ')
257 keyword, src, dest = line.split()
441 unmatched_lines = re.sub(RE_CALLED_BY_NATIVE, '', contents).split('\n')
460 self.java_class_name = self.fully_qualified_class.split('/')[-1]
509 jni_from_javap = JNIFromJavaP(stdout.split('\n'), namespace)
566 self.class_name = self.fully_qualified_class.split('/')[-1
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.c 993 var *split[4]; member in struct:__anon23095
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskProcess.cpp 248 UniquePtr<std::vector<android::String8> > paramTokens(StringUtil::split(paramStr, ','));
250 LOGE("split failed");
255 UniquePtr<std::vector<android::String8> > itemTokens(StringUtil::split(tokens[i], ':'));
257 LOGE("split failed");
297 UniquePtr<std::vector<android::String8> > tokenPtr(StringUtil::split(value, ':'));
300 LOGE("split failed");
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterToUTF8Buffered.java 202 int split = length/CHARS_MAX; local
205 chunks = split + 1;
207 chunks = split;
337 int split = length/CHARS_MAX; local
340 chunks = split + 1;
342 chunks = split;
  /external/chromium_org/chrome/browser/resources/options/
search_page.js 407 var split = textContent.split(regExp);
408 if (split.length > 1) {
414 for (var i = 0; i < split.length; ++i) {
416 parentNode.insertBefore(document.createTextNode(split[i]), node);
420 span.textContent = split[i];
  /external/chromium_org/native_client_sdk/src/examples/
common.js 373 var pairs = window.location.search.substr(1).split('&');
375 var keyValue = pairs[key_ix].split('=');
382 var toolchains = body.dataset.tools.split(' ');
383 var configs = body.dataset.configs.split(' ');
387 var attr_list = body.dataset.attrs.split(' ');
389 var attr = attr_list[key].split('=');
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInstrumentation.py 199 for line in map(str.strip, source.split("\n")):
234 self.options = options_str.split(",")
241 self.params = map(Parameter, map(str.strip, match.group(4).split(",")))
368 parts = map(str.strip, source.split("="))
381 if len(param_decl.split(" ")) > min_type_tokens:
382 parts = param_decl.split(" ")
  /external/chromium_org/third_party/icu/source/common/
propsvec.c 190 * Rows need to be split if they partially overlap with the
197 /* split first/last rows if necessary */
238 /* split the first row, and move the firstRow pointer to the second part */
245 /* split the range and move the firstRow pointer */
250 /* split the last row */
255 /* split the range and move the firstRow pointer */
  /external/chromium_org/third_party/libxml/src/
genUnicode.py 34 (blockfile, catfile) = string.split(sources)
56 fields = string.split(line, ';')
58 (start, end) = string.split(range, "..")
74 alias = string.split(block,':')
75 alist = string.split(alias[1],',')
111 fields = string.split(line, ';')
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
cros_interface.py 255 for l in stdout.split('\n'): # pylint: disable=E1103
289 netstat = netstat[0].split('\n')
295 address_in_use = line.split()[3]
296 port_in_use = address_in_use.split(':')[-1]
318 df_ary = df_out.split('\n')
321 line_ary = df_ary[1].split()
  /external/chromium_org/v8/tools/
presubmit.py 102 """.split()
232 for path in [prio_path] + os.environ["PATH"].split(os.pathsep):
294 for file in output.stdout.read().split():
295 for dir_part in os.path.dirname(file).split(os.sep):
356 parts = contents.split(' \n')
372 parts = contents.split('\n')
  /external/icu4c/common/
propsvec.c 191 * Rows need to be split if they partially overlap with the
198 /* split first/last rows if necessary */
239 /* split the first row, and move the firstRow pointer to the second part */
246 /* split the range and move the firstRow pointer */
251 /* split the last row */
256 /* split the range and move the firstRow pointer */
  /external/iproute2/man/man8/
tc-cbq-details.8 51 .B ] [ bounded isolated ] [ split
145 .B split & defmap
362 split major:minor & defmap bitmap[/bitmap]
370 .B split
374 As an example, 'tc class add ... classid 10:1 cbq .. split 10:0 defmap c0'
378 be: 'tc class add ... classid 10:2 cbq ... split 10:0 defmap 3f'
  /external/openfst/src/include/fst/
minimize.h 212 // - loop over states in fst and split on final, creating two blocks
220 // initial split (F, S - F)
232 void Split(ClassId C) {
242 // Now pop arc iterator from queue, split entering equivalence class
280 // split on C, all labels in C
281 Split(C);
  /external/skia/bench/
tile_analyze.py 144 [tile_cols, tile_rows] = [int(i) for i in layout.split('x')]
145 [tile_x, tile_y] = [int(i) for i in tile_size.split('x')]
146 [viewport_x, viewport_y] = [int(i) for i in viewport.split('x')]
200 for point in bench_util.parse('', file_dic[f].split('\n'),
206 components = config.split('_')
231 tile_size = config.split('_')[1]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
minimize.h 199 // - loop over states in fst and split on final, creating two blocks
207 // initial split (F, S - F)
219 void Split(ClassId C) {
229 // Now pop arc iterator from queue, split entering equivalence class
267 // split on C, all labels in C
268 Split(C);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
qpisf_2s.c 21 * The ISF vector is quantized using two-stage VQ with split-by-2 *
22 * in 1st stage and split-by-5(or 3) in the second stage *
52 * The isf vector is quantized using two-stage VQ with split-by-2 in *
53 * 1st stage and split-by-5 in the second stage. *
142 * The isf vector is quantized using two-stage VQ with split-by-2 in *
143 * 1st stage and split-by-3 in the second stage. *
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 107 public void setSplitActionBar(boolean split) {
108 if (mSplitActionBar != split) {
113 if (!split) {
120 // Allow full screen width in split mode.
135 super.setSplitActionBar(split);
234 // Allow full screen width in split mode.
  /frameworks/base/docs/html/design/patterns/
actionbar.jd 26 <p>The action bar is split into four different functional areas that apply to most apps.</p>
92 <p>You can adapt to such changes by using <em>split action bars</em>, which allow you to distribute action bar
97 Split action bar showing action buttons at the bottom of the screen in vertical orientation.
100 <h2 id="considerations-split-action-bars">Layout Considerations for Split Action Bars</h2>
269 <p>When planning your split action bars, ask yourself questions like these:</p>

Completed in 2878 milliseconds

<<31323334353637383940>>