Searched defs:cut (Results 1 - 25 of 35) sorted by relevance

12

/external/curl/src/
H A Dtool_msgs.c57 size_t cut = width-1; local
59 while(!ISSPACE(ptr[cut]) && cut) {
60 cut--;
62 if(0 == cut)
63 /* not a single cutting position was found, just cut it at the
65 cut = width-1;
67 (void)fwrite(ptr, cut + 1, 1, config->errors);
69 ptr += cut + 1; /* skip the space too */
70 len -= cut;
[all...]
/external/annotation-tools/scene-lib/src/annotations/io/
H A DASTIndex.java80 private final CompilationUnitTree cut; field in class:ASTIndex
99 cut = root;
110 cut.accept(new SimpleTreeVisitor<Void, ASTRecord>() {
142 new ASTRecord(cut, className, null, null, ASTPath.empty());
275 new ASTRecord(cut, className, null, null, ASTPath.empty()));
362 rec = new ASTRecord(cut, rec.className, inMethod, null,
443 new ASTRecord(cut, className, null, null, ASTPath.empty()));
611 rec = new ASTRecord(cut, rec.className, rec.methodName,
635 public static ASTRecord getASTPath(CompilationUnitTree cut, Tree node) { argument
636 return indexOf(cut)
639 getTreePath(CompilationUnitTree cut, ASTRecord rec) argument
644 getNode(CompilationUnitTree cut, ASTRecord rec) argument
657 getParameterName(CompilationUnitTree cut, String className, String methodName, int index) argument
667 getParameterIndex(CompilationUnitTree cut, String className, String methodName, String varName) argument
[all...]
/external/v8/tools/
H A Dgenerate-ten-powers.scm56 (define (round-n-cut n e nb-bits)
63 ;; with the -1 it will only round up if the cut off part is
73 (cut (bit-rshbx (round n) shift))
74 (exact? (=bx n (bit-lshbx cut shift))))
75 (if (<=bx cut max-container)
76 (values cut e exact?)
77 (round-n-cut n (+fx e 1) nb-bits))))
125 (receive (cut e exact?)
126 (round-n-cut n e nb-bits)
129 (v cut)
[all...]
/external/aac/libAACdec/src/
H A Daacdec_drc_types.h164 FIXP_DBL cut; /* attenuation scale factor */ member in struct:__anon189
/external/mesa3d/src/gallium/drivers/ilo/core/
H A Dilo_state_vf.h122 uint32_t cut[2]; member in struct:ilo_state_vf
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_graph.cpp41 reinterpret_cast<Node *>(it->get())->cut();
144 void Graph::Node::cut() function in class:nv50_ir::Graph::Node
H A Dnv50_ir_emit_gm107.cpp2774 const int cut = insn->op == OP_RESTART || insn->subOp; local
2795 emitField(0x27, 2, (cut << 1) | emit);
/external/python/cpython2/Mac/Demo/mlte/
H A Dmlted.py193 self.cutitem = MenuItem(m, "Cut", "X", self.cut)
331 def cut(self, *args): member in class:Mlted
/external/python/cpython2/Mac/Demo/textedit/
H A Dped.py201 self.cutitem = MenuItem(m, "Cut", "X", self.cut)
320 def cut(self, *args): member in class:Ped
/external/libgsm/src/
H A Dtoast.c22 int f_ltp_cut = 0; /* LTP cut-off margin (-C) */
262 static char* normalname P3((name, want, cut), char *name, char *want,char *cut) argument
270 maxlen = strlen(name) + 1 + strlen(want) + strlen(cut);
273 if ((s = suffix(p, cut)) != 0) strcpy(s, want);
/external/toybox/toys/net/
H A Dnetstat.c65 char cut[4]; local
83 memcpy(cut, proto, 3);
84 cut[3] = 0;
85 ser = getservbyport(htons(port), cut);
/external/annotation-tools/annotation-file-utilities/src/annotator/find/
H A DInsertions.java134 private void forClass(CompilationUnitTree cut, argument
142 set = organizeTypedInsertions(cut, qualifiedClassName, set);
151 * @param cut the current compilation unit
156 public Set<Insertion> forClass(CompilationUnitTree cut, argument
159 forClass(cut, qualifiedClassName, set);
167 * @param cut the current compilation unit
173 public Set<Insertion> forOuterClass(CompilationUnitTree cut, argument
182 forClass(cut, qualifiedClassName, set);
293 private Set<Insertion> organizeTypedInsertions(CompilationUnitTree cut, argument
318 ASTRecord rec = new ASTRecord(cut, criteri
[all...]
/external/brotli/c/enc/
H A Dhash.h170 size_t cut = len - matchlen; local
172 (cut << 2) + (size_t)((kCutoffTransforms >> (cut * 6)) & 0x3F);
/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ir.cpp114 node *l = source_container->cut(b, e);
125 node* container_node::cut(iterator b, iterator e) { function in class:r600_sb::container_node
/external/python/cpython3/Lib/
H A Dnntplib.py1132 def cut(s, lim): function
1144 artnum, cut(author, 20), cut(subject, 42), lines)
/external/python/cpython2/Lib/idlelib/
H A DEditorWindow.py214 text.bind("<<cut>>", self.cut)
565 def cut(self,event): member in class:EditorWindow
1632 # since we cut off the tokenizer early, we can trigger
/external/python/cpython3/Lib/idlelib/
H A Deditor.py143 text.bind("<<cut>>", self.cut)
494 def cut(self,event): member in class:EditorWindow
1566 # since we cut off the tokenizer early, we can trigger
/external/vogar/lib/
H A Dkxml-libcore-20110123.jarorg/kxml2/ org/kxml2/kdom/ org/kxml2/kdom/Element.class Element.java package org.kxml2. ...
/external/icu/icu4c/source/test/intltest/
H A Dcalregts.cpp1474 * Prove that GregorianCalendar is proleptic (it used to cut off
1521 UDate cut = cal->getGregorianChange(); local
1522 UDate cut2 = cut + 100*24*60*60*1000.0; // 100 days later
/external/icu/icu4c/source/i18n/
H A DdecNumber.cpp527 Int cut, out; /* .. */ local
691 cut=d-(up-res)*DECDPUN; /* digits in top unit */
693 if (*c=='.') continue; /* ignore '.' [don't decrement cut] */
696 cut--;
697 if (cut>0) continue; /* more for this unit */
700 cut=DECDPUN; /* .. */
3496 uInt cut=DECDPUN; /* downcounter through unit */ local
3500 cut--;
3501 if (cut>0) continue; /* more in this unit */
3504 cut
3530 Int cut=MSUDIGITS(n); /* [faster than remainder] */ local
3656 Int cut; /* for counting digits in a Unit */ local
4289 Int shift, cut; /* .. */ local
6638 uInt cut; /* .. */ local
6731 Int cut; /* odd 0's to add */ local
6787 Int cut, count; /* work */ local
6936 uInt cut; /* cut point in Unit */ local
7678 Int cut; /* work */ local
7861 Int cut; /* .. */ local
[all...]
/external/toybox/generated/
H A Dglobals.h1028 // toys/posix/cut.c
1519 struct cut_data cut; member in union:global_union
/external/v8/src/regexp/
H A Djsregexp.cc2017 int cut = kNoCutIndex; local
2020 cut = i;
2024 if (cut == kNoCutIndex) cut = start_index;
2026 masm, ranges, start_index, end_index, cut, even_label, odd_label);
3738 // judge the effectiveness of this. Actually we have a cut-off: By
/external/robolectric/v1/lib/main/
H A Dxpp3-1.1.4c.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ...
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...
/external/annotation-tools/annotation-file-utilities/lib/
H A Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...

Completed in 1094 milliseconds

12