OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SimpleElement
(Results
1 - 16
of
16
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElementTest.java
27
private
SimpleElement
e;
59
e = new
SimpleElement
("android.view.LinearLayout", // fqcn
95
SimpleElement
e2 = new
SimpleElement
("android.view.Button",
100
SimpleElement
e3 = new
SimpleElement
("android.view.CheckBox",
125
new
SimpleElement
[] { new
SimpleElement
("android.view.LinearLayout",
127
SimpleElement
.parseString(
132
new
SimpleElement
[] { new SimpleElement("android.view.LinearLayout"
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElement.java
37
public class
SimpleElement
implements IDragElement {
54
* Creates a new {@link
SimpleElement
} with the specified element name.
64
public
SimpleElement
(String fqcn, String parentFqcn, Rect bounds, Rect parentBounds) {
141
public void addInnerElement(
SimpleElement
e) {
165
static
SimpleElement
findPrimary(
SimpleElement
[] elements, SelectionItem primary) {
174
for (
SimpleElement
element : elements) {
212
static
SimpleElement
[] parseString(String value) {
213
ArrayList<
SimpleElement
> elements = new ArrayList<
SimpleElement
>();
[
all
...]
SimpleXmlTransfer.java
57
* Elements are represented by {@link
SimpleElement
}s and their attributes by
110
/** Transforms a array of {@link
SimpleElement
} into a native data transfer. */
113
if (object == null || !(object instanceof
SimpleElement
[])) {
119
for (
SimpleElement
e : (
SimpleElement
[]) object) {
134
* Recreates an array of {@link
SimpleElement
} from a native data transfer.
136
* @return An array of {@link
SimpleElement
} or null. The array may be empty.
145
return
SimpleElement
.parseString(s);
GlobalCanvasDragInfo.java
47
private
SimpleElement
[] mCurrentElements = null;
81
@NonNull
SimpleElement
[] elements,
106
public
SimpleElement
[] getCurrentElements() {
118
* Returns the object that call {@link #startDrag(
SimpleElement
[], SelectionItem[], Object)}.
SelectionItem.java
172
static
SimpleElement
[] getAsElements(@NonNull List<SelectionItem> items) {
184
static
SimpleElement
[] getAsElements(
187
List<
SimpleElement
> elements = new ArrayList<
SimpleElement
>();
191
SimpleElement
e = vi.toSimpleElement();
203
SimpleElement
e = vi.toSimpleElement();
208
return elements.toArray(new
SimpleElement
[elements.size()]);
MoveGesture.java
71
private
SimpleElement
[] mCurrentDragElements;
194
mCurrentDragElements = (
SimpleElement
[]) sxt.nativeToJava(event.currentDataType);
314
SimpleElement
[] elements = null;
319
if (event.data instanceof
SimpleElement
[]) {
320
elements = (
SimpleElement
[]) event.data;
347
final
SimpleElement
[] elementsFinal = elements;
496
SimpleElement
[] elements, int detail) {
[
all
...]
OutlineDropListener.java
68
final
SimpleElement
[] elements;
71
if (data instanceof
SimpleElement
[]) {
72
elements = (
SimpleElement
[]) data;
OutlineDragListener.java
34
private
SimpleElement
[] mDragElements;
ClipboardSupport.java
88
* selection both as text and as {@link
SimpleElement
}s in the clipboard.
264
final
SimpleElement
[] pasted = (
SimpleElement
[]) mClipboard.getContents(sxt);
CanvasViewInfo.java
506
* Returns the info represented as a {@link
SimpleElement
}.
508
* @return A {@link
SimpleElement
} wrapping this info.
511
SimpleElement
toSimpleElement() {
528
SimpleElement
e = new
SimpleElement
(fqcn, parentFqcn, bounds, parentBounds);
543
SimpleElement
e2 = childVi.toSimpleElement();
[
all
...]
PaletteControl.java
747
private
SimpleElement
[] mElements;
776
SimpleElement
se = new
SimpleElement
(
785
mElements = new
SimpleElement
[] { se };
[
all
...]
GestureManager.java
710
private
SimpleElement
[] mDragElements;
[
all
...]
LayoutCanvas.java
[
all
...]
OutlinePage.java
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
PaletteMetadataDescriptor.java
24
import com.android.ide.eclipse.adt.internal.editors.layout.gle2.
SimpleElement
;
78
* Initializes a new {@link
SimpleElement
} with the palette initialization
83
public void initializeNew(
SimpleElement
element) {
96
private void initializeNew(
SimpleElement
simpleElement
, Element domElement) {
109
if (
simpleElement
!= null) {
111
simpleElement
.addAttribute(attr);
RulesEngine.java
42
import com.android.ide.eclipse.adt.internal.editors.layout.gle2.
SimpleElement
;
402
SimpleElement
[] pastedElements) {
[
all
...]
Completed in 607 milliseconds