Home
last modified time | relevance | path

Searched refs:flatArray (Results 1 – 25 of 54) sorted by relevance

123

/dports/www/matomo/piwik/core/DataTable/
H A DRenderer.php405 $flatArray = $dataTable;
407 $flatArray = array($flatArray);
410 $flatArray = array();
417 reset($flatArray);
418 $firstKey = key($flatArray);
422 if (count($flatArray) == 1
425 $flatArray = current($flatArray);
433 return $flatArray;
516 $flatArray = [];
527 $flatArray[] = $newRow;
[all …]
/dports/www/tikiwiki/tiki-21.2/lib/core/TikiFilter/
H A DPrepareInput.php67 $flatArray = self::flatten($values, $newValues, $prefex);
71 foreach ($flatArray as $key => $value) {
82 $flatArray = [];
87 $flatArray[urldecode($string[0])] = urldecode($string[1]);
91 return self::prepare($flatArray);
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Utility/
H A DArrayUtility.php488 $flatArray = [];
495 $flatArray[$prefix . $key] = $value;
501 $flatArray = array_merge($flatArray, self::flatten($value, $newPrefix, $keepDots));
504 return $flatArray;
518 $flatArray = [];
522 $flatArray[] = [$prefix . $key => $value];
524 $flatArray[] = $flattenRecursive($value, $prefix . $key . '.');
528 return array_merge(...$flatArray);
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Utility/
H A DArrayUtility.php488 $flatArray = [];
495 $flatArray[$prefix . $key] = $value;
501 $flatArray = array_merge($flatArray, self::flatten($value, $newPrefix, $keepDots));
504 return $flatArray;
518 $flatArray[] = [];
522 $flatArray[] = [$prefix . $key => $value];
524 $flatArray[] = $flattenRecursive($value, $prefix . $key . '.');
528 return array_merge(...$flatArray);
/dports/science/clhep/2.4.1.0/CLHEP/RandomObjects/RandomObjects/
H A DRandomVector.icc51 // Instead of this loop, the engine's flatArray routine could be
57 inline void HepRandomVector::flatArray(const int size, HepVector* vect) {
63 // Here, the engine's flatArray routine is not good
79 inline void HepRandomVector::flatArray(HepRandomEngine* theNewEngine,
H A DRandomVector.h67 inline void flatArray(const int size, HepVector* vect);
71 inline void flatArray(HepRandomEngine* theNewEngine,
/dports/science/clhep/2.4.1.0/CLHEP/Random/Random/
H A DRandom.icc25 inline void HepRandom::flatArray(HepRandomEngine* theNewEngine,
28 theNewEngine->flatArray(size,vect);
H A DRandom.h73 void flatArray(const int size, double* vect);
79 inline void flatArray(HepRandomEngine* theNewEngine,
H A DHurd160Engine.h55 void flatArray( const int size, double* vect );
H A DHurd288Engine.h54 void flatArray( const int size, double* vect );
H A DDRand48Engine.h75 void flatArray (const int size, double* vect);
H A DNonRandomEngine.h63 void flatArray (const int size, double* vect);
H A DRanshiEngine.h67 void flatArray(const int size, double* vect);
H A DJamesRandom.h60 void flatArray (const int size, double* vect);
H A DMTwistEngine.h50 void flatArray(const int size, double* vect);
H A DRandEngine.h69 void flatArray (const int size, double* vect);
H A DRanecuEngine.h62 void flatArray (const int size, double* vect);
H A DRanlux64Engine.h65 void flatArray (const int size, double* vect);
H A DRanluxEngine.h72 void flatArray (const int size, double* vect);
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Utility/
H A DArrayUtility.php481 $flatArray = [];
486 $flatArray[$prefix . $key] = $value;
488 $flatArray = array_merge($flatArray, self::flatten($value, $prefix . $key . '.'));
491 return $flatArray;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/
H A DWizardsRegistryReader.java227 CategoryNode[] flatArray = new CategoryNode[deferCategories.size()]; in finishCategories() local
229 flatArray[i] = new CategoryNode((Category) deferCategories.get(i)); in finishCategories()
231 Arrays.asList(flatArray).sort(comparer); in finishCategories()
234 for (CategoryNode categoryNode : flatArray) { in finishCategories()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/protobuf/csharp/src/Google.Protobuf/
H A DCodedOutputStream.cs80 public CodedOutputStream(byte[] flatArray) : this(flatArray, 0, flatArray.Length) in CodedOutputStream() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/protobuf/csharp/src/Google.Protobuf/
H A DCodedOutputStream.cs80 public CodedOutputStream(byte[] flatArray) : this(flatArray, 0, flatArray.Length) in CodedOutputStream() argument
/dports/devel/protobuf25/protobuf-2.5.0/java/src/main/java/com/google/protobuf/
H A DCodedOutputStream.java115 public static CodedOutputStream newInstance(final byte[] flatArray) { in newInstance() argument
116 return newInstance(flatArray, 0, flatArray.length); in newInstance()
126 public static CodedOutputStream newInstance(final byte[] flatArray, in newInstance() argument
129 return new CodedOutputStream(flatArray, offset, length); in newInstance()
/dports/science/clhep/2.4.1.0/CLHEP/Random/src/
H A DRandom.cc202 void HepRandom::flatArray(const int size, double* vect) in flatArray() function in CLHEP::HepRandom
204 theDefaults().theEngine->flatArray(size,vect); in flatArray()

123