HomeSort by relevance Sort by last modified time
    Searched refs:currentAddress (Results 1 - 6 of 6) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ReverseGeocoder.java 127 Address currentAddress = lookupAddress(
129 if (currentAddress == null) {
130 currentAddress = sCurrentAddress;
132 sCurrentAddress = currentAddress;
134 if (currentAddress != null && currentAddress.getCountryCode() != null) {
135 currentCity = checkNull(currentAddress.getLocality());
136 currentCountry = checkNull(currentAddress.getCountryCode());
137 currentAdminArea = checkNull(currentAddress.getAdminArea());
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp 170 ImageFrame::PixelData* currentAddress = buffer.getAddr(xBegin, yBegin);
185 for (; rowBegin != rowEnd; ++rowBegin, ++currentAddress) {
188 *currentAddress = colorTableIter[sourceValue];
190 *currentAddress = 0;
195 for (; rowBegin != rowEnd; ++rowBegin, ++currentAddress) {
198 *currentAddress = colorTableIter[sourceValue];
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DebugInfoBuilder.java 55 private int currentAddress;
198 int addressDelta = address-currentAddress;
203 currentAddress = address;
270 int addressDelta = address - currentAddress;
284 currentAddress = address;
  /external/smali/smali/src/main/antlr3/
smaliParser.g 517 scope {int currentAddress;}
518 : {$method::currentAddress = 0;}
532 $method::currentAddress = 0;
538 ( instruction {$method::currentAddress += $instruction.size/2;}
735 : COLON simple_name -> ^(I_LABEL[$COLON, "I_LABEL"] simple_name I_ADDRESS[$start, Integer.toString($method::currentAddress)]);
754 -> ^(I_CATCH[$start, "I_CATCH"] I_ADDRESS[$start, Integer.toString($method::currentAddress)] nonvoid_type_descriptor $from $to $using);
758 -> ^(I_CATCHALL[$start, "I_CATCHALL"] I_ADDRESS[$start, Integer.toString($method::currentAddress)] $from $to $using);
787 -> ^(I_LINE integral_literal I_ADDRESS[$start, Integer.toString($method::currentAddress)]);
791 -> ^(I_LOCAL[$start, "I_LOCAL"] REGISTER simple_name nonvoid_type_descriptor STRING_LITERAL? I_ADDRESS[$start, Integer.toString($method::currentAddress)]);
795 -> ^(I_END_LOCAL[$start, "I_END_LOCAL"] REGISTER I_ADDRESS[$start, Integer.toString($method::currentAddress)]);
    [all...]
smaliTreeWalker.g 390 $targets[targetsPosition++] = ($method::currentAddress + $offset_or_label.offsetValue) - $baseAddress;
418 $targets[targetsPosition++] = ($method::currentAddress + $offset_or_label.offsetValue) - $baseAddress;
429 int currentAddress;
445 $method::currentAddress = 0;
818 $method::currentAddress += $instructions.get($instructions.size() - 1).getSize($method::currentAddress);
852 | label_ref {$offsetValue = $label_ref.labelAddress-$method::currentAddress;};
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Structure.java 181 long currentAddress = 0;
184 while (currentAddress != lastAddress) {
185 currentAddress = first.getOldMemoryAddress();

Completed in 195 milliseconds