HomeSort by relevance Sort by last modified time
    Searched refs:Functions (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 33 * Tests for {@link Functions}.
42 Function<String, String> identity = Functions.identity();
48 Function<Long, Long> identity = Functions.identity();
54 checkCanReserializeSingleton(Functions.identity());
58 assertEquals("3", Functions.toStringFunction().apply(3));
59 assertEquals("hiya", Functions.toStringFunction().apply("hiya"));
61 Functions.toStringFunction().apply(
68 Functions.toStringFunction().apply(null);
77 checkCanReserializeSingleton(Functions.toStringFunction());
83 tester.testAllPublicStaticMethods(Functions.class)
    [all...]
EquivalenceTest.java 99 EquivalenceTester.of(Equivalences.equals().onResultOf(Functions.toStringFunction()))
108 Equivalences.identity().onResultOf(Functions.toStringFunction()),
109 Equivalences.identity().onResultOf(Functions.toStringFunction()))
110 .addEqualityGroup(Equivalences.equals().onResultOf(Functions.toStringFunction()))
111 .addEqualityGroup(Equivalences.identity().onResultOf(Functions.identity()))
  /external/guava/guava-tests/test/com/google/common/collect/
MapsSortedTransformValuesTest.java 24 import com.google.common.base.Functions;
37 Functions.<String>identity());
46 return Maps.transformValues(underlying, Functions.toStringFunction());
51 assertTrue(Maps.transformValues(sortedMap, Functions.<String>identity())
MultimapsTransformValuesAsMapTest.java 20 import com.google.common.base.Functions;
41 Functions.<Integer> identity()).asMap();
48 .transformValues(delegate, Functions.<Integer> identity()).asMap();
MapsTransformValuesTest.java 28 import com.google.common.base.Functions;
59 Functions.<String>identity());
68 return Maps.transformValues(underlying, Functions.toStringFunction());
98 ImmutableMap.<String, Integer>of(), Functions.toStringFunction());
104 ImmutableMap.of("a", 1), Functions.toStringFunction());
113 underlying, Functions.<Integer>identity());
119 ImmutableMap.of("a", 1), Functions.toStringFunction());
143 = Maps.transformValues(underlying, Functions.toStringFunction());
177 = Maps.transformValues(underlying, Functions.toStringFunction());
202 = Maps.transformValues(underlying, Functions.toStringFunction())
    [all...]
MapsTransformValuesUnmodifiableIteratorTest.java 21 import com.google.common.base.Functions;
112 new UnmodifiableIteratorMap<String, Integer>(underlying), Functions.toStringFunction());
121 new UnmodifiableIteratorMap<String, Integer>(underlying), Functions.toStringFunction());
151 ImmutableMap.<String, Integer>of(), Functions.toStringFunction());
157 ImmutableMap.of("a", 1), Functions.toStringFunction());
166 underlying, Functions.<Integer>identity());
172 ImmutableMap.of("a", 1), Functions.toStringFunction());
196 = Maps.transformValues(underlying, Functions.toStringFunction());
230 = Maps.transformValues(underlying, Functions.toStringFunction());
255 = Maps.transformValues(underlying, Functions.toStringFunction())
    [all...]
SortedListsTest.java 20 import com.google.common.base.Functions;
124 tester.setDefault(Function.class, Functions.identity());
  /external/llvm/include/llvm/MC/
MCModule.h 59 FunctionListTy Functions;
98 const_func_iterator func_begin() const { return Functions.begin(); }
99 func_iterator func_begin() { return Functions.begin(); }
100 const_func_iterator func_end() const { return Functions.end(); }
101 func_iterator func_end() { return Functions.end(); }
  /external/llvm/include/llvm/CodeGen/
GCStrategy.h 65 list_type Functions;
134 iterator begin() { return Functions.begin(); }
135 iterator end() { return Functions.end(); }
  /external/chromium_org/chrome/renderer/resources/extensions/
