| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
| StringTrieBuilder.java | 405 // Mismatch, insert a branch node. 511 chars.insert(i, c); 529 chars.insert(i, c); [all...] |
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
| UTF16Test.java | 507 * Testing UTF16 class method insert 519 UTF16.insert(strbuff, 5, 't'); 520 UTF16.insert(strbuff, 5, 's'); 521 UTF16.insert(strbuff, 5, 'e'); 522 UTF16.insert(strbuff, 5, 't'); 526 length = UTF16.insert(array, length, 5, 't'); 527 length = UTF16.insert(array, length, 5, 's'); 528 length = UTF16.insert(array, length, 5, 'e'); 529 length = UTF16.insert(array, length, 5, 't'); 534 UTF16.insert(strbuff, 0, 0x10000) [all...] |
| /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/ |
| TransliteratorInputMethod.java | 590 private boolean insert(char c) { method in class:TransliteratorInputMethod 617 default: return insert(ch);
|
| /external/libpng/contrib/libtests/ |
| makepng.c | 168 /* This structure is used for inserting extra chunks (the --insert argument, not 174 void (*insert)(png_structp, png_infop, int, png_charpp); member in struct:chunk_insert 771 volatile png_fixed_point gamma, chunk_insert * volatile insert, 933 /* Insert extra information. */ 934 while (insert != NULL) 936 insert->insert(png_ptr, info_ptr, insert->nparams, insert->parameters); 937 insert = insert->next [all...] |
| /external/libxml2/ |
| rngparser.c | 135 xmlNodePtr insert; /* the insertion point */ member in struct:_xmlCRelaxNGParserCtxt 671 xmlNodePtr insert = ctxt->insert, cur; local 679 if (ctxt->insert != NULL) 680 xmlAddChild(ctxt->insert, cur); 681 ctxt->insert = cur; 684 ctxt->insert = insert; 717 if (ctxt->insert != NULL) 718 xmlAddChild(ctxt->insert, cur) 770 xmlNodePtr insert = ctxt->insert, last, choice; local 1003 xmlNodePtr insert = ctxt->insert, res, tmp = NULL; local 1046 xmlNodePtr insert = ctxt->insert, prev, grp; local 1094 xmlNodePtr insert = ctxt->insert; local [all...] |
| /external/llvm/include/llvm/ADT/ |
| DenseMap.h | 171 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::DenseMapBase 177 // Otherwise, insert the new element. 186 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { function in class:llvm::DenseMapBase 192 // Otherwise, insert the new element. 200 /// Alternate version of insert() which allows a different, and possibly 213 // Otherwise, insert the new element. 220 /// insert - Range insertion of pairs. 222 void insert(InputIt I, InputIt E) { function in class:llvm::DenseMapBase 224 insert(*I); 324 // Insert all the old elements [all...] |
| ilist.h | 409 iterator insert(iterator where, NodeTy *New) { function in class:llvm::iplist 427 return insert(begin(), New); 429 return insert(++where, New); 556 void push_front(NodeTy *val) { insert(begin(), val); } 557 void push_back(NodeTy *val) { insert(end(), val); } 567 // Special forms of insert... 568 template<class InIt> void insert(iterator where, InIt first, InIt last) { function in class:llvm::iplist 569 for (; first != last; ++first) insert(where, *first); 672 insert(this->begin(), right.begin(), right.end()); 675 insert(this->begin(), count, NodeTy()) 690 iterator insert(iterator where, const NodeTy &val) { function in struct:llvm::ilist 699 void insert(iterator where, size_type count, const NodeTy &val) { function in struct:llvm::ilist [all...] |
| /external/llvm/include/llvm/CodeGen/ |
| MachineBasicBlock.h | 465 /// This is the correct point to insert copies at the beginning of a basic 517 /// Insert MI into the instruction list before I, possibly inside a bundle. 522 /// MIBundleBuilder::insert() for a more reliable way of doing that. 523 instr_iterator insert(instr_iterator I, MachineInstr *M); 525 /// Insert a range of instructions into the instruction list before I. 527 void insert(iterator I, IT S, IT E) { function in class:llvm::MachineBasicBlock 530 Insts.insert(I.getInstrIterator(), S, E); 533 /// Insert MI into the instruction list before I. 534 iterator insert(iterator I, MachineInstr *MI) { function in class:llvm::MachineBasicBlock 538 "Cannot insert instruction with bundle flags") [all...] |
| /external/llvm/lib/CodeGen/ |
| MachineBasicBlock.cpp | 424 // layout successor, insert a branch. First we have to locate the only 727 MF->insert(std::next(MachineFunction::iterator(this)), NMBB); 811 // Insert unconditional "jump Succ" instruction in NMBB if necessary. 884 PHISrcRegs.insert(Reg); 1019 MachineBasicBlock::insert(instr_iterator I, MachineInstr *MI) { function in class:MachineBasicBlock [all...] |
| ScheduleDAGInstrs.cpp | 148 if (!Visited.insert(V).second) 264 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg)); 276 Uses.insert(PhysRegSUOper(&ExitSU, -1, LI.PhysReg)); 362 // Either insert a new Reg2SUnits entry with an empty SUnits list, or 365 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg())); 397 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg)); 517 CurrentVRegDefs.insert(VReg2SUnit(Reg, NonOverlapMask, DefSU)); 521 CurrentVRegDefs.insert(VReg2SUnit(Reg, LaneMask, SU)); 537 CurrentVRegUses.insert(VReg2SUnitOperIdx(Reg, LaneMask, OperIdx, SU)); 723 VRegUses.insert(VReg2SUnit(Reg, 0, SU)) 745 void inline insert(SUnit *SU, ValueType V) { function in class:ScheduleDAGInstrs::Value2SUsMap [all...] |
| /external/mesa3d/src/gallium/drivers/r600/sb/ |
| sb_shader.h | 162 iterator insert(const T& t) { function in class:r600_sb::queue 167 cont.insert(I, t);
|
| /external/owasp/sanitizer/tools/findbugs/lib/ |
| asm-tree-3.3.jar | |
| /external/protobuf/java/core/src/main/java/com/google/protobuf/ |
| RopeByteString.java | 231 * testing trees of specific structure. We are also able to insert empty 586 // BAP95: Insert balanced subtrees whole. This means the result might not 589 // relatively few calls to insert() result. 591 insert(root); 617 private void insert(ByteString byteString) { method in class:RopeByteString.Balancer
|
| /external/python/cpython2/Lib/idlelib/ |
| PyShell.py | 187 lineno = int(float(text.index("insert"))) 196 lineno = int(float(text.index("insert"))) 201 text.tag_remove("BREAK", "insert linestart",\ 202 "insert lineend +1char") 360 "Extend base class: forbid insert/delete before the I/O mark" 362 def insert(self, index, chars, tags=None): member in class:ModifiedUndoDelegator 369 UndoDelegator.insert(self, index, chars, tags) 705 _sys.path.insert(0, _dir) 884 ms.insert(2, ("shell", "She_ll")) [all...] |
| /external/python/cpython2/Lib/lib-tk/ |
| ttk.py | 872 def insert(self, pos, child, **kw): member in class:Notebook 878 self.tk.call(self._w, "insert", pos, child, *(_format_optdict(kw))) 958 def insert(self, pos, child, **kw): member in class:Panedwindow 1321 def insert(self, parent, index, iid=None, **kw): member in class:Treeview [all...] |
| /external/python/cpython3/Lib/collections/ |
| __init__.py | 1082 def insert(self, i, item): self.data.insert(i, item) member in class:UserList [all...] |
| /external/python/cpython3/Lib/idlelib/ |
| pyshell.py | 176 lineno = int(float(text.index("insert"))) 185 lineno = int(float(text.index("insert"))) 190 text.tag_remove("BREAK", "insert linestart",\ 191 "insert lineend +1char") 350 "Extend base class: forbid insert/delete before the I/O mark" 352 def insert(self, index, chars, tags=None): member in class:ModifiedUndoDelegator 359 UndoDelegator.insert(self, index, chars, tags) 692 _sys.path.insert(0, _dir) 854 ms.insert(2, ("shell", "She_ll")) [all...] |
| /external/python/cpython3/Lib/tkinter/ |
| ttk.py | 876 def insert(self, pos, child, **kw): member in class:Notebook 882 self.tk.call(self._w, "insert", pos, child, *(_format_optdict(kw))) 962 def insert(self, pos, child, **kw): member in class:Panedwindow 1325 def insert(self, parent, index, iid=None, **kw): member in class:Treeview [all...] |
| /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
| SlotIndexes.h | 414 /// Insert a new entry before itr. 415 void insert(IndexListEntry *itr, IndexListEntry *val) { function in class:llvm::SlotIndexes 432 insert(getTail(), val); 642 /// Insert the given machine instruction into the mapping. Returns the 658 // Insert mi's index immediately before the following instruction. 662 // Insert mi's index immediately after the preceeding instruction. 672 // Insert a new list entry for mi. 674 insert(nextEntry, newEntry); 681 mi2iMap.insert(std::make_pair(mi, newIndex)); 711 mi2iMap.insert(std::make_pair(newMI, replaceBaseIndex)) [all...] |
| /external/swiftshader/third_party/subzero/src/ |
| IceTargetLowering.cpp | 82 void LoweringContext::insert(Inst *Instr) { function in class:Ice::LoweringContext 83 getNode()->getInsts().insert(Next, Instr); 393 // lowering method. The lowering method should insert target instructions at 497 Context.insert(Instr); 590 SplitCandidates.insert(Var); 650 ExtraVars.insert(NewVar); 683 // variables. The issue is that we can not insert low level mov 701 // Insert spill code 705 Node->getInsts().insert(instToIterator(Info.FirstUse), NewInst); 738 Context.insert<InstFakeUse>(Var64->getLo()) [all...] |
| /external/tensorflow/tensorflow/contrib/tensorboard/db/ |
| summary_db_writer.cc | 160 INSERT OR REPLACE INTO Descriptions (id, description) VALUES (?, ?) 191 TF_RETURN_IF_ERROR(db_->Prepare("INSERT INTO Ids (id) VALUES (?)", &stmt)); 268 INSERT INTO NodeInputs ( 277 SqliteStatement insert; local 278 TF_RETURN_IF_ERROR(db_->Prepare(sql, &insert)); 303 insert.BindInt(1, graph_id_); 304 insert.BindInt(2, node_id); 305 insert.BindInt(3, idx); 306 insert.BindInt(4, input_node_id); 307 insert.BindInt(5, input_node_idx) 329 SqliteStatement insert; local 362 SqliteStatement insert; local 472 SqliteStatement insert; local 525 SqliteStatement insert; local 571 SqliteStatement insert; local 617 SqliteStatement insert; local 876 SqliteStatement insert; local [all...] |
| /external/v8/src/heap/ |
| heap-inl.h | 40 void PromotionQueue::insert(HeapObject* target, int32_t size, function in class:v8::internal::PromotionQueue
|
| /frameworks/base/core/java/android/content/ |
| ContentProvider.java | 77 * <li>{@link #insert} which inserts new data into the content provider</li> 83 * <p class="caution">Data access methods (such as {@link #insert} and 256 public Uri insert(String callingPkg, Uri uri, ContentValues initialValues) { method in class:ContentProvider.Transport 265 return maybeAddUserId(ContentProvider.this.insert(uri, initialValues), userId); 1284 public abstract @Nullable Uri insert(@NonNull Uri uri, @Nullable ContentValues values); method in class:ContentProvider 1304 insert(uri, values[i]); method [all...] |
| /frameworks/base/core/java/android/provider/ |
| DocumentsProvider.java | 911 public final Uri insert(Uri uri, ContentValues values) { method in class:DocumentsProvider [all...] |
| /frameworks/base/core/java/com/android/internal/content/ |
| FileSystemProvider.java | 225 resolver.insert(uri, values);
|