/libcore/luni/src/main/java/org/xml/sax/helpers/ |
XMLFilterImpl.java | 64 * Construct an empty XML filter, with no parent. 66 * <p>This filter will have no parent: you must assign a parent 81 * Construct an XML filter with the specified parent. 83 * @param parent the XML reader from which this filter receives its events. 88 public XMLFilterImpl (XMLReader parent) 90 setParent(parent); 102 * Set the parent reader. 106 * configuration requests. The parent may itself be another filter.</p> 108 * <p>If there is no parent reader set, any attempt to pars 703 private XMLReader parent = null; field in class:XMLFilterImpl [all...] |
/frameworks/base/core/java/android/view/ |
GhostView.java | 25 * This view draws another View in an Overlay without changing the parent. It will not be drawn 26 * by its parent because its visibility is set to INVISIBLE, but will be drawn 41 final ViewGroup parent = (ViewGroup) mView.getParent(); local 43 parent.invalidate(); 79 final ViewGroup parent = (ViewGroup) mView.getParent(); local 80 if (parent != null) { 81 parent.invalidate(); 87 ViewGroup parent = (ViewGroup) view.getParent(); local 89 parent.transformMatrixToGlobal(matrix); 90 matrix.preTranslate(-parent.getScrollX(), -parent.getScrollY()) 118 FrameLayout parent = new FrameLayout(view.getContext()); local 143 ViewGroup parent = (ViewGroup) ghostView.getParent(); local 302 ViewParent parent = view.getParent(); local 315 ViewGroup parent = (ViewGroup) view.getParent(); local [all...] |
/external/clang/lib/Sema/ |
Scope.cpp | 21 void Scope::Init(Scope *parent, unsigned flags) { 22 AnyParent = parent; 25 if (parent && !(flags & FnScope)) { 26 BreakParent = parent->BreakParent; 27 ContinueParent = parent->ContinueParent; 34 if (parent) { 35 Depth = parent->Depth + 1; 36 PrototypeDepth = parent->PrototypeDepth; 38 FnParent = parent->FnParent; 39 BlockParent = parent->BlockParent [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
textView.py | 12 def __init__(self, parent, title, text, modal=True): 16 Toplevel.__init__(self, parent) 19 parent.winfo_rootx() + 10, 20 parent.winfo_rooty() + 10)) 28 self.parent = parent 37 self.transient(parent) 62 def view_text(parent, title, text, modal=True): 63 return TextViewer(parent, title, text, modal) 65 def view_file(parent, title, filename, encoding=None, modal=True) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
textView.py | 12 def __init__(self, parent, title, text, modal=True): 16 Toplevel.__init__(self, parent) 19 parent.winfo_rootx() + 10, 20 parent.winfo_rooty() + 10)) 28 self.parent = parent 37 self.transient(parent) 62 def view_text(parent, title, text, modal=True): 63 return TextViewer(parent, title, text, modal) 65 def view_file(parent, title, filename, encoding=None, modal=True) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
textView.py | 12 def __init__(self, parent, title, text, modal=True): 16 Toplevel.__init__(self, parent) 19 parent.winfo_rootx() + 10, 20 parent.winfo_rooty() + 10)) 28 self.parent = parent 37 self.transient(parent) 62 def view_text(parent, title, text, modal=True): 63 return TextViewer(parent, title, text, modal) 65 def view_file(parent, title, filename, encoding=None, modal=True) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
textView.py | 12 def __init__(self, parent, title, text, modal=True): 16 Toplevel.__init__(self, parent) 19 parent.winfo_rootx() + 10, 20 parent.winfo_rooty() + 10)) 28 self.parent = parent 37 self.transient(parent) 62 def view_text(parent, title, text, modal=True): 63 return TextViewer(parent, title, text, modal) 65 def view_file(parent, title, filename, encoding=None, modal=True) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
mkdir.c | 33 errcode_t ext2fs_mkdir(ext2_filsys fs, ext2_ino_t parent, ext2_ino_t inum, 50 retval = ext2fs_new_inode(fs, parent, LINUX_S_IFDIR | 0755, 66 retval = ext2fs_new_dir_block(fs, ino, parent, &block); 71 * Get the parent's inode, if necessary 73 if (parent != ino) { 74 retval = ext2fs_read_inode(fs, parent, &parent_inode); 118 retval = ext2fs_lookup(fs, parent, name, strlen(name), 0, 127 retval = ext2fs_link(fs, parent, name, ino, EXT2_FT_DIR); 133 * Update parent inode's counts 135 if (parent != ino) [all...] |
/art/tools/ahat/src/ |
SitePrinter.java | 27 for (Site parent = site; parent != null; parent = parent.getParent()) { 28 path.add(parent);
|
/art/tools/checker/file_format/c1visualizer/ |
struct.py | 40 def __init__(self, parent, name, body, startLineNo): 41 self.parent = parent 51 self.parent.addPass(self) 55 return self.parent.fileName
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/ |
SensorOperation.java | 65 public abstract void execute(ISensorTestNode parent) throws InterruptedException; 92 protected ISensorTestNode asTestNode(ISensorTestNode parent) { 93 return new SensorTestNode(parent, this); 100 public SensorTestNode(ISensorTestNode parent, SensorOperation operation) { 101 mParent = parent;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
Status005Debuggee.java | 97 Status005Debuggee parent = Status005Debuggee.status005DebuggeeThis; local 98 parent.logWriter.println("--> Thread: " + getName() + ": started..."); 99 parent.logWriter.println 103 parent.logWriter.println 106 parent.logWriter.println("--> Thread: " + getName() + ": is finishibg...");
|
Status006Debuggee.java | 88 Status006Debuggee parent = Status006Debuggee.status006DebuggeeThis; local 89 parent.logWriter.println("--> Thread: " + getName() + ": started..."); 91 parent.synchronizer.sendMessage(getName()); 92 parent.synchronizer.receiveMessageWithoutException("Status006Debuggee_Thread(#1)"); 93 parent.logWriter.println("--> Thread: " + getName() + ": is finishibg...");
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
LocaleUtility.java | 50 * return true if parent is a 'strict' fallback of child, that is, 51 * if child =~ "^parent(_.+)*" (roughly). 53 public static boolean isFallbackOf(String parent, String child) { 54 if (!child.startsWith(parent)) { 57 int i = parent.length(); 63 * Compare two locales, and return true if the parent is a 64 * 'strict' fallback of the child (parent string is a fallback 67 public static boolean isFallbackOf(Locale parent, Locale child) { 68 return isFallbackOf(parent.toString(), child.toString());
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/ |
LocaleUtility.java | 48 * return true if parent is a 'strict' fallback of child, that is, 49 * if child =~ "^parent(_.+)*" (roughly). 51 public static boolean isFallbackOf(String parent, String child) { 52 if (!child.startsWith(parent)) { 55 int i = parent.length(); 61 * Compare two locales, and return true if the parent is a 62 * 'strict' fallback of the child (parent string is a fallback 65 public static boolean isFallbackOf(Locale parent, Locale child) { 66 return isFallbackOf(parent.toString(), child.toString());
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
LocaleUtility.java | 48 * return true if parent is a 'strict' fallback of child, that is, 49 * if child =~ "^parent(_.+)*" (roughly). 51 public static boolean isFallbackOf(String parent, String child) { 52 if (!child.startsWith(parent)) { 55 int i = parent.length(); 61 * Compare two locales, and return true if the parent is a 62 * 'strict' fallback of the child (parent string is a fallback 65 public static boolean isFallbackOf(Locale parent, Locale child) { 66 return isFallbackOf(parent.toString(), child.toString());
|
/external/iproute2/examples/diffserv/ |
Edge31-cb-chains | 52 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1 fw \ 59 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 handle 1 fw \ 66 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 1 fw \ 73 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 2 fw \ 106 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 108 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 110 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 112 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 122 $TC filter ls dev $INDEV parent ffff: 129 $TC filter ls $EGDEV parent 1: [all...] |
/external/markdown/markdown/ |
blockparser.py | 51 Given a list of lines, an ElementTree object (not just a parent Element) 52 is created and the root element is passed to the parser as the parent. 63 def parseChunk(self, parent, text): 71 The ``parent`` etree Element passed in is altered in place. 75 self.parseBlocks(parent, text.split('\n\n')) 77 def parseBlocks(self, parent, blocks): 91 if processor.test(parent, blocks[0]): 92 processor.run(parent, blocks)
|
/external/selinux/sepolgen/src/sepolgen/ |
refpolicy.py | 53 def __init__(self, parent=None): 54 self.parent = None 62 should contain a reference to its parent (or None for a top-level 74 def __init__(self, parent=None): 75 PolicyBase.__init__(self, parent) 149 def __init__(self, parent=None): 150 PolicyBase.__init__(self, parent) 261 def __init__(self, context=None, parent=None): 268 Leaf.__init__(self, parent) 342 def __init__(self, name="", parent=None) [all...] |
/external/skia/src/svg/parser/ |
SkSVGElements.cpp | 35 SkSVGElement* parent = fParent; local 36 while (parent) { 37 if (parent->getType() != SkSVGType_G) 39 parent = parent->fParent;
|
/external/v8/test/cctest/ |
test-api-accessors.cc | 36 // - 'parent': FunctionTemplate ~= DOM Node superclass 39 // We'll install both a C++-based and a JS-based accessor on the parent, 42 // Setup the parent template ( =~ DOM Node w/ accessors). 43 v8::Local<v8::FunctionTemplate> parent = v8::FunctionTemplate::New(isolate); local 45 auto signature = v8::Signature::New(isolate, parent); 48 parent->PrototypeTemplate()->SetAccessorProperty( 54 parent->PrototypeTemplate()->SetAccessorProperty( 65 child->Inherit(parent);
|
/external/webrtc/webrtc/libjingle/xmpp/ |
mucroomlookuptask.h | 38 CreateLookupTaskForRoomName(XmppTaskParentInterface* parent, 43 CreateLookupTaskForRoomJid(XmppTaskParentInterface* parent, 47 CreateLookupTaskForHangoutId(XmppTaskParentInterface* parent, 51 CreateLookupTaskForExternalId(XmppTaskParentInterface* parent, 63 MucRoomLookupTask(XmppTaskParentInterface* parent,
|
pubsubtasks.h | 34 PubSubRequestTask(XmppTaskParentInterface* parent, 49 PubSubReceiveTask(XmppTaskParentInterface* parent, 52 : ReceiveTask(parent), 75 PubSubPublishTask(XmppTaskParentInterface* parent, 96 PubSubRetractTask(XmppTaskParentInterface* parent,
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListHeterogeneous.java | 40 protected View createView(int position, ViewGroup parent, int desiredHeight) { 44 position, parent.getContext(), getValueAtPosition(position), desiredHeight); 47 position, parent.getContext(), getValueAtPosition(position), desiredHeight); 50 position, parent.getContext(), getValueAtPosition(position), desiredHeight); 57 public View convertView(int position, View convertView, ViewGroup parent) {
|
/libcore/ojluni/src/main/java/sun/util/resources/ |
OpenListResourceBundle.java | 82 ResourceBundle parent = this.parent; local 84 (parent != null) ? parent.getKeys() : null); 97 * Returns the parent bundle 100 return (OpenListResourceBundle)parent;
|