sync_file_system_custom_bindings.js 16 // Functions which take in an [instanceOf=FileEntry].
26 // Functions which take in a FileEntry array.
39 // Functions which take in an [instanceOf=DOMFileSystem].
49 // Functions which return an [instanceOf=DOMFileSystem].
62 // Functions which return an array of FileStatusInfo object
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 354 SimpleBindingMemoryManager(const SimpleBindingMMFunctions& Functions,
368 SimpleBindingMMFunctions Functions;
373 const SimpleBindingMMFunctions& Functions,
375 : Functions(Functions), Opaque(Opaque) {
376 assert(Functions.AllocateCodeSection &&
378 assert(Functions.AllocateDataSection &&
380 assert(Functions.FinalizeMemory &&
382 assert(Functions.Destroy &&
387 Functions.Destroy(Opaque)
    [all...]
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 174 typename std::set<const FType*> Functions;
176 dbgs() << "Functions: \n";
179 Functions.insert(F);
184 Functions.insert(fi->first);
188 for (typename std::set<const FType*>::iterator FI = Functions.begin(), FE = Functions.end();
198 for (typename std::set<const FType*>::iterator FI = Functions.begin(), FE = Functions.end();
209 dbgs() << "Functions: \n";
  /external/chromium_org/third_party/mesa/src/docs/
MESA_agp_offset.spec 49 New Procedures and Functions
61 Additions to Chapter 3 the GLX 1.4 Specification (Functions and Errors)
MESA_copy_sub_buffer.spec 45 New Procedures and Functions
54 Additions to Chapter 3 of the GLX 1.3 Specification (Functions and Errors)
MESA_pixmap_colormap.spec 37 Xlib functions but there is no colormap associated with pixmaps.
50 New Procedures and Functions
59 Additions to Chapter 3 of the GLX 1.3 Specification (Functions and Errors)
MESA_set_3dfx_mode.spec 44 New Procedures and Functions
53 Additions to Chapter 3 of the GLX 1.3 Specification (Functions and Errors)
  /external/mesa3d/docs/
MESA_agp_offset.spec 49 New Procedures and Functions
61 Additions to Chapter 3 the GLX 1.4 Specification (Functions and Errors)
MESA_copy_sub_buffer.spec 45 New Procedures and Functions
54 Additions to Chapter 3 of the GLX 1.3 Specification (Functions and Errors)
MESA_pixmap_colormap.spec 37 Xlib functions but there is no colormap associated with pixmaps.
50 New Procedures and Functions
59 Additions to Chapter 3 of the GLX 1.3 Specification (Functions and Errors)
MESA_set_3dfx_mode.spec 44 New Procedures and Functions
53 Additions to Chapter 3 of the GLX 1.3 Specification (Functions and Errors)
  /external/llvm/lib/IR/
GCOV.cpp 27 DeleteContainerPointers(Functions);
51 assert(i < Functions.size() && ".gcda data does not match .gcno data");
52 GFun = Functions[i];
55 Functions.push_back(GFun);
66 for (SmallVectorImpl<GCOVFunction *>::iterator I = Functions.begin(),
67 E = Functions.end(); I != E; ++I)
74 for (SmallVectorImpl<GCOVFunction *>::iterator I = Functions.begin(),
75 E = Functions.end(); I != E; ++I)
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 11 // Amplifier XE 2011 about JITted functions.
194 MethodAddressVector Functions;
196 // Use symbol info to iterate functions in the object.
216 Functions.push_back((void*)Addr);
257 LoadedObjectMap[ObjData] = Functions;
268 MethodAddressVector& Functions = OI->second;
271 for (MethodAddressVector::iterator FI = Functions.begin(),
272 FE = Functions.end();
  /external/chromium_org/third_party/lcov/bin/
mcov 17 use File::Spec::Functions;
125 $da_filename = File::Spec::Functions::catfile($base_dir,
212 return (File::Spec::Functions::canonpath($filename));
  /external/llvm/lib/MC/
MCModule.cpp 84 Functions.push_back(new MCFunction(Name));
85 return Functions.back();
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 171 /// ReduceCrashingFunctions reducer - This works by removing functions and
209 std::set<Function*> Functions;
215 Functions.insert(CMF);
218 outs() << "Checking for crash with only these functions: ";
222 // Loop over and delete any functions which we aren't supposed to be playing
225 if (!I->isDeclaration() && !Functions.count(I))
234 Funcs.assign(Functions.begin(), Functions.end());
246 /// the CFG really fast which can reduce large functions quickly.
490 // Now try to reduce the number of functions in the module to something small
    [all...]

Completed in 447 milliseconds

1 2 3 4 5 6 7 8