/external/clang/include/clang/Sema/ |
Sema.h | 429 /// function, block, and method scopes that are currently active. 723 /// \brief The declaration of the stringWithUTF8String: method. 726 /// \brief The declaration of the valueWithBytes:objCType: method. 732 /// \brief The declaration of the arrayWithObjects:count: method. 738 /// \brief The declaration of the dictionaryWithObjects:forKeys:count: method. [all...] |
/external/gmock/test/ |
gmock-spec-builders_test.cc | 111 // This line verifies that a mock method can take a by-reference 120 // Even though this mock class contains a mock method that takes 172 // redefining a mock method name. This could happen, for example, when 176 #define Method MethodW 181 virtual int Method() = 0; 187 MOCK_METHOD0(Method, int()); 193 // Tests that a method with expanded name compiles. 196 ON_CALL(cc, Method()); 199 // Tests that the method with expanded name not only compiles but runs 203 ON_CALL(cc, Method()).WillByDefault(Return(42)) [all...] |
/external/guava/guava-tests/test/com/google/common/reflect/ |
TypeTokenTest.java | 37 import java.lang.reflect.Method; 129 Method getFromList = List.class.getMethod("get", int.class); [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
ULocale.java | 13 import java.lang.reflect.Method; 57 * which a factory method or object responds to a client request with 88 * to canonical form, or the <code>canonicalInstance</code> factory method 155 // #toLocale() method. 569 * The default ULocale is synchronized to the default Java Locale. This method checks 613 * By setting the default ULocale with this method, all of the default categoy locales 617 * <code>checkPermission</code> method doesn't allow the operation. 628 // This method also updates all category default locales 644 // Just in case this method is called during ULocale class [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
ULocale.java | 12 import java.lang.reflect.Method; 56 * which a factory method or object responds to a client request with 87 * to canonical form, or the <code>canonicalInstance</code> factory method 162 // #toLocale() method. 600 * The default ULocale is synchronized to the default Java Locale. This method checks 660 * By setting the default ULocale with this method, all of the default categoy locales 664 * <code>checkPermission</code> method doesn't allow the operation. 675 // This method also updates all category default locales 692 // Just in case this method is called during ULocale class [all...] |
/art/runtime/native/ |
java_lang_Class.cc | 30 #include "mirror/method.h" 372 mirror::Method* result = mirror::Class::GetDeclaredMethodInternal( 394 auto ret = hs.NewHandle(mirror::ObjectArray<mirror::Method>::Alloc( 395 soa.Self(), mirror::Method::ArrayClass(), num_methods)); 401 auto* method = mirror::Method::CreateFromArtMethod(soa.Self(), &m); local 402 if (method == nullptr) { 406 ret->SetWithoutChecks<false>(num_methods++, method); 490 mirror::Object* method = klass->GetDexFile().GetEnclosingMethod(klass); local 491 if (method != nullptr) 507 mirror::Object* method = klass->GetDexFile().GetEnclosingMethod(klass); local [all...] |
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultRequestDirector.java | 36 import java.lang.reflect.Method; 314 // in the method arguments will be replaced. The original 696 * This method does <i>not</i> update the connection with 1148 Method method; local [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/ |
protorpc.js | 36 * @param {string} method_name Name of method being invoked. 165 * Method invoked when RPC's xhr readyState is changed. 269 * @param {string} path The path where the service accepts method calls. 270 * @param {Array.<ProtoRpc.MethodDescriptor>} methods An array of method 284 * Add a method to the service. 285 * @param {ProtoRpc.MethodDescriptor} method_descriptor The method descriptor. 295 * @param {string} name Method name.
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableListTest.java | 50 import java.lang.reflect.Method; 573 * over time. This method returns every state that the list has passed 582 * same thread as the triggering method call. 591 final Method getAllStatesMethod = getOnlyElement(asList( 600 public Object invoke(Object proxy, Method method, 602 return method.equals(getAllStatesMethod) 604 : invokeListMethod(method, args); 611 private Object invokeListMethod(Method method, Object[] args [all...] |
TreeMultimapNaturalTest.java | 43 import java.lang.reflect.Method; 494 for (Method m : TreeMultimap.class.getMethods()) { 499 fail("No bridge method found"); 504 for (Method m : TreeMultimap.class.getMethods()) { 513 for (Method m : TreeMultimap.class.getMethods()) { 518 fail("No bridge method found");
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
ICUJDKCompare.java | 18 import java.lang.reflect.Method; 329 private Method mref; 332 MorC(Method m) { 462 // if a call to a method can be handled by a call to t, remove the 463 // method from our list, and return true 482 // remove all methods handled by any method of mr 592 static MorC[] getMorCArray(Method[] meths) {
|
/external/jdiff/src/jdiff/ |
JDiff.java | 23 * Doclet-mandated start method. Everything begins here. 145 * This method is called by Javadoc to 158 * Javadoc invokes this method with an array of options-arrays. 171 * This method is only called when running JDiff as a standalone 219 Method mainMethod = c.getMethod("main", methodArgTypes); 222 // The object can be null because the method is static 227 System.err.println("Error: method \"main\" not found"); 233 System.err.println("Error: method \"main\" could not be invoked");
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zUpdate.cpp | 894 const CCompressionMethodMode &method = *options.Method;
local 895 if (method.Methods.Size() != 1 || method.Binds.Size() != 0)
909 groups[GetGroupIndex(method.PasswordIsDefined, filteredGroup)].Indices.Add(i);
921 if (options.Method->PasswordIsDefined)
922 getPasswordSpec->Password = options.Method->Password;
1040 CCompressionMethodMode method = *options.Method;
local 1041 MakeExeMethod(method, options.UseFilters, Is86Group(groupIndex), options.MaxFilter); [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/ |
BeanMap.java | 20 import java.lang.reflect.Method; 50 * Helper method to create a new <code>BeanMap</code>. For finer 52 * <code>BeanMap.Generator</code> instead of this static method. 83 * Calling this method overrides any value previously set using {@link #setBeanClass}. 84 * You must call either this method or {@link #setBeanClass} before {@link #create}. 95 * You must call either this method or {@link #setBeanClass} before {@link #create}. 141 * This is faster than using the {@link #create} static method. 174 * map is ignored and the bean passed to this method is used instead. 185 * map is ignored and the bean passed to this method is used instead.
|
/external/nanohttpd/core/src/test/java/fi/iki/elonen/ |
HttpGetRequestTest.java | 204 assertEquals(NanoHTTPD.Method.GET, this.testServer.method);
|
HttpHeadRequestTest.java | 192 assertEquals(NanoHTTPD.Method.HEAD, this.testServer.method);
|
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/ |
GetAndPostIntegrationTest.java | 76 public Response serve(String uri, Method method, Map<String, String> header, Map<String, String> parms, Map<String, String> files) { 77 StringBuilder sb = new StringBuilder(String.valueOf(method) + ':' + this.response);
|
/external/proguard/src/proguard/classfile/instruction/ |
ConstantInstruction.java | 155 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) 157 instructionVisitor.visitConstantInstruction(clazz, method, codeAttribute, offset, this);
|
VariableInstruction.java | 304 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) 306 instructionVisitor.visitVariableInstruction(clazz, method, codeAttribute, offset, this);
|
/external/replicaisland/src/com/replica/replicaisland/ |
DifficultyMenuActivity.java | 4 import java.lang.reflect.Method; 161 // TODO Auto-generated method stub 166 // TODO Auto-generated method stub
|
ExtrasMenuActivity.java | 4 import java.lang.reflect.Method; 224 // TODO Auto-generated method stub 229 // TODO Auto-generated method stub
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/ |
SmalideaMethod.java | 60 public class SmalideaMethod extends BaseMethodReference implements Method {
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
ListPopupWindow.java | 54 import java.lang.reflect.Method; 76 private static Method sClipToWindowEnabledMethod; 77 private static Method sGetMaxAvailableHeightMethod; 78 private static Method sSetEpicenterBoundsMethod; 85 Log.i(TAG, "Could not find method setClipToScreenEnabled() on PopupWindow. Oh well."); 91 Log.i(TAG, "Could not find method getMaxAvailableHeight(View, int, boolean)" 98 Log.i(TAG, "Could not find method setEpicenterBounds(Rect) on PopupWindow. Oh well."); 185 * input method should be based on the focusability of the popup. That is 186 * if it is focusable than it needs to work with the input method, else 193 * work with an input method, regardless of whether it is focusable. Thi [all...] |
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/ |
ThermalCooling.java | 34 import java.lang.reflect.Method; 522 Method throttleMethod; 551 Method init = cls.getMethod("init", partypes); 571 /* Get the throttleDevice method from cooling device class */ 606 /* Method to handle the thermal event based on HIGH or LOW event */ [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
HashSetTest.java | 32 import java.lang.reflect.Method; 49 // Test for method java.util.HashSet() 58 // Test for method java.util.HashSet(int) 74 // Test for method java.util.HashSet(int, float) 90 // Test for method java.util.HashSet(java.util.Collection) 110 // Test for method boolean java.util.HashSet.add(java.lang.Object) 124 // Test for method void java.util.HashSet.clear() 137 // Test for method java.lang.Object java.util.HashSet.clone() 147 // Test for method boolean java.util.HashSet.contains(java.lang.Object) 161 // Test for method boolean java.util.HashSet.isEmpty( [all...] |