PageRenderTime 166ms queryTime 33ms sortTime 7ms getByIdsTime 30ms findMatchingLines 15ms

100+ results results for 'List<Object> repo:cderici/moby-scheme' (166 ms)

Not the results you expected?
CosmosAsyncStoredProcedure.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 246 lines
                    
120     */
                    
121    public Mono<CosmosStoredProcedureResponse> execute(List<Object> procedureParams,
                    
122                                                            CosmosStoredProcedureRequestOptions options) {
                    
212
                    
213    private Mono<CosmosStoredProcedureResponse> executeInternal(List<Object> procedureParams,
                    
214                                                             CosmosStoredProcedureRequestOptions options,
                    
                
BufferedItemList.cs https://EventScavenger.svn.codeplex.com/svn | C# | 464 lines
                    
285
                    
286				List<object> newSortedList = new List<object>( _sortedListItems.Length + additions.Length );
                    
287				
                    
303				{
                    
304					newSortedList = new List<object>( _sortedListItems );
                    
305				}
                    
455		private Column[] _jobGroupColumns = null;
                    
456		private List<object> _jobSortedList = null;
                    
457		
                    
                
NetworkAvailability.java http://mobicents.googlecode.com/svn/trunk/ | Java | 349 lines
                    
99    @XmlAnyElement(lax = true)
                    
100    protected List<Object> any;
                    
101    @XmlAnyAttribute
                    
155     */
                    
156    public List<Object> getAny() {
                    
157        if (any == null) {
                    
157        if (any == null) {
                    
158            any = new ArrayList<Object>();
                    
159        }
                    
217        @XmlAnyElement(lax = true)
                    
218        protected List<Object> any;
                    
219        @XmlAttribute(required = true)
                    
296         */
                    
297        public List<Object> getAny() {
                    
298            if (any == null) {
                    
                
CompilerBlob.cs git://github.com/sorear/niecza.git | C# | 275 lines
                    
117                    VarDeque it = o.mo.mro_raw_iterator.Get(v);
                    
118                    var lo = new List<object>();
                    
119                    while (Kernel.IterHasFlat(it, true))
                    
128        public static Variable DownCall(Variable list) {
                    
129            List<object> lo = new List<object>();
                    
130            VarDeque it = Builtins.start_iter(list);
                    
160        static void SerializeNam(Variable v, StringBuilder sb,
                    
161                List<object> refs) {
                    
162
                    
202            StringBuilder sb = new StringBuilder();
                    
203            List<object> refs = new List<object>();
                    
204            SerializeNam(nam, sb, refs);
                    
                
ListHDFSStoresFunctionJUnitTest.java https://gitlab.com/kidaa/incubator-geode.git | Java | 319 lines
                    
295
                    
296    private final List<Object> results = new LinkedList<Object>();
                    
297
                    
299
                    
300    protected List<Object> getResults() throws Throwable {
                    
301      if (t != null) {
                    
                
SellerController.cs https://hg.codeplex.com/xenta | C# | 385 lines
                    
273            });
                    
274            var data = new List<Object>();
                    
275
                    
307            });
                    
308            var data = new List<Object>();
                    
309
                    
330            });
                    
331            var data = new List<Object>();
                    
332
                    
                
DelayedFilterCheckboxTree.java https://github.com/adreghiciu/p2.git | Java | 332 lines
                    
50	Object viewerInput;
                    
51	ArrayList<Object> checkState = new ArrayList<Object>();
                    
52	Set<Object> expanded = new HashSet<Object>();
                    
71					else {
                    
72						ArrayList<Object> toRemove = new ArrayList<Object>(1);
                    
73						// See bug 258117.  Ideally we would get check state changes 
                    
278		if (checkState == null)
                    
279			checkState = new ArrayList<Object>(checked.length);
                    
280		for (int i = 0; i < checked.length; i++)
                    
                
TestLoopThroughConditionsInAlgoFile.java https://bitbucket.org/Sathishsatz/iso-consumption-parser.git | Java | 360 lines
                    
132		
                    
133		List<Object> scopeList = new ArrayList<Object>();
                    
134		scopeList.addAll(reference.getContent());
                    
                
QueryBatchItemBase.cs https://github.com/nhibernate/nhibernate-core.git | C# | 391 lines
                    
26		private DbDataReader _reader;
                    
27		private List<object>[] _hydratedObjects;
                    
28
                    
181			var dialect = Session.Factory.Dialect;
                    
182			var hydratedObjects = new List<object>[_queryInfos.Count];
                    
183			var isDebugLog = Log.IsDebugEnabled();
                    
200					var entitySpan = loader.EntityPersisters.Length;
                    
201					hydratedObjects[i] = entitySpan == 0 ? null : new List<object>(entitySpan);
                    
202					var keys = new EntityKey[entitySpan];
                    
223					var optionalObjectKey = Loader.Loader.GetOptionalObjectKey(queryParameters, Session);
                    
224					var tmpResults = new List<object>();
                    
225					var queryCacheBuilder = queryInfo.IsCacheable ? new QueryCacheResultBuilder(loader) : null;
                    
356
                    
357		private void InitializeEntitiesAndCollections(DbDataReader reader, List<object>[] hydratedObjects)
                    
358		{
                    
                
CassandraFetchFieldManager.java git://github.com/PedroGomes/datanucleus-cassandra.git | Java | 331 lines
                    
218
                    
219                List<Object> mapping = (List<Object>) value;
                    
220
                    
220
                    
221                Collection<Object> collection = new ArrayList<Object>(mapping.size());
                    
222                for (Object id : mapping) {
                    
                
SelectAlgorithmAndInputPanel.java git://github.com/lessthanoptimal/BoofCV.git | Java | 331 lines
                    
52	protected JCheckBox originalCheck;
                    
53	List<Object>[] algCookies;
                    
54	// list of input names and where to get the inputs
                    
                
CoordinatedBolt.java https://gitlab.com/hackbuteer59/jstorm | Java | 379 lines
                    
73		public List<Integer> emit(String stream, Collection<Tuple> anchors,
                    
74				List<Object> tuple) {
                    
75			List<Integer> tasks = _delegate.emit(stream, anchors, tuple);
                    
80		public void emitDirect(int task, String stream,
                    
81				Collection<Tuple> anchors, List<Object> tuple) {
                    
82			updateTaskCounts(tuple.get(0), Arrays.asList(task));
                    
                
GroupManager.java https://github.com/elBukkit/PersistencePlugin.git | Java | 403 lines
                    
381                    {
                    
382                        List<Object> playerPermissions = (List<Object>)checkList;
                    
383                        
                    
                
itemAdd.java https://gitlab.com/imughal/invent | Java | 318 lines
                    
158
                    
159    public ArrayList<Object> adding(String cat_id, int rows) {
                    
160        loading(cat_id);
                    
168    ArrayList<String> itemName = new ArrayList<>();
                    
169    ArrayList<Object> rList = new ArrayList<>();
                    
170
                    
                
org.apache.commons.collections.iterators.IteratorChain.cs git://github.com/gadfly/nofs.git | C# | 317 lines
                    
51        /** The chain of iterators */
                    
52        protected readonly java.util.List<Object> iteratorChain = new java.util.ArrayList<Object>();
                    
53        /** The index of the current iterator */
                    
183         */
                    
184        public java.util.List<Object> getIterators()
                    
185        {
                    
                
ComplaintsController.java https://bitbucket.org/Venkata_blickx/mycableproduction.git | Java | 270 lines
                    
177	@RequestMapping(value="/getComplaintStatusDetails",method = RequestMethod.GET, headers="Accept=application/json" )
                    
178	public @ResponseBody List<Object> getComplaintStatus(@PathVariable("client_id") String client_id)   {
                    
179
                    
180		
                    
181		List<Object> resultToAngular = new ArrayList<Object>();
                    
182		ComplaintStatusTo status = complaintService.getComplaintStatus(client_id);
                    
192		
                    
193		List<Object> result = new ArrayList<Object>();
                    
194		result.add(resultToAngular);
                    
                
ReplayingDecoderTest.java https://bitbucket.org/htdzzc/netty.git | Java | 316 lines
                    
69        @Override
                    
70        protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) {
                    
71            ByteBuf msg = in.readBytes(in.bytesBefore((byte) '\n'));
                    
143            @Override
                    
144            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
145                assertFalse(removed);
                    
165            @Override
                    
166            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
167                assertFalse(removed);
                    
191            @Override
                    
192            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
193                assertFalse(removed);
                    
216            @Override
                    
217            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
218                int readable = in.readableBytes();
                    
                
NotificationHistoryResponse.java http://grails-google-checkout.googlecode.com/svn/trunk/ | Java | 339 lines
                    
289        })
                    
290        protected List<Object> newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification;
                    
291
                    
319         */
                    
320        public List<Object> getNewOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification() {
                    
321            if (newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification == null) {
                    
321            if (newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification == null) {
                    
322                newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification = new ArrayList<Object>();
                    
323            }
                    
                
GenericClassProxyTestCase.cs git://github.com/castleproject/Castle.Core-READONLY.git | C# | 328 lines
                    
142		{
                    
143			GenClassWithGenMethodsConstrained<List<object>> proxy =
                    
144				generator.CreateClassProxy<GenClassWithGenMethodsConstrained<List<object>>>(logger);
                    
175			GenClassWithGenReturn<List<object>, List<object>> proxy =
                    
176				generator.CreateClassProxy<GenClassWithGenReturn<List<object>, List<object>>>(logger);
                    
177
                    
191			GenClassNameClash<List<object>, List<object>> proxy =
                    
192				generator.CreateClassProxy<GenClassNameClash<List<object>, List<object>>>(logger);
                    
193
                    
221			KeepDataInterceptor interceptor = new KeepDataInterceptor();
                    
222			GenClassWithGenMethods<List<object>> proxy = generator.CreateClassProxy<GenClassWithGenMethods<List<object>>>(interceptor);
                    
223
                    
251			GenClassWithGenReturn<List<object>, List<object>> proxy =
                    
252				generator.CreateClassProxy<GenClassWithGenReturn<List<object>, List<object>>>(interceptor);
                    
253
                    
                
AbstractLatLonBox.java http://javaapiforkml.googlecode.com/svn/trunk/ | Java | 479 lines
                    
98    @XmlSchemaType(name = "anySimpleType")
                    
99    protected List<Object> abstractLatLonBoxSimpleExtension;
                    
100    /**
                    
224     */
                    
225    public List<Object> getAbstractLatLonBoxSimpleExtension() {
                    
226        if (abstractLatLonBoxSimpleExtension == null) {
                    
226        if (abstractLatLonBoxSimpleExtension == null) {
                    
227            abstractLatLonBoxSimpleExtension = new ArrayList<Object>();
                    
228        }
                    
313     */
                    
314    public void setAbstractLatLonBoxSimpleExtension(final List<Object> abstractLatLonBoxSimpleExtension) {
                    
315        this.abstractLatLonBoxSimpleExtension = abstractLatLonBoxSimpleExtension;
                    
358    @Override
                    
359    public void setObjectSimpleExtension(final List<Object> objectSimpleExtension) {
                    
360        super.setObjectSimpleExtension(objectSimpleExtension);
                    
                
SelectorBasedResponseHandler.java git://github.com/JetBrains/intellij-community.git | Java | 269 lines
                    
164    }
                    
165    List<Object> tasks = selectTasksList(response, max);
                    
166    LOG.debug(String.format("Total %d tasks extracted from response", tasks.size()));
                    
230  @NotNull
                    
231  protected abstract List<Object> selectTasksList(@NotNull String response, int max) throws Exception;
                    
232
                    
                
GotoTargetHandler.java git://github.com/JetBrains/intellij-community.git | Java | 376 lines
                    
114
                    
115    List<Object> allElements = new ArrayList<>(targets.length + additionalActions.size());
                    
116    Collections.addAll(allElements, targets);
                    
                
ImpalaLinkedService.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 355 lines
                    
61    @Override
                    
62    public ImpalaLinkedService withAnnotations(List<Object> annotations) {
                    
63        super.withAnnotations(annotations);
                    
                
DbSessionImplTest.java https://github.com/SonarSource/sonarqube.git | Java | 266 lines
                    
59    Object randomObject = new Object();
                    
60    List<Object> randomList = new ArrayList<>();
                    
61    Map<Object, Object> randomMap = new HashMap<>();
                    
                
TestDocumentObjectBinder.java https://github.com/retresco/lucene-solr.git | Java | 260 lines
                    
45    XMLResponseParser parser = new XMLResponseParser();
                    
46    NamedList<Object> nl = parser.processResponse(new StringReader(xml));
                    
47    QueryResponse res = new QueryResponse(nl, null);
                    
88    XMLResponseParser parser = new XMLResponseParser();
                    
89    NamedList<Object> nl = parser.processResponse(new StringReader(xml));
                    
90    QueryResponse res = new QueryResponse(nl, null);
                    
                
InputListModel.java git://github.com/bcdev/beam.git | Java | 179 lines
                    
36
                    
37    private final List<Object> list = new ArrayList<>();
                    
38    private List<Product> sourceProducts = new ArrayList<>();
                    
96    void removeElementsAt(int[] selectedIndices) {
                    
97        List<Object> toRemove = new ArrayList<>();
                    
98        int startIndex = Integer.MAX_VALUE;
                    
                
BrowserTrackerPersistenceTest.java git://github.com/liferay/liferay-portal.git | Java | 441 lines
                    
376
                    
377		List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery);
                    
378
                    
397
                    
398		List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery);
                    
399
                    
                
IndexAlreadyExistsException.java git://github.com/apache/hive.git | Java | 396 lines
                    
231  public int hashCode() {
                    
232    List<Object> list = new ArrayList<Object>();
                    
233
                    
                
EqlSearchResponseTests.java https://github.com/elasticsearch/elasticsearch.git | Java | 277 lines
                    
124                String fieldName = randomAlphaOfLengthBetween(3, 10);
                    
125                Tuple<List<Object>, List<Object>> tuple = RandomObjects.randomStoredFieldValues(random(), xType);
                    
126                DocumentField input = new DocumentField(fieldName, tuple.v1());
                    
129            case 1:
                    
130                List<Object> listValues = randomList(1, 5, () -> randomList(1, 5, ESTestCase::randomInt));
                    
131                DocumentField listField = new DocumentField(randomAlphaOfLength(5), listValues);
                    
133            case 2:
                    
134                List<Object> objectValues = randomList(
                    
135                    1,
                    
196            for (int i = 0; i < size; i++) {
                    
197                List<Object> joins = null;
                    
198                if (randomBoolean()) {
                    
                
MatchSetting.java https://bitbucket.org/ElanVB/ingenious-framework.git | Java | 290 lines
                    
230     */
                    
231    public List<Object> getSettingAsList(String settingName) throws MissingSettingException, IncorrectSettingTypeException {
                    
232        Object val = getSetting(settingName);
                    
235        }
                    
236        return (List<Object>) val;
                    
237    }
                    
                
DocumentFoldingInfo.java https://github.com/joewalnes/idea-community.git | Java | 268 lines
                    
51
                    
52  private final ArrayList<Object> myPsiElementsOrRangeMarkers = new ArrayList<Object>();
                    
53  private final ArrayList<Boolean> myExpandedStates = new ArrayList<Boolean>();
                    
                
JournalFolderFinderImpl.java git://github.com/liferay/liferay-portal.git | Java | 473 lines
                    
91	@Override
                    
92	public List<Object> filterFindF_A_ByG_F(
                    
93		long groupId, long folderId, QueryDefinition<?> queryDefinition) {
                    
98	@Override
                    
99	public List<Object> filterFindF_A_ByG_F_L(
                    
100		long groupId, long folderId, Locale locale,
                    
107	@Override
                    
108	public List<Object> findF_A_ByG_F(
                    
109		long groupId, long folderId, QueryDefinition<?> queryDefinition) {
                    
211
                    
212	protected List<Object> doFindF_A_ByG_F(
                    
213		long groupId, long folderId, QueryDefinition<?> queryDefinition,
                    
265
                    
266			List<Object> models = new ArrayList<>();
                    
267
                    
                
EntitiesItemProviderAdapterFactory.java https://github.com/svenefftinge/Xtext-2.0-released-source-code.git | Java | 400 lines
                    
61   */
                    
62  protected Collection<Object> supportedTypes = new ArrayList<Object>();
                    
63
                    
                
Method.java git://github.com/jersey/jersey.git | Java | 286 lines
                    
69    @XmlAnyElement(lax = true)
                    
70    protected List<Object> any;
                    
71    @XmlAttribute(name = "id")
                    
188     */
                    
189    public List<Object> getAny() {
                    
190        if (any == null) {
                    
190        if (any == null) {
                    
191            any = new ArrayList<Object>();
                    
192        }
                    
                
BinaryExpression.java https://github.com/davsclaus/camel-simple2.git | Java | 238 lines
                    
167                Iterator<Object> it = ObjectHelper.createIterator(rightExp.evaluate(exchange, Object.class));
                    
168                List<Object> values = new ArrayList<Object>();
                    
169                while (it.hasNext()) {
                    
                
IgnoreCommitOptimizeUpdateProcessorFactory.java git://github.com/apache/lucene-solr.git | Java | 148 lines
                    
135        if (responseMsg != null) {
                    
136          NamedList<Object> responseHeader = rsp.getResponseHeader();
                    
137          if (responseHeader != null) {
                    
                
Frm_OperLog.cs https://TrainingFrameWork.svn.codeplex.com/svn | C# | 281 lines
                    
55            int nIndex = this.ultraGrid1.ActiveRow.Index;
                    
56            List<object> lstO = this.ultraGrid1.DisplayLayout.Bands[0].ColumnFilters.All.ToList();
                    
57
                    
                
KieServerRouterJbpmIntegrationTest.java https://github.com/etirelli/droolsjbpm-integration.git | Java | 271 lines
                    
77        parameters.put("number", new Integer(12345));
                    
78        List<Object> list = new ArrayList<Object>();
                    
79        list.add("item");
                    
109        parameters.put("number", new Integer(12345));
                    
110        List<Object> list = new ArrayList<Object>();
                    
111        list.add("item");
                    
145            parameters.put("number", new Integer(12345));
                    
146            List<Object> list = new ArrayList<Object>();
                    
147            list.add("item");
                    
196            parameters.put("number", new Integer(12345));
                    
197            List<Object> list = new ArrayList<Object>();
                    
198            list.add("item");
                    
                
FilterableHierarchicalContainer.java https://bitbucket.org/peternixon/opennms-mirror.git | Java | 348 lines
                    
51    HierarchicalBeanContainer<?,?> m_container;
                    
52    List<Object> m_filteredItems;
                    
53    private LinkedList<Object> m_filteredRoots = null;
                    
53    private LinkedList<Object> m_filteredRoots = null;
                    
54    private HashMap<Object, LinkedList<Object>> m_filteredChildren = null;
                    
55    private HashMap<Object, Object> m_filteredParent = null;
                    
142    public Collection<?> getChildren(Object itemId) {
                    
143        LinkedList<Object> c;
                    
144
                    
232        // Reset data structures
                    
233        m_filteredRoots = new LinkedList<Object>();
                    
234        m_filteredChildren = new HashMap<Object, LinkedList<Object>>();
                    
296    private void addFilteredChild(Object parentItemId, Object childItemId) {
                    
297        LinkedList<Object> parentToChildrenList = m_filteredChildren
                    
298                .get(parentItemId);
                    
                
JoinOperator.java https://github.com/apache/hive.git | Java | 283 lines
                    
84
                    
85      List<Object> nr = getFilteredValue(alias, row);
                    
86      addToAliasFilterTags(alias, nr, false);
                    
                
ChooseDataSourcePage.java git://pkgs.fedoraproject.org/eclipse-m2m-qvtoml | Java | 310 lines
                    
81	
                    
82				public List<Object> toList() {
                    
83					Object[] array = toArray();
                    
83					Object[] array = toArray();
                    
84					List<Object> list = new ArrayList<Object>(array.length);
                    
85					for (Object o : array) {
                    
                
DBMessages.java https://bitbucket.org/aneeshk/cs108-finalproject | Java | 359 lines
                    
229			String dateRead, String messageType, String quizChallengeID, String friendRequest) {
                    
230		ArrayList<Object> row = new ArrayList<Object>();
                    
231		
                    
246	 * Adds a new MessageRow to the database
                    
247	 * @param row - ArrayList<Object> with all the info for adding a MessagesRow
                    
248	 * @return messageID on success, -1 on failure
                    
249	 */
                    
250	public int sendMessage(ArrayList<Object> row) {
                    
251		
                    
                
CreateMappingCommand.java git://pkgs.fedoraproject.org/eclipse-emf | Java | 312 lines
                    
99  {
                    
100    Collection<Object> collection = new ArrayList<Object>();
                    
101    collection.add(input);
                    
110  {
                    
111    Collection<Object> collection = new ArrayList<Object>();
                    
112    collection.addAll(inputs);
                    
121  {
                    
122    Collection<Object> collection = new ArrayList<Object>();
                    
123    collection.addAll(inputs);
                    
132  {
                    
133    Collection<Object> collection = new ArrayList<Object>();
                    
134    collection.add(input);
                    
191
                    
192    ArrayList<Object> newInputs = new ArrayList<Object>();
                    
193    ArrayList<Object> newOutputs = new ArrayList<Object>();
                    
                
FOExporterVisitorDelegate.java git://github.com/plutext/docx4j.git | Java | 180 lines
                    
164									  Element currentParent,
                    
165									  String name, Part part, List<Object> content) throws Docx4JException {
                    
166    Element	flow = document.createElementNS(XSL_FO, "static-content");    	
                    
                
CompositeColumnEntityMapper.java git://github.com/Netflix/astyanax.git | Java | 360 lines
                    
178    public boolean setField(Object entity, ColumnList<ByteBuffer> columns) throws Exception {
                    
179        List<Object> list = getOrCreateField(entity);
                    
180            
                    
189    public boolean setFieldFromCql(Object entity, ColumnList<ByteBuffer> columns) throws Exception {
                    
190        List<Object> list = getOrCreateField(entity);
                    
191    
                    
199    
                    
200    private List<Object> getOrCreateField(Object entity) throws IllegalArgumentException, IllegalAccessException {
                    
201        // Get or create the list field
                    
201        // Get or create the list field
                    
202        List<Object> list = (List<Object>) containerField.get(entity);
                    
203        if (list == null) {
                    
                
CheckHdfsIndexTest.java git://github.com/apache/lucene-solr.git | Java | 150 lines
                    
120      NamedList<Object> response = client.query(new SolrQuery().setRequestHandler("/admin/system")).getResponse();
                    
121      NamedList<Object> coreInfo = (NamedList<Object>) response.get("core");
                    
122      String indexDir = ((NamedList<Object>) coreInfo.get("directory")).get("data") + "/index";
                    
                
ShoppingCategoryServiceImpl.java git://github.com/liferay/liferay-portal.git | Java | 147 lines
                    
74	@Override
                    
75	public List<Object> getCategoriesAndItems(
                    
76		long groupId, long categoryId, int start, int end,
                    
                
AUTH.java https://github.com/rachmatowicz/JGroups.git | Java | 277 lines
                    
87
                    
88    protected List<Object> getConfigurableObjects() {
                    
89        List<Object> retval=new LinkedList<>();
                    
                
TotalOrderRemoteTransactionState.java git://github.com/infinispan/infinispan.git | Java | 238 lines
                    
25   private final GlobalTransaction globalTransaction;
                    
26   private List<Object> lockedKeys;
                    
27   private TotalOrderLatch block;
                    
209      if (lockedKeys == null) {
                    
210         lockedKeys = new ArrayList<Object>(8);
                    
211      }
                    
                
DictProxy.cs git://github.com/IronLanguages/main.git | C# | 322 lines
                    
166
                    
167                return new List<object>(res);
                    
168            }
                    
176            get {
                    
177                List<object> res = new List<object>();
                    
178                foreach (KeyValuePair<object, object> kvp in _dt.GetMemberDictionary(DefaultContext.Default, false)) {
                    
                
DotNetObject.cs https://code.google.com/p/s-sharp/ | C# | 246 lines
                    
39
                    
40		public object Expand(IList<object> args) {
                    
41			return Expand(args, false);
                    
47		/// </summary>
                    
48		public object Expand(IList<object> args, bool isSetter) {
                    
49			if (args.Count != 1) {
                    
                
ListenerList.cs https://javapi.svn.codeplex.com/svn | C# | 216 lines
                    
175
                    
176        private static java.util.ArrayList<Object> getOnlySerializable(java.util.ArrayList<T> list)
                    
177        {
                    
182
                    
183            java.util.ArrayList<Object> result = new java.util.ArrayList<Object>();
                    
184            for (java.util.Iterator<T> it = list.iterator(); it.hasNext(); )
                    
                
Hdr.java git://github.com/plutext/docx4j.git | Java | 203 lines
                    
99    })
                    
100    protected List<Object> egBlockLevelElts;
                    
101    
                    
157    @Deprecated    
                    
158    public List<Object> getEGBlockLevelElts() {
                    
159        if (egBlockLevelElts == null) {
                    
159        if (egBlockLevelElts == null) {
                    
160            egBlockLevelElts = new ArrayList<Object>();
                    
161        }
                    
168     */
                    
169    public List<Object> getContent() {
                    
170        if (egBlockLevelElts == null) {
                    
170        if (egBlockLevelElts == null) {
                    
171            egBlockLevelElts = new ArrayList<Object>();
                    
172        }
                    
                
ComposablePartExtensibilityTests.cs git://github.com/mono/mono.git | C# | 293 lines
                    
253
                    
254                List<object> constructorArgs = new List<object>();
                    
255
                    
                
RPProduto.java http://freedom-erp.googlecode.com/svn/trunk/ | Java | 223 lines
                    
98
                    
99	private List<Object> prefere = new ArrayList<Object>();
                    
100
                    
                
MapMainForm.cs https://EpiInfo.svn.codeplex.com/svn | C# | 188 lines
                    
53
                    
54        List<object> mapControl_DataSourceRequested()
                    
55        {
                    
58            {
                    
59                List<object> resultsArray = new List<object>();
                    
60                resultsArray.Add(dlg.SelectedDataSource);
                    
                
RegistryCore.cs git://github.com/aurora-sim/Aurora-Sim.git | C# | 0 lines
                    
38        /// </value>
                    
39        protected Dictionary<Type, List<object>> ModuleInterfaces = new Dictionary<Type, List<object>>();
                    
40
                    
50
                    
51            List<Object> l = null;
                    
52            if (!ModuleInterfaces.TryGetValue(typeof(T), out l))
                    
53            {
                    
54                l = new List<Object>();
                    
55                ModuleInterfaces.Add(typeof(T), l);
                    
63
                    
64        public void AddModuleInterfaces(Dictionary<Type, List<object>> dictionary)
                    
65        {
                    
148            //Flatten the array
                    
149            Dictionary<Type, List<object>> interfaces = new Dictionary<Type, List<object>>();
                    
150            foreach (KeyValuePair<Type, List<object>> kvp in ModuleInterfaces)
                    
                
ShDataExtension.java http://mobicents.googlecode.com/svn/trunk/ | Java | 208 lines
                    
205   */
                    
206  public abstract List<Object> getAny();
                    
207
                    
                
CTR.java git://github.com/plutext/docx4j.git | Java | 250 lines
                    
114    })
                    
115    protected List<Object> content;
                    
116    @XmlTransient
                    
184     */
                    
185    public List<Object> getContent() {
                    
186        if (content == null) {
                    
186        if (content == null) {
                    
187            content = new ArrayList<Object>();
                    
188        }
                    
                
CensusMemberControllerTest.cls https://bitbucket.org/sandeepkumarkhandelwal/bci.git | Visual Basic for Applications | 96 lines
                    
66        Map<String,Object> rows7 = new Map<String,Object>{'Member_Type__c'=>'Child','vlocity_ins__Gender__c'=>'Male','Name'=>'Will','vlocity_ins__FirstName__c'=>'Harry','vlocity_ins__Birthdate__c'=>system.now()};
                    
67        List<Object> rowFileData = new List<Object>();
                    
68        rowFileData.add(rows1);
                    
                
FIMPSResource.cs https://hg01.codeplex.com/fimpscmdlets | C# | 253 lines
                    
114                    {
                    
115                        List<object> listOfValues = new List<object>(resourceValue.Values.Count);
                    
116                        foreach (RmAttributeValue rmValue in resourceValue.Values)
                    
                
CustomStringDictionary.cs git://github.com/IronLanguages/main.git | C# | 456 lines
                    
114            get {
                    
115                List<object> res = new List<object>();
                    
116                lock (this) {
                    
174            get {
                    
175                List<object> res = new List<object>();
                    
176                lock (this) {
                    
325        public System.Collections.IEnumerator GetEnumerator() {
                    
326            List<object> l = new List<object>(this.Keys);
                    
327            for (int i = 0; i < l.Count; i++) {
                    
366            get {
                    
367                return new List<object>(((IDictionary<object, object>)this).Keys);
                    
368            }
                    
376            get {
                    
377                return new List<object>(((IDictionary<object, object>)this).Values);
                    
378            }
                    
                
ConfigurableConstraintExceptionFactoryBeanDefinitionParser.java git://github.com/42BV/jarb.git | Java | 93 lines
                    
42
                    
43    private ManagedList<Object> parseExceptionMappings(Element element, ParserContext parserContext, BeanDefinition parentDefinition) {
                    
44        List<Element> mappingElements = getChildElementsByTagName(element, "exception-mapping");
                    
44        List<Element> mappingElements = getChildElementsByTagName(element, "exception-mapping");
                    
45        ManagedList<Object> mappingDefinitions = new ManagedList<Object>(mappingElements.size());
                    
46        mappingDefinitions.setElementTypeName(ExceptionFactoryMapping.class.getName());
                    
                
JsonMapperToJavaTest.java http://restfb.googlecode.com/svn/trunk/ | Java | 296 lines
                    
48  public void emptyList() {
                    
49    List<Object> objects = createJsonMapper().toJavaList("[]", Object.class);
                    
50    assertTrue(objects.size() == 0);
                    
                
Library.java https://gitlab.com/jakenherman7/sql-project | Java | 725 lines
                    
11{
                    
12	private ArrayList<Object> bookList = new ArrayList<Object>();         // to store the entire library book list
                    
13
                    
13
                    
14	private ArrayList<Object>myList = new ArrayList<Object>();           // to store a user's specific book list
                    
15	private int location =-1;                                            // used in LookUp() default set to -1
                    
17	private ArrayList<User>users = new ArrayList<User>();               
                    
18	private ArrayList<Object>tempMyList = new ArrayList<Object>();
                    
19	private User tempUser;
                    
                
MenuManager.cs https://git01.codeplex.com/signum | C# | 177 lines
                    
134
                    
135            List<object> queryNames =  Server.Return((IDynamicQueryServer s)=>s.GetQueryNames()); 
                    
136
                    
                
OwlsAssignItemProvider.java http://owl-composer.googlecode.com/svn/trunk/ | Java | 239 lines
                    
125				           Collection filter = new ArrayList();
                    
126				           Collection<?> results = new UniqueEList<Object>();
                    
127				           for (Object input : inputs) {
                    
167						   Collection filter = new ArrayList();
                    
168						   Collection<?> results = new UniqueEList<Object>();
                    
169						   for (Object output : outputs) {
                    
                
TestProduct.cs https://KwCombinatorics.svn.codeplex.com/svn | C# | 503 lines
                    
313            object[][] source = new object[][] { new string[] { "A", "B" } };
                    
314            List<object> j = Product.Permute (p0, source);
                    
315        }
                    
324            object[][] source = new object[][] { new string[] { "A", "B" } };
                    
325            List<object> j = Product.Permute (p0, source);
                    
326        }
                    
                
ScriptBuffer.java git://github.com/burris/dwr.git | Java | 214 lines
                    
212     */
                    
213    private final List<Object> parts = new ArrayList<Object>();
                    
214}
                    
                
ParentFixTest.java git://github.com/plutext/docx4j.git | Java | 330 lines
                    
323		@Override
                    
324		public List<Object> apply(Object o) {
                    
325			// TODO Auto-generated method stub
                    
                
DLFolderServiceWrapper.java https://github.com/matethurzo/liferay-portal.git | Java | 422 lines
                    
69	@Override
                    
70	public java.util.List<Object> getFileEntriesAndFileShortcuts(
                    
71			long groupId, long folderId, int status, int start, int end)
                    
145	@Override
                    
146	public java.util.List<Object> getFoldersAndFileEntriesAndFileShortcuts(
                    
147			long groupId, long folderId, int status,
                    
156	@Override
                    
157	public java.util.List<Object> getFoldersAndFileEntriesAndFileShortcuts(
                    
158			long groupId, long folderId, int status, String[] mimeTypes,
                    
168	@Override
                    
169	public java.util.List<Object> getFoldersAndFileEntriesAndFileShortcuts(
                    
170			long groupId, long folderId, String[] mimeTypes,
                    
                
DKSqlGenerator.java http://diffkit.googlecode.com/svn/trunk/ | Java | 335 lines
                    
134         return null;
                    
135      List<Object> values = new ArrayList<Object>(row_.size());
                    
136      List<DKDBTypeInfo> typeInfos = new ArrayList<DKDBTypeInfo>(row_.size());
                    
                
Topic.java https://hg01.codeplex.com/pservicebusext | Java | 275 lines
                    
129		validateObjectState();
                    
130		List<Object> list = new ArrayList<Object>();
                    
131		list.add(message);
                    
134
                    
135	public void  publishMany(List<Object> messages) throws TopicNotRegisteredException, ESBException, IOException, IllegalAccessException, InvocationTargetException {
                    
136		validateObjectState();
                    
144
                    
145	private void internalPublish(List<Object> messages) throws TopicNotRegisteredException, ESBException, IOException, IllegalAccessException, InvocationTargetException {
                    
146		List<Map<String, Object>> publishDicts = new ArrayList<Map<String, Object>>();
                    
236
                    
237    public static void publishMessages(List<Object> messages) throws TopicNotRegisteredException, ESBException, IOException, IllegalAccessException, InvocationTargetException {
                    
238    	Class type = messages.get(0).getClass();
                    
                
Deserializer.java https://github.com/apache/hive.git | Java | 280 lines
                    
133
                    
134        List<Object> data = ((StructObjectInspector) pair.sourceInspector()).getStructFieldsDataAsList(o);
                    
135        Record result = GenericRecord.create(type);
                    
156
                    
157        List<Object> result = new ArrayList<>();
                    
158        ListObjectInspector listInspector = (ListObjectInspector) pair.sourceInspector();
                    
                
RequestBuilder.java git://github.com/braintree/braintree_java.git | Java | 124 lines
                    
74            String xml = "";
                    
75            for (Object item : (List<Object>) element) {
                    
76                xml += buildXMLElement("item", item);
                    
                
apimapper.cs https://git01.codeplex.com/raptordb | C# | 171 lines
                    
18        internal Dictionary<Guid, List<object[]>> emit = new Dictionary<Guid, List<object[]>>();
                    
19        internal Dictionary<Guid, List<object>> emitobj = new Dictionary<Guid, List<object>>();
                    
20        internal bool _RollBack = false;
                    
71                return;
                    
72            List<object> d = null;
                    
73            if (emitobj.Count == 0)
                    
74            {
                    
75                d = new List<object>();
                    
76                d.Add(doc);
                    
86                {
                    
87                    d = new List<object>();
                    
88                    d.Add(doc);
                    
                
OLazyObjectList.java http://orient.googlecode.com/svn/ | Java | 236 lines
                    
35	private ORecord<?>									sourceRecord;
                    
36	private final ArrayList<Object>			list							= new ArrayList<Object>();
                    
37	private ODatabasePojoAbstract<TYPE>	database;
                    
                
HgPath.java https://bitbucket.org/mercurialeclipse/main/ | Java | 212 lines
                    
59		}
                    
60		List<Object> children = new ArrayList<Object>();
                    
61		for (File file : files) {
                    
                
PublishProductMojo.java git://pkgs.fedoraproject.org/tycho | Java | 329 lines
                    
77            MojoFailureException {
                    
78        List<Object> productIUs = new ArrayList<Object>();
                    
79        for (File producFile : getEclipseRepositoryProject().getProductFiles(getProject())) {
                    
                
ConditionalWeakTableTest.cs https://github.com/schani/mono.git | C# | 497 lines
                    
173	static void FillStuff (ConditionalWeakTable <object,object> cwt, 
                    
174			out List<object> keepAlive, out List<WeakReference> keys) {
                    
175
                    
175
                    
176		keepAlive = new List<object> ();
                    
177		keys = new List<WeakReference> ();
                    
197		var cwt = new ConditionalWeakTable <object,object> ();
                    
198		List<object> keepAlive = null;
                    
199		List<WeakReference> keys = null;
                    
283
                    
284	static List<object> FillReachable (ConditionalWeakTable <object,object>[] cwt)
                    
285	{
                    
285	{
                    
286		var res = new List<object> ();
                    
287		for (int i = 0; i < 10; ++i) {
                    
                
CTBlip.java git://github.com/plutext/docx4j.git | Java | 287 lines
                    
97    })
                    
98    protected List<Object> alphaBiLevelOrAlphaCeilingOrAlphaFloor;
                    
99    protected CTOfficeArtExtensionList extLst;
                    
146     */
                    
147    public List<Object> getAlphaBiLevelOrAlphaCeilingOrAlphaFloor() {
                    
148        if (alphaBiLevelOrAlphaCeilingOrAlphaFloor == null) {
                    
148        if (alphaBiLevelOrAlphaCeilingOrAlphaFloor == null) {
                    
149            alphaBiLevelOrAlphaCeilingOrAlphaFloor = new ArrayList<Object>();
                    
150        }
                    
                
DoubleDictionarys.cs git://github.com/aurora-sim/Aurora-Sim.git | C# | 0 lines
                    
36    {
                    
37        Dictionary<TKey, List<object>> Dictionary = new Dictionary<TKey, List<object>>();
                    
38
                    
43
                    
44            List<object> Values = new List<object>(2);
                    
45            Values.Add(value1);
                    
64
                    
65                List<Object> Values = new List<object>();
                    
66                Dictionary.TryGetValue(key, out Values);
                    
70            {
                    
71                List<Object> Values = new List<object>();
                    
72                if (Dictionary.ContainsKey(key))
                    
86
                    
87                List<Object> Values = new List<object>();
                    
88                Dictionary.TryGetValue(key, out Values);
                    
                
FReporte.java https://bitbucket.org/timoteo_ponce/optica | Java | 280 lines
                    
181    public List<Object> getFila() {
                    
182        List<Object> fila = new ArrayList<Object>();
                    
183        if (tabla.getSelectedRow() != -1 && seleccionado) {
                    
                
ModuleScope.cs https://IronPython.svn.codeplex.com/svn | C# | 221 lines
                    
44
                    
45        public List<object> staticData;
                    
46
                    
                
StackedBarChart.java http://ofcj.googlecode.com/svn/trunk/ | Java | 234 lines
                    
99    public Stack stack(int index) {
                    
100        return new Stack((List<Object>) getValues().get(index));
                    
101    }
                    
122    public static class Stack {
                    
123        private transient List<Object> values;
                    
124        
                    
125        public Stack() {
                    
126            values = new ArrayList<Object>();
                    
127        }
                    
128        
                    
129        Stack(List<Object> values) {
                    
130            this.values = values;
                    
153        
                    
154        List<Object> getBackingList() {
                    
155            return this.values;
                    
                
VirtualGroups.cs git://github.com/soywiz/cspspemu.git | C# | 382 lines
                    
163            int objectCount = 0;
                    
164            NullableDictionary<object, List<object>> map = new NullableDictionary<object, List<object>>();
                    
165            foreach (object model in folv.FilteredObjects)
                    
168                if (!map.ContainsKey(key))
                    
169                    map[key] = new List<object>();
                    
170                map[key].Add(model);
                    
                
UnwrapRowContainer.java https://github.com/apache/hive.git | Java | 165 lines
                    
35public class UnwrapRowContainer
                    
36    implements MapJoinRowContainer, AbstractRowContainer.RowIterator<List<Object>> {
                    
37
                    
41  private final boolean tagged;
                    
42  private final List<Object> unwrapped;
                    
43
                    
46
                    
47  private transient RowIterator<List<Object>> iterator;
                    
48
                    
53    this.tagged = tagged;
                    
54    this.unwrapped = new ArrayList<Object>();
                    
55  }
                    
75
                    
76  private List<Object> unwrap(List<Object> values) {
                    
77    if (values == null) {
                    
                
MyAction.java git://github.com/beangle/library.git | Java | 166 lines
                    
122
                    
123			List<Object> values = CollectUtils.newArrayList();
                    
124			values.add(longinName);
                    
                
Acesso.java https://bitbucket.org/AndreHallwas/es-sgcp.git | Java | 336 lines
                    
43
                    
44    public static ArrayList<Object> setComponentes(Object Grupo, ComboBox<Object> cbComponentes) {
                    
45        Grupodeacesso oGrupo = (Grupodeacesso) Grupo;
                    
50        }
                    
51        ArrayList<Object> componentes = new ArrayList();
                    
52        PermissaoC.forEach(new ConsumerImpl(componentes));
                    
57
                    
58    public static ArrayList<Object> getComponentes(Object Grupo) {
                    
59        Grupodeacesso oGrupo = (Grupodeacesso) Grupo;
                    
64        }
                    
65        ArrayList<Object> componentes = new ArrayList();
                    
66        PermissaoC.forEach(new ConsumerImpl(componentes));
                    
83
                    
84    public ArrayList<Object> PesquisarGrupo(String Filtro) {
                    
85        ac = CtrlGrupodeacesso.create();
                    
                
ParsedRequest.java http://dovetaildb.googlecode.com/svn/trunk/ | Java | 381 lines
                    
146//				// array
                    
147//				ArrayList<Object> array;
                    
148//				if (cur == null) {
                    
148//				if (cur == null) {
                    
149//					cur = array = new ArrayList<Object>();
                    
150//				} else if (!(cur instanceof ArrayList)) {
                    
152//				} else {
                    
153//					array = (ArrayList<Object>) cur;
                    
154//				}
                    
                
ActionSupportTest.java https://bitbucket.org/opensymphony/xwork.git | Java | 319 lines
                    
218
                    
219        List<Object> args = new ArrayList<Object>();
                    
220        args.add("Santa");
                    
268
                    
269        List<Object> args = new ArrayList<Object>();
                    
270        args.add("Santa");
                    
                
ColumnFillerAdapters.java http://cellengine.googlecode.com/svn/trunk/ | Java | 340 lines
                    
64		public ArrayList<Object> getValues(ObjectPropertyRowPanel<?> panel, Field columnType, ArrayList<?> rowDatas) {
                    
65			ArrayList<Object> ret = new ArrayList<Object>(rowDatas.size());
                    
66			try {
                    
122		public ArrayList<Object> getValues(ObjectPropertyRowPanel<?> panel, Field columnType, ArrayList<?> rowDatas) {
                    
123			ArrayList<Object> ret = new ArrayList<Object>(rowDatas.size());
                    
124			if (field_data != null) {
                    
171		public ArrayList<Object> getValues(ObjectPropertyRowPanel<?> panel, Field columnType, ArrayList<?> rowDatas) {
                    
172			ArrayList<Object> ret = new ArrayList<Object>(rowDatas.size());
                    
173			for (int i = 0; i < rowDatas.size(); i++) {
                    
209		public ArrayList<Object> getValues(ObjectPropertyRowPanel<?> panel, Field columnType, ArrayList<?> rowDatas) {
                    
210			ArrayList<Object> ret = new ArrayList<Object>(rowDatas.size());
                    
211			for (int i = 0; i < rowDatas.size(); i++) {
                    
317		@Override
                    
318		public ArrayList<Object> getValues(ObjectPropertyRowPanel<?> panel,
                    
319				Field columnType, ArrayList<?> rowDatas) {
                    
                
IShippingDao.java https://bitbucket.org/piyushgd10/bhumi.git | Java | 373 lines
                    
163
                    
164    List<Object> searchShippingPackages(SearchShippingPackageRequest request);
                    
165
                    
274
                    
275    List<ShippingPackage> getShippingPackagesByIds(List<Object> ids);
                    
276
                    
                
WiqlBuilder.cs https://hg.codeplex.com/spruce | C# | 249 lines
                    
167
                    
168			IList<object> stackList = _queryStack.ToList();
                    
169			stackList = stackList.Reverse().ToList(); // turn our LIFO into a FIFO to preserve the query order
                    
                
DBUtils.java http://fastcodingtools.googlecode.com/svn/trunk/ | Java | 447 lines
                    
73		ResultSetMetaData metadata = rs.getMetaData();
                    
74		ArrayList<Object> results = new ArrayList<Object>();
                    
75		Object object;
                    
                
CapabilityBasedTemplate.java https://bitbucket.org/amdatu/amdatu-idea.git | Java | 345 lines
                    
200    @Override
                    
201    public ResourceMap generateOutputs(Map<String, List<Object>> parameters) throws Exception {
                    
202        return generateOutputs(parameters, new NullProgressMonitor());
                    
205    @Override
                    
206    public ResourceMap generateOutputs(Map<String, List<Object>> parameters, IProgressMonitor monitor)
                    
207                    throws Exception {
                    
                
MsgStreamerList.java https://gitlab.com/kidaa/incubator-geode.git | Java | 160 lines
                    
97  public List<?> getSentConnections() {
                    
98    List<Object> sentCons = Collections.emptyList();
                    
99    for (MsgStreamer streamer : this.streamers) {
                    
100      if (sentCons.size() == 0) {
                    
101        sentCons = (List<Object>)streamer.getSentConnections();
                    
102      }
                    
                
DoGPeaks.java git://github.com/imagej/imglib.git | Java | 159 lines
                    
107	public List<Object> asPoints(final float[] scalingFactor) throws Exception {
                    
108		final List<Object> points = new ArrayList<Object>();
                    
109		if (this.isEmpty()) return points;
                    
137	 * For images of 1D or more than 4D, returns a list of float[]. */
                    
138	public List<Object> asPoints() throws Exception {
                    
139		return asPoints(1);
                    
143	 * For images of 1D or more than 4D, returns a list of float[]. */
                    
144	public List<Object> asPoints(final Number scalingFactor) throws Exception {
                    
145		if (this.isEmpty()) return new ArrayList<Object>();
                    
                
QueryWrapper.java https://github.com/apache/hive.git | Java | 430 lines
                    
420  @Override
                    
421  public List<Object> executeResultList() {
                    
422    return delegate.executeResultList();
                    
                
DumpHeap.java git://pkgs.fedoraproject.org/electric | Java | 347 lines
                    
51    private int[] objHash = new int[1];
                    
52    private ArrayList<Object> objs = (new ArrayList<Object>());
                    
53    { objs.add(null); }
                    
                
StandardFilters.cs https://github.com/strogo/dotliquid.git | C# | 412 lines
                    
160        {
                    
161            List<object> ary;
                    
162            if (input is IEnumerable)
                    
164            else
                    
165                ary = new List<object>(new[] { input });
                    
166            if (!ary.Any())
                    
186        {
                    
187            List<object> ary = input.Cast<object>().ToList();
                    
188            if (!ary.Any())
                    
                
EncodingFilter.java git://github.com/jersey/jersey.git | Java | 116 lines
                    
77    private InjectionManager injectionManager;
                    
78    private volatile List<Object> supportedEncodings = null;
                    
79
                    
102
                    
103    List<Object> getSupportedEncodings() {
                    
104        // no need for synchronization - in case of a race condition, the property
                    
                
frmMain.cs https://mvcroutevisualizer.svn.codeplex.com/svn | C# | 197 lines
                    
186            {
                    
187                var empty = new List<object>().Select(i=> new { Key = "",Value=""}).ToList();
                    
188                this.dgvRouteData.DataSource = empty;
                    
                
QueryTable.java git://github.com/unclebob/fitnesse.git | Java | 365 lines
                    
72      } else if (queryReturn instanceof List) {
                    
73        testResult = new SlimTestResult(scanRowsForMatches((List<List<List<Object>>>) queryReturn));
                    
74        testResult.setVariables(getSymbolsToStore());
                    
90
                    
91  private ExecutionResult scanRowsForMatches(List<List<List<Object>>> queryResultList) {
                    
92    final QueryResults queryResults = new QueryResults(queryResultList);
                    
244
                    
245    public QueryResults(List<List<List<Object>>> queryResultTable) {
                    
246      for (int i = 0; i < queryResultTable.size(); i++) {
                    
327
                    
328      public QueryResultRow(int index, List<List<Object>> values) {
                    
329        this.index = index;
                    
330        Map<String, String> rowMap = new HashMap<>();
                    
331        for (List<Object> columnPair : values) {
                    
332          String fieldName = (String) columnPair.get(0);
                    
                
FoldedSteel.cs https://svnmlserverall.svn.codeplex.com/svn | C# | 138 lines
                    
110			
                    
111			List<object> list = new List<object>();
                    
112			Item c;
                    
                
EventEndpointTest.java https://github.com/apache/camel.git | Java | 284 lines
                    
203
                    
204        private final List<Object> objectEvents = new ArrayList<>();
                    
205
                    
205
                    
206        private final List<Object> defaultQualifierEvents = new ArrayList<>();
                    
207
                    
245
                    
246        List<Object> getObjectEvents() {
                    
247            return objectEvents;
                    
261
                    
262        List<Object> getDefaultQualifierEvents() {
                    
263            return defaultQualifierEvents;
                    
                
EditorComboBox.java git://github.com/JetBrains/intellij-community.git | Java | 340 lines
                    
178  public void prependItem(String item) {
                    
179    ArrayList<Object> objects = new ArrayList<>();
                    
180    objects.add(item);
                    
191  public void appendItem(String item) {
                    
192    ArrayList<Object> objects = new ArrayList<>();
                    
193
                    
                
FormResolverImpl.java http://t-2.googlecode.com/svn/trunk/ | Java | 187 lines
                    
121			Locale locale) {
                    
122		List<Object> list = null;
                    
123		if (List.class.isAssignableFrom(srcType)) {
                    
123		if (List.class.isAssignableFrom(srcType)) {
                    
124			list = (List<Object>) src;
                    
125		} else if (srcType.isArray()) {
                    
129		if (list != null) {
                    
130			List<Object> ret = new ArrayList<Object>();
                    
131			for (Object o : list) {
                    
150		if (List.class.isAssignableFrom(srcType)) {
                    
151			List<Object> list = (List) src;
                    
152			params = list.toArray(new Object[list.size()]);
                    
                
DocBasedVersionConstraintsProcessorFactory.java git://github.com/apache/lucene-solr.git | Java | 239 lines
                    
103  private boolean supportMissingVersionOnOldDocs = false;
                    
104  private NamedList<Object> tombstoneConfig;
                    
105
                    
161      }
                    
162      tombstoneConfig = (NamedList<Object>)tmp;
                    
163    }
                    
                
ObjectList.java http://acide-0-8-release-2010-2011.googlecode.com/svn/trunk/ | Java | 194 lines
                    
52	 */
                    
53	private ArrayList<Object> _list;
                    
54
                    
62		// Creates the list of objects
                    
63		_list = new ArrayList<Object>();
                    
64	}
                    
                
BinaryShardedJedis.java https://github.com/kevinsawicki/jedis.git | Java | 403 lines
                    
397
                    
398    public List<Object> pipelined(ShardedJedisPipeline shardedJedisPipeline) {
                    
399        shardedJedisPipeline.setShardedJedis(this);
                    
                
ListAssert.java git://pkgs.fedoraproject.org/fest-assert | Java | 231 lines
                    
226  /** {@inheritDoc} */
                    
227  @Override protected List<Object> actualAsList() {
                    
228    return new ArrayList<Object>(actual);
                    
                
AlternateContentPreprocessorTest.java git://github.com/plutext/docx4j.git | Java | 305 lines
                    
59						
                    
60		List<Object> list = XmlUtils.getJAXBNodesViaXPath(binder, jaxbElement, 
                    
61				"//w:pict/v:oval", false );		
                    
89							
                    
90			List<Object> list = XmlUtils.getJAXBNodesViaXPath(binder, jaxbElement, 
                    
91					"//w:pict/v:oval", false );		
                    
119						
                    
120		List<Object> list = XmlUtils.getJAXBNodesViaXPath(binder, jaxbElement, 
                    
121				"//w:pict/v:oval", false );		
                    
151						
                    
152		List<Object> list = XmlUtils.getJAXBNodesViaXPath(binder, jaxbElement, 
                    
153				"//w:pict/v:oval", false );		
                    
193						
                    
194		List<Object> list = XmlUtils.getJAXBNodesViaXPath(binder, jaxbElement, 
                    
195				"//w:pict/v:oval", false );		
                    
                
ImmutableSortedMultisetFauxverideShim.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 202 lines
                    
30 * <pre>{@code
                    
31 * List<Object> objects = ...;
                    
32 * // Sort them:
                    
                
BookmarksDeleter.java git://github.com/plutext/docx4j.git | Java | 140 lines
                    
46
                    
47	private static void fixRange(List<Object> paragraphs, String startElement,
                    
48			String endElement) throws Exception {
                    
56				// since in the parent, it may be wrapped in a JAXBElement
                    
57				List<Object> theList = null;
                    
58				if (bm.getParent() instanceof List) {
                    
81				// since in the parent, it may be wrapped in a JAXBElement
                    
82				List<Object> theList = null;
                    
83				if (mr.getParent() instanceof List) {
                    
108//			try {
                    
109//				List<Object> theList = ((ContentAccessor)(instrText.getParent())).getContent();
                    
110//				Object deleteMe = null;
                    
128
                    
129	private static boolean remove(List<Object> theList, Object bm) 	{
                    
130		// Can't just remove the object from the parent,
                    
                
ChildrenBindingListDataListener.java git://github.com/zkoss/zk.git | Java | 137 lines
                    
125		if (_conv != null) {
                    
126			List<Object> data = (List<Object>) _conv.coerceToUi(model, _owner, _ctx);
                    
127			BindELContext.addModel(_owner, data);
                    
                
CursorMarkTest.java git://github.com/apache/lucene-solr.git | Java | 292 lines
                    
68
                    
69    List<Object> nextValues = Arrays.<Object>asList(buildRandomSortObjects(ss));
                    
70    final CursorMark next = previous.createNext(nextValues);
                    
194        totemOut.parseSerializedTotem(totemIn.getSerializedTotem());
                    
195        final List<Object> out = totemOut.getSortValues();
                    
196        assertNotNull(out);
                    
                
MouseControl.cs https://DWControllers.svn.codeplex.com/svn | C# | 244 lines
                    
117        /// <param name="menuSystem">Menu System</param>
                    
118        public void Update(MouseState mouseState, ref List<object> argObjects)
                    
119        {
                    
                
URLParser.cs git://github.com/sones/sones.git | C# | 441 lines
                    
181        /// <returns>The methodInfo callback and the optional parameters</returns>
                    
182        public Tuple<UrlNode, List<Object>> GetCallback(String url, String webMethod = "GET")
                    
183        {
                    
205
                    
206            return GetCallback(_RootNodes[webMethod], urlParts, new List<Object>(), url, 0);
                    
207
                    
218        /// <returns></returns>
                    
219        private Tuple<UrlNode, List<Object>> GetCallback(Dictionary<String, UrlNode> urlNodes, IEnumerable<String> urlParts, List<Object> parameters, String url, Int32 posInUrl)
                    
220        {
                    
252                    posInUrl = url.Length;
                    
253                    return new Tuple<UrlNode, List<object>>(curUrlNode, parameters);
                    
254                }
                    
290                // we have some more childs defined
                    
291                Tuple<UrlNode, List<object>> retval = null;
                    
292                var newParams = new List<Object>();
                    
                
LettuceGeoCommands.java git://github.com/SpringSource/spring-data-redis.git | Java | 316 lines
                    
78
                    
79		List<Object> values = new ArrayList<>();
                    
80		for (Entry<byte[], Point> entry : memberCoordinateMap.entrySet()) {
                    
99
                    
100		List<Object> values = new ArrayList<>();
                    
101		for (GeoLocation<byte[]> location : locations) {
                    
                
CTCustomXmlBlock.java git://github.com/plutext/docx4j.git | Java | 272 lines
                    
103    })
                    
104    protected List<Object> content = new ArrayListWml<Object>(this);
                    
105    @XmlAttribute(name = "uri", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main")
                    
185     */
                    
186    public List<Object> getContent() {
                    
187        if (content == null) {
                    
193    @Deprecated
                    
194    public List<Object> getEGContentBlockContent() {
                    
195    	return getContent();
                    
                
PersonPicker.java http://silkin.googlecode.com/svn/trunk/ | Java | 394 lines
                    
25		public Individual ind;
                    
26		public ArrayList<Object> source, selections = new ArrayList<Object>();
                    
27		public boolean oneValue;
                    
37		
                    
38		public PersonPicker(ArrayList<Object> srce, String title, String fieldNam,
                    
39							boolean singleValue, KSJInternalFrame editor)  {
                    
52			
                    
53		public PersonPicker(ArrayList<Object> srce, String title, String fieldNam, int udpNum,
                    
54							boolean singleValue, KSJInternalFrame editor)  {
                    
                
BankCatalog.java http://finval.googlecode.com/svn/trunk/ | Java | 500 lines
                    
314
                    
315	private List<Object> getDataFromDb()
                    
316	{
                    
316	{
                    
317		List<Object> data = new ArrayList<Object>();
                    
318		
                    
325			   BankBean bank = banks.get(i);
                    
326			   List<Object> raw = new ArrayList<Object>();
                    
327			   raw.add(bank.getBank().getId());
                    
                
java_test.py http://pyconcordion.googlecode.com/svn/trunk/ | Python | 394 lines
                    
85	if(result != null && result.getClass().isArray()){
                    
86		List<Object> list = new ArrayList<Object>();
                    
87		for(int i = 0; i < Array.getLength(result); i++){
                    
                
AvroArraySchema.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 134 lines
                    
31    private Long blockCount;
                    
32    private List<Object> ret;
                    
33
                    
                
SerializableExpressionConverter.cs https://rxx.svn.codeplex.com/svn | C# | 311 lines
                    
12		private const SerializableExpression noExpression = null;
                    
13		private const IList<object> noRecursion = null;
                    
14
                    
257
                    
258		public Tuple<Tuple<MemberInfo, Type[]>, MemberBindingType, SerializableExpression, List<Tuple<Tuple<MethodInfo, Type[]>, IList<SerializableExpression>>>, IList<object>> Convert(MemberBinding binding)
                    
259		{
                    
287						noInitializers,
                    
288						(IList<object>) member.Bindings.Select(Convert).ToList());
                    
289				default:
                    
293
                    
294		public static MemberBinding Convert(Tuple<Tuple<MemberInfo, Type[]>, MemberBindingType, SerializableExpression, List<Tuple<Tuple<MethodInfo, Type[]>, IList<SerializableExpression>>>, IList<object>> data)
                    
295		{
                    
303					return Expression.MemberBind(Convert(data.Item1), data.Item5
                    
304						.Cast<Tuple<Tuple<MemberInfo, Type[]>, MemberBindingType, SerializableExpression, List<Tuple<Tuple<MethodInfo, Type[]>, IList<SerializableExpression>>>, IList<object>>>()
                    
305						.Select(Convert));
                    
                
JSHelper.java http://tatami.googlecode.com/svn/trunk/ | Java | 197 lines
                    
79	public static Collection<Object> convertJSArrayToCollection(JavaScriptObject array){
                    
80		Collection<Object> collec = new ArrayList<Object>();
                    
81		int length = getArraySize(array);
                    
                
CompoundProcedure.java http://jasi-himanshu.googlecode.com/svn/trunk/ | Java | 113 lines
                    
65        
                    
66        ArrayList<Object> args = null;
                    
67        if(o != null) {
                    
                
AlternateTaxRule.java http://google-checkout-java-sdk.googlecode.com/svn/trunk/ | Java | 439 lines
                    
399        })
                    
400        protected List<Object> allTaxAreas;
                    
401
                    
428         */
                    
429        public List<Object> getAllTaxAreas() {
                    
430            if (allTaxAreas == null) {
                    
430            if (allTaxAreas == null) {
                    
431                allTaxAreas = new ArrayList<Object>();
                    
432            }
                    
                
Comments.java git://github.com/plutext/docx4j.git | Java | 318 lines
                    
200        })
                    
201        protected List<Object> egBlockLevelElts;
                    
202        @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main")
                    
257         */
                    
258        public List<Object> getEGBlockLevelElts() {
                    
259            if (egBlockLevelElts == null) {
                    
259            if (egBlockLevelElts == null) {
                    
260                egBlockLevelElts = new ArrayList<Object>();
                    
261            }
                    
                
SdtContentBlock.java git://github.com/plutext/docx4j.git | Java | 231 lines
                    
103    })
                    
104    protected List<Object> content = new ArrayListWml<Object>(this);
                    
105    @XmlTransient
                    
158     */
                    
159    public List<Object> getContent() {
                    
160        if (content == null) {
                    
166    @Deprecated
                    
167    public List<Object> getEGContentBlockContent() {
                    
168    	return getContent();
                    
211/*    	
                    
212    	List<Object> newList = new ArrayList<Object>();
                    
213    	
                    
                
CommandMessage.wpf.cs https://hg.codeplex.com/caliburn | C# | 405 lines
                    
91        IAction action;
                    
92        IList<object> metadata;
                    
93
                    
108        /// <value>The metadata.</value>
                    
109        public IList<object> Metadata
                    
110        {
                    
113                if(metadata == null)
                    
114                    metadata = new List<object>();
                    
115
                    
                
mxGraphAnalysis.java https://bitbucket.org/lgleim/mxgraph2.git | Java | 463 lines
                    
179		// map and filling up a list of edges, which is subsequently returned.
                    
180		ArrayList<Object> list = new ArrayList<Object>(2 * steps);
                    
181		Object obj = to;
                    
230	{
                    
231		ArrayList<Object> mst = new ArrayList<Object>(v.length);
                    
232
                    
331		mxUnionFind uf = createUnionFind(v);
                    
332		ArrayList<Object> result = new ArrayList<Object>(e.length);
                    
333		mxCellState[] edgeStates = sort(view.getCellStates(e), cf);
                    
                
BaseEmbeddedQuery.java git://github.com/infinispan/infinispan.git | Java | 179 lines
                    
35    */
                    
36   private List<Object> results;
                    
37
                    
61
                    
62   private List<Object> listInternal() {
                    
63      List<Object> results;
                    
                
Response.java https://github.com/apache/geronimo-specs.git | Java | 515 lines
                    
128        for (String headerName : response.getHeaders().keySet()) {
                    
129            List<Object> headerValues = response.getHeaders().get(headerName);
                    
130            for (Object headerValue : headerValues) {
                    
                
PluginServices.cs https://hg.codeplex.com/sharpcms | C# | 193 lines
                    
47        {
                    
48            List<object> results = new List<object>();
                    
49
                    
67        {
                    
68            List<object> flattened = new List<object>();
                    
69            try
                    
                
AllIntegration.java git://github.com/timmolter/XChange.git | Java | 215 lines
                    
115    Collection<R> results = new ArrayList<>(firstArgumentOptions.size());
                    
116    final ArrayList<Object> arguments = new ArrayList<>(restStaticArguments.length + 1);
                    
117    arguments.add(null);
                    
                
CTGvmlGroupShape.java git://github.com/plutext/docx4j.git | Java | 224 lines
                    
86    })
                    
87    protected List<Object> txSpOrSpOrCxnSp = new ArrayListDml<Object>(this);
                    
88    protected CTOfficeArtExtensionList extLst;
                    
166     */
                    
167    public List<Object> getTxSpOrSpOrCxnSp() {
                    
168        if (txSpOrSpOrCxnSp == null) {
                    
                
ExpressionTransformationContextSupport.java git://github.com/SpringSource/spring-data-mongodb.git | Java | 134 lines
                    
130
                    
131	private List<Object> extractArgumentListFrom(Document context) {
                    
132		return (List<Object>) context.get(context.keySet().iterator().next());
                    
                
HelperCache.cs https://CSToolkit.svn.codeplex.com/svn | C# | 294 lines
                    
262                Object newList = (obj as List<ICloneable>).FindAll(item => true);
                    
263                (newList as List<Object>).ForEach(item => item = CacheableClone(item));
                    
264            }
                    
                
SqlXmlMigrator.cs https://fadd.svn.codeplex.com/svn | C# | 240 lines
                    
119                {
                    
120                    transaction.Execute(sql, new List<object>());
                    
121                    MigrationModelType migrationUpdate = new MigrationModelType
                    
                
HierarchicalTest.java http://google-gin.googlecode.com/svn/trunk/ | Java | 152 lines
                    
86  @Singleton
                    
87  public static class ModuleInitializationList extends ArrayList<Object> {}
                    
88
                    
                
SceneQuery.cs https://git01.codeplex.com/nine | C# | 126 lines
                    
13        List<ISceneManager<ISpatialQueryable>> sceneManagers;
                    
14        IList<object> topLevelObjects;
                    
15
                    
15
                    
16        public SceneQuery(List<ISceneManager<ISpatialQueryable>> sceneManagers, IList<object> topLevelObjects, Predicate<T> condition)
                    
17        {
                    
90            
                    
91            public void IncludeTopLevelNonSpatialQueryableDesendants(IList<object> topLevelObjects)
                    
92            {
                    
                
DistinctQueryTests.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 390 lines
                    
98                                         InternalObjectNode.class);
                    
99        List<Object> nameList = docs.stream()
                    
100                                    .map(d -> d.getName())
                    
101                                    .collect(Collectors.toList());
                    
102        List<Object> collect = propertiesDocs.stream().map(d -> d.get(FIELD)).collect(Collectors.toList());
                    
103        nameList.add(collect);
                    
104
                    
105        List<Object> distinctNameList = nameList.stream().distinct().collect(Collectors.toList());
                    
106
                    
290        assertThat(itemPropertiesList.size()).isEqualTo(2);
                    
291        List<Object> intpropList = itemPropertiesList
                    
292                                       .stream()
                    
                
MultimapBuilder.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 474 lines
                    
199
                    
200  private enum LinkedListSupplier implements Supplier<List<Object>> {
                    
201    INSTANCE;
                    
210    @Override
                    
211    public List<Object> get() {
                    
212      return new LinkedList<>();
                    
                
PollerTests.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 979 lines
                    
366
                    
367        final List<Object> cancelParameters = new ArrayList<>();
                    
368        when(cancelOperation.apply(any(), any())).thenAnswer((Answer) invocation -> {
                    
                
HttpResponseBodyDecoder.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 460 lines
                    
272
                    
273            @SuppressWarnings("unchecked") final List<Object> wireResponseList = (List<Object>) wireResponse;
                    
274
                    
                
ListTest.java git://github.com/nriley/jython.git | Java | 543 lines
                    
81
                    
82    private final List<Object> nullList;
                    
83
                    
83
                    
84    protected List<Object> defaultList() {
                    
85        List<Object> l = Generic.list();
                    
206        List<Object> a = newInstance(null);
                    
207        List<Object> b = defaultList();
                    
208        for (int i = 0; i < b.size(); i++) {
                    
233    public void test_addAll() {
                    
234        List<Object> a = defaultList();
                    
235        List<Object> b = defaultList();
                    
295        // avoid calling any mutable methods
                    
296        List<Object> l = new ArrayList<Object>(defaultList());
                    
297        l.add(0);
                    
                
ProductRemoteServiceImpl.java git://github.com/magja/magja.git | Java | 1128 lines
                    
159      if (dependencies.contains(Dependency.CATEGORIES)) {
                    
160        product.getCategories().addAll(getCategoriesBasicInfo((List<Object>) mpp.get("categories")));
                    
161      } else {
                    
162        List<Category> categories = new ArrayList<Category>();
                    
163        for (Object obj : (List<Object>) mpp.get("categories")) {
                    
164          Integer id = Integer.parseInt((String) obj);
                    
193   */
                    
194  private List<Category> getCategoriesBasicInfo(List<Object> ids) throws ServiceException {
                    
195    log.info("getCategoriesBasicInfo {}", ids);
                    
                
 

Source

Language