/external/webkit/Source/WebCore/platform/network/mac/ |
FormDataStreamMac.mm | 244 // Append in reverse order since we remove elements from the end. 245 size_t size = formData->elements().size(); 248 newInfo->remainingElements.append(formData->elements()[size - i - 1]); 391 size_t count = formData->elements().size(); 395 const FormDataElement& element = formData->elements()[0]; 408 const FormDataElement& element = formData->elements()[i]; 421 const FormDataElement& element = formData->elements()[i]; 443 count = formData->elements().size(); 450 const FormDataElement& element = formData->elements()[i];
|
/libcore/luni/src/main/java/java/io/ |
SequenceInputStream.java | 57 e = inVector.elements(); 62 * Constructs a new SequenceInputStream using the elements returned from 69 * if any of the elements in {@code e} is {@code null}.
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
AbstractIteratorTester.java | 153 + actual + "' not found. Remaining elements: " + expected); 161 * elements and a set of features to support (from the enclosing 177 // TODO: track seen elements when order isn't guaranteed 182 * The elements to be returned by future calls to {@code next()}, with the 187 * The elements to be returned by future calls to {@code previous()}, with 313 List<E> elements = new ArrayList<E>(); local 314 Helpers.addAll(elements, previousElements); 315 Helpers.addAll(elements, Helpers.reverse(nextElements)); 316 return elements; 349 * expected elements passed to the constructor in the given order. Warning: i 414 List<E> elements = reference.getElements(); local [all...] |
/external/v8/src/arm/ |
ic-arm.cc | 69 Register elements, 75 // elements: holds the property dictionary on fall through. 79 // elements map. 99 __ ldr(elements, FieldMemOperand(receiver, JSObject::kPropertiesOffset)); 100 __ ldr(t1, FieldMemOperand(elements, HeapObject::kMapOffset)); 109 // elements: Property dictionary. It is not clobbered if a jump to the miss 114 // label is not done. Can be the same as elements or name clobbering 116 // The two scratch registers need to be different from elements, name and 122 Register elements, 137 elements, 1324 Register elements = r7; \/\/ Elements array of the receiver. local [all...] |
/external/v8/src/mips/ |
ic-mips.cc | 66 Register elements, 72 // elements: holds the property dictionary on fall through. 76 // and elements map. 96 __ lw(elements, FieldMemOperand(receiver, JSObject::kPropertiesOffset)); 97 __ lw(scratch1, FieldMemOperand(elements, HeapObject::kMapOffset)); 105 // elements: Property dictionary. It is not clobbered if a jump to the miss 110 // label is not done. Can be the same as elements or name clobbering 112 // The two scratch registers need to be different from elements, name and 120 Register elements, 135 elements, 1212 Register elements = t3; \/\/ Elements array of the receiver. local [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
LinkedListMultimapTest.java | 356 @Override protected void verify(List<Entry<String, Integer>> elements) { 357 assertEquals(elements, multimap.entries()); 377 @Override protected void verify(List<String> elements) { 378 assertEquals(elements, Lists.newArrayList(multimap.keys())); 402 @Override protected void verify(List<Integer> elements) { 403 assertEquals(elements, multimap.values()); 428 @Override protected void verify(List<String> elements) { 429 assertEquals(newHashSet(elements), multimap.keySet()); 468 List<Entry<String, Collection<Integer>>> elements) { 469 assertEquals(newHashSet(elements), multimap.asMap().entrySet()) [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLFormElement.cpp | 174 return elements()->item(index); 515 PassRefPtr<HTMLCollection> HTMLFormElement::elements() 592 Vector<RefPtr<FormAssociatedElement> > elements; 593 elements.reserveCapacity(m_associatedElements.size()); 595 elements.append(m_associatedElements[i]); 597 for (unsigned i = 0; i < elements.size(); ++i) { 598 if (elements[i]->form() == this && elements[i]->isFormControlElement()) { 599 HTMLFormControlElement* control = static_cast<HTMLFormControlElement*>(elements[i].get()); 625 elements()->namedItems(name, namedItems) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
RelativeLayoutRule.java | 151 @Nullable IDragElement[] elements) { 152 return new DropFeedback(new MoveHandler(targetNode, elements, mRulesEngine), 157 public DropFeedback onDropMove(@NonNull INode targetNode, @NonNull IDragElement[] elements, 159 if (elements == null || elements.length == 0 || feedback == null) { 166 state.updateMove(feedback, elements, offsetX, offsetY, feedback.modifierMask); 175 public void onDropLeave(@NonNull INode targetNode, @NonNull IDragElement[] elements, 180 public void onDropped(final @NonNull INode targetNode, final @NonNull IDragElement[] elements, 188 final Map<String, Pair<String, String>> idMap = getDropIdMap(targetNode, elements, 199 // Now write the new elements [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
DdmsPlugin.java | 301 IConfigurationElement[] elements = findConfigElements( local 304 IToolsLocator[] locators = instantiateToolsLocators(elements); 333 elements = findConfigElements("com.android.ide.eclipse.ddms.traceviewLauncher"); //$NON-NLS-1$ 334 mTraceviewLaunchers = instantiateTraceviewLauncher(elements); 349 /** Obtain a list of configuration elements that extend the given extension point. */ 437 private List<IClientAction> instantiateClientSpecificActions(IConfigurationElement[] elements) 439 if (elements == null || elements.length == 0) { 445 for (IConfigurationElement e : elements) { 847 IConfigurationElement[] elements local [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreeWizard.java | 186 List elements = (List)m.get(new Integer(ttype)); local 187 if ( elements==null ) { 188 elements = new ArrayList(); 189 m.put(new Integer(ttype), elements); 191 elements.add(t);
|
/frameworks/native/opengl/libs/GLES_trace/tools/ |
genapi.py | 226 elements = decl.strip().split(' ') 228 if len(elements) > 1: 229 name = " ".join(elements[-1:]).strip() # last element is the name 230 dataType = " ".join(elements[:-1]).strip() # everything else is the data type 246 dataType = elements[0]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
LayoutTestBase.java | 75 IDragElement[] elements = TestDragElement.create(TestDragElement.create( local 79 DropFeedback feedback = rule.onDropEnter(targetNode, null/*targetView*/, elements); 89 feedback = rule.onDropMove(targetNode, elements, feedback, dropPoint); 93 feedback = rule.onDropMove(targetNode, elements, feedback, secondDropPoint); 127 rule.onDropped(targetNode, elements, feedback, dropPoint); 161 * same elements (regardless of order) 171 // Sort prior to comparison to ensure we have the same elements
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
tree.rb | 1244 def initialize( adaptor, element_description, elements = nil ) 1247 @elements = nil 1251 if elements.instance_of?( Array ) 1252 @elements = elements 1254 add( elements ) 1267 when @elements then @elements << e [all...] |
/external/icu4c/common/ |
uhash.c | 20 /* This hashtable is implemented as a double hash. All elements are 60 * coordinated with the ratio between successive elements of the 222 p = hash->elements = (UHashElement*) 225 if (hash->elements == NULL) { 338 UHashElement *elements = hash->elements; local 344 tableHash = elements[theIndex].hashcode; 346 if ((*hash->keyComparator)(key, elements[theIndex].key)) { 347 return &(elements[theIndex]); 380 return &(elements[theIndex]) [all...] |
/external/v8/src/ |
objects-printer.cc | 274 PrintF(out, "(elements transition to "); 321 FixedArray* p = FixedArray::cast(elements()); 331 if (elements()->length() > 0) { 332 FixedDoubleArray* p = FixedDoubleArray::cast(elements()); 345 ExternalPixelArray* p = ExternalPixelArray::cast(elements()); 352 ExternalByteArray* p = ExternalByteArray::cast(elements()); 360 ExternalUnsignedByteArray::cast(elements()); 367 ExternalShortArray* p = ExternalShortArray::cast(elements()); 375 ExternalUnsignedShortArray::cast(elements()); 382 ExternalIntArray* p = ExternalIntArray::cast(elements()); [all...] |
/external/webkit/Source/WebKit/mac/WebView/ |
WebHTMLRepresentation.mm | 294 const Vector<FormAssociatedElement*>& elements = formElement->associatedElements(); 296 for (unsigned i = 0; i < elements.size(); i++) { 297 FormAssociatedElement* elt = elements[i]; 342 const Vector<FormAssociatedElement*>& elements = formElement->associatedElements(); 343 for (unsigned i = 0; i < elements.size(); i++) { 344 if (elements[i]->isEnumeratable()) { // Skip option elements, other duds 345 DOMElement* de = kit(toHTMLElement(elements[i]));
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeWizard.cs | 227 IList elements; 228 if (!m.TryGetValue(ttype, out elements) || elements == null) { 229 elements = new List<object>(); 230 m[ttype] = elements; 232 elements.Add(t);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreeWizard.cs | 257 IList elements; 258 if ( !m.TryGetValue( ttype, out elements ) || elements == null ) 260 elements = new List<object>(); 261 m[ttype] = elements; 263 elements.Add( t );
|
/external/expat/ |
Makefile | 54 all: $(LIBRARY) expat.pc xmlwf/xmlwf examples/elements examples/outline 59 cd examples && rm -f elements outline *.o *.lo && rm -rf .libs _libs 155 examples/elements.o: examples/elements.c 156 examples/elements: examples/elements.o $(LIBRARY)
|
/external/expat/bcb5/ |
elements.mak | 16 PROJECT = Release\elements.exe 17 OBJFILES = Release\obj\examples\elements.obj 19 MAINSOURCE = elements.bpf
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLCollection02.js | 82 the elements attribute. The first SELECT element is further retrieved 83 using the elements name attribute. 107 formsnodeList = testNode.elements;
|
HTMLCollection12.js | 81 on those elements that are allowed a name attribute. If there isn't 85 the elements attribute. The method returns null since there is not a 109 formsnodeList = testNode.elements;
|
HTMLOptionsCollection03.js | 85 those elements that are allowed a name attribute. 87 Retrieve the first FORM element. Create a HTMLCollection of the elements. 113 formsnodeList = testNode.elements;
|
HTMLOptionsCollection04.js | 85 those elements that are allowed a name attribute. 87 Retrieve the first FORM element. Create a HTMLCollection of the elements. 113 formsnodeList = testNode.elements;
|
HTMLOptionsCollection05.js | 85 those elements that are allowed a name attribute. Upon failure(e.q., no 88 Retrieve the first FORM element. Create a HTMLCollection of the elements. 115 formsnodeList = testNode.elements;
